/* === Variables === */
:root {
    --navy: #172554;
    --gold: #c9a84c;
    --cream: #fefcf0;
    --cream-bg: #fdfbf7;
    --white: #ffffff;
    --gray-900: #111827;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-100: #f3f4f6;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow: 0 10px 40px rgba(23,37,84,0.1);
    --shadow-lg: 0 20px 60px rgba(23,37,84,0.15);
    --transition: all 0.2s ease;
    --radius: 8px;
}

/* === Base === */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); margin-bottom: 16px; }
p { margin-bottom: 16px; }

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    min-height: 48px;
}
.btn-primary {
    background: var(--gold);
    color: var(--navy);
    box-shadow: var(--shadow);
}
.btn-primary:hover {
    background: #b8973d;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}
.btn-nav {
    background: var(--gold);
    color: var(--navy);
    padding: 8px 16px;
    font-size: 0.9rem;
    min-height: auto;
}
.btn-full { width: 100%; }

/* === Navigation === */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(23,37,84,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
}
.logo-mark {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
}
.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}
.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--navy);
        flex-direction: column;
        padding: 24px;
        gap: 24px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
}

/* === Hero === */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, #1e3a8a 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.1;
}
.hero-content {
    max-width: 800px;
    z-index: 2;
    position: relative;
}
.hero-tagline {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}
.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
}
.hero h1 em {
    color: var(--gold);
    font-style: italic;
}
.hero-sub {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    letter-spacing: 1px;
    z-index: 2;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* === Sections === */
.section {
    padding: 120px 0;
}
.section-label {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-title {
    color: var(--navy);
    margin-bottom: 24px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* === Services === */
.services {
    background: var(--cream-bg);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}
.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), #d4af5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.service-icon svg {
    width: 36px;
    height: 36px;
    color: var(--white);
}
.service-card h3 {
    color: var(--navy);
    margin-bottom: 16px;
}
.service-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* === About === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}
.about-image {
    display: flex;
    justify-content: center;
}
.about-avatar {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--navy), #1e3a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    box-shadow: var(--shadow-lg);
}
.about-lead {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 24px;
    font-style: italic;
}
.stats {
    display: flex;
    gap: 32px;
    margin: 40px 0;
    flex-wrap: wrap;
}
.stat {
    text-align: center;
}
.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}
.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

/* === Testimonials === */
.testimonials {
    background: var(--cream-bg);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
}
.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
}
.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 16px;
}
.testimonial-card p {
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}
.testimonial-author strong {
    color: var(--navy);
    display: block;
}
.testimonial-author span {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* === Contact === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}
.contact-details {
    margin: 40px 0;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    color: var(--gray-600);
}
.contact-item svg {
    color: var(--gold);
    flex-shrink: 0;
}
.partner-badge {
    margin-top: 40px;
    padding: 12px 20px;
    background: var(--cream);
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    display: inline-block;
}
.partner-badge span {
    font-size: 0.9rem;
    color: var(--navy);
    font-weight: 500;
}
.contact-form-wrap {
    background: var(--cream-bg);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 24px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: var(--white);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 2px;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    transition: var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-500); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--navy); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* === Reviews === */
.reviews {
    background: var(--cream-bg);
    border-top: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
}
.reviews-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}
.google-reviews-embed {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(23,37,84,0.08);
}
.reviews-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.reviews-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 200px;
    justify-content: center;
}
.reviews-btn svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .reviews-actions {
        flex-direction: column;
        align-items: center;
    }
    .reviews-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* === Footer === */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(201,168,76,0.1);
    background: var(--navy);
}
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--white);
}
.footer-brand .logo-mark { width: 32px; height: 32px; font-size: 0.85rem; }
.footer-copy { font-size: 0.8rem; color: var(--gray-500); }
.footer-partner { font-size: 0.7rem; color: var(--gray-500); letter-spacing: 1px; }

/* === Animations === */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Mobile Optimizations === */
@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .section { padding: 80px 0; }
    .hero { height: 90vh; }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .btn { padding: 16px 24px; }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-form-wrap { padding: 24px; }
    .form-row {
        grid-template-columns: 1fr;
    }
    .stats {
        justify-content: center;
    }
}