/* ===== CSS Variables ===== */
:root {
    --gold: #C9A962;
    --gold-light: #D4BC7E;
    --gold-dark: #A68B4B;
    --black: #0D0D0D;
    --charcoal: #1A1A1A;
    --light-gray: #F5F5F5;
    --medium-gray: #666666;
    --dark-gray: #333333;
    --white: #FFFFFF;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    --ease-expo-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* ===== Utilities ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gold {
    color: var(--gold);
}

.text-muted {
    color: rgba(255, 255, 255, 0.4);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    border-radius: 2px;
    transition: all 0.3s var(--ease-expo-out);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background-color: var(--gold-light);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(201, 169, 98, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--black);
}

.btn-dark {
    background-color: var(--black);
    color: var(--gold);
}

.btn-dark:hover {
    background-color: var(--charcoal);
    transform: scale(1.05);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
    background-color: rgba(13, 13, 13, 0.95);
    border-bottom: 1px dotted var(--gold);
    transition: all 0.3s var(--ease-expo-out);
}

.header.scrolled {
    height: 64px;
    background-color: rgba(13, 13, 13, 0.98);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: right;
    height: 100%;
}

.logo img {
    height: 50px;
    width: auto;
    transition: filter 0.3s;
}

.logo:hover img {
    filter: drop-shadow(0 0 15px rgba(201, 169, 98, 0.5));
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    position: relative;
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s var(--ease-expo-out);
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--gold);
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(13, 13, 13, 0.98);
    border-bottom: 1px solid rgba(201, 169, 98, 0.3);
    padding: 20px;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	filter: contrast(160%);
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1.1) translate(0, 0); }
    100% { transform: scale(1.15) translate(-1%, -1%); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 1;
    border-bottom: 5px solid var(--gold);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-logo {
	filter: grayscale(100%) brightness(200%);
    height: 100px;
    width: auto;
    margin-bottom: 32px;
    /*filter: drop-shadow(0 0 30px rgba(201, 169, 98, 0.4));*/
    animation: flipIn 0.8s var(--ease-bounce) 0.3s both;
}

@keyframes flipIn {
    from {
        opacity: 0;
        transform: perspective(1000px) rotateY(-90deg);
    }
    to {
        opacity: 1;
        transform: perspective(1000px) rotateY(0deg);
    }
}

.hero-title {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0px;
    line-height: 1.1;
}

.hero-title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px);
    animation: slideUp 0.6s var(--ease-expo-out) forwards;
}

.hero-title span:nth-child(1) { animation-delay: 0.5s; }
.hero-title span:nth-child(2) { animation-delay: 0.6s; }
.hero-title span:nth-child(3) { animation-delay: 0.7s; }
.hero-title span:nth-child(4) { animation-delay: 0.8s; }

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--white);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeIn 0.8s var(--ease-expo-out) 0.9s forwards;
	margin-bottom: 50px;
}

.hero-tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 0.6s var(--ease-expo-out) 1.3s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-content .btn {
    opacity: 0;
    transform: scale(0.5);
    animation: bounceIn 0.7s var(--ease-bounce) 1.1s forwards;
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.5); }
    60% { transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

.hero-accent {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    z-index: 3;
    opacity: 0.6;
    animation: pulseGold 4s ease-in-out infinite;
}

@keyframes pulseGold {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* ===== Services Section ===== */
.services {
    padding: 100px 0;
    background-color: var(--light-gray);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(201, 169, 98, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--medium-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s var(--ease-expo-out);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--gold);
    transform: scaleY(0);
    transition: transform 0.3s var(--ease-expo-out);
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background-color: var(--black);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s var(--ease-expo-out);
}

.service-icon svg {
    color: var(--gold);
    transition: color 0.3s;
}

.service-card:hover .service-icon {
    background-color: var(--gold);
    transform: scale(1.1);
}

.service-card:hover .service-icon svg {
    color: var(--black);
}

.service-title {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.7;
}

/* ===== About Section ===== */
.about {
    padding: 100px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--gold);
    border-radius: 8px;
    z-index: -1;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-text {
    color: var(--medium-gray);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-text strong {
    color: var(--dark-gray);
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    margin-top: 16px;
    transition: color 0.3s;
}

.about-link:hover {
    color: var(--gold-dark);
}

.about-link svg {
    transition: transform 0.3s;
}

.about-link:hover svg {
    transform: translateX(5px);
}

/* ===== Experience Section ===== */
.experience {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--black), var(--charcoal), var(--black));
    position: relative;
    overflow: hidden;
}

.experience-accent-top,
.experience-accent-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 169, 98, 0.4), transparent);
}

.experience-accent-top {
    top: 80px;
}

.experience-accent-bottom {
    bottom: 80px;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.experience-content .section-title {
    color: var(--white);
    margin-bottom: 20px;
}

.experience-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
    line-height: 1.8;
}

.experience-list {
    list-style: none;
    margin-bottom: 32px;
}

.experience-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 14px;
    font-size: 15px;
}

.check-icon {
    width: 24px;
    height: 24px;
    background-color: rgba(201, 169, 98, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon svg {
    color: var(--gold);
}

.experience-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background-color: var(--charcoal);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 8px;
    padding: 28px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== CTA Banner ===== */
.cta-banner {
    padding: 80px 0;
    background-color: var(--gold);
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.05) 10px,
        rgba(0, 0, 0, 0.05) 20px
    );
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--black);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 18px;
    color: rgba(13, 13, 13, 0.8);
    margin-bottom: 32px;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 100px 0;
    background-color: var(--light-gray);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(13, 13, 13, 0.05) 1px, transparent 0);
    background-size: 50px 50px;
}

.testimonials-carousel {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    z-index: 1;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: none;
    position: relative;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s var(--ease-expo-out);
}

.quote-icon {
    position: absolute;
    top: 24px;
    left: 24px;
    color: rgba(201, 169, 98, 0.2);
}

.stars {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 20px;
}

.stars svg {
    color: var(--gold);
}

.testimonial-quote {
    font-size: 18px;
    color: var(--dark-gray);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    text-align: center;
}

.author-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--dark-gray);
}

.author-role {
    font-size: 14px;
    color: var(--medium-gray);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.testimonial-prev,
.testimonial-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    color: var(--gold);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(51, 51, 51, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background-color: var(--gold);
    transform: scale(1.2);
}

/* ===== Contact Section ===== */
.contact {
    padding: 80px 0;
    background-color: var(--black);
    position: relative;
}

.contact-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 169, 98, 0.5), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 0px;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(201, 169, 98, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    color: var(--gold);
}

.contact-title {
    font-size: 20px;
    color: var(--white);
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    font-size: 14px;
}

.contact-center {
    text-align: center;
}

.contact-logo {
    height: 100px;
    width: auto;
    margin-bottom: 0px;
    filter: saturate(75%) brightness(120%) hue-rotate(30deg);
}

.contact-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 280px;
    margin: 0 auto;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 14px;
    font-size: 14px;
}

.contact-info li svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info a:hover {
    color: var(--gold);
}

.contact-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 98, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== Footer ===== */
.footer {
    padding: 20px 0;
    background-color: #0a0a0a;
    border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .about-grid,
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-accent {
        display: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-header {
        justify-content: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .service-card:nth-child(2),
    .service-card:nth-child(5) {
        margin-top: 0;
    }
    
    .experience-stats {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 32px 24px;
    }
    
    .contact-footer {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ===== Scroll Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s var(--ease-expo-out);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}
