/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    background: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== Typography ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.15; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.95rem;
    padding: 14px 28px; border-radius: 8px; transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-gold {
    background: #C9A22E; color: #0F1F3D;
    box-shadow: 0 4px 14px rgba(201,162,46,0.35);
}
.btn-gold:hover { background: #B8911F; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,162,46,0.45); }
.btn-outline-light {
    background: transparent; color: #F5F0E8;
    border: 2px solid rgba(245,240,232,0.5);
}
.btn-outline-light:hover { background: rgba(245,240,232,0.1); border-color: #F5F0E8; }
.btn-outline-gold {
    background: transparent; color: #C9A22E;
    border: 2px solid #C9A22E;
}
.btn-outline-gold:hover { background: #C9A22E; color: #0F1F3D; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== Section Labels ===== */
.section-label {
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.8rem;
    text-transform: uppercase; letter-spacing: 0.15em; color: #C9A22E;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem); color: #0F1F3D;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.1rem; color: #4a4a6a; max-width: 560px;
}
.text-center { text-align: center; }

/* ===== Navbar ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(15,31,61,0.95); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,162,46,0.15);
    transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.2); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-mark {
    width: 40px; height: 40px; background: #C9A22E; color: #0F1F3D;
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.3rem;
}
.nav-logo-text { color: #F5F0E8; font-size: 0.9rem; line-height: 1.2; }
.nav-logo-sub { color: #C9A22E; font-size: 0.75rem; font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    color: rgba(245,240,232,0.8); font-size: 0.9rem; font-weight: 500;
    transition: color 0.3s ease;
}
.nav-links a:hover { color: #C9A22E; }

/* Mobile menu toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #F5F0E8; border-radius: 2px; transition: all 0.3s ease; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(15,31,61,0.98); backdrop-filter: blur(12px);
    z-index: 999; display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.mobile-menu-link {
    color: #F5F0E8; font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 600; transition: color 0.3s ease;
}
.mobile-menu-link:hover { color: #C9A22E; }
.mobile-menu-cta { margin-top: 16px; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
}

/* ===== Hero ===== */
.hero {
    background: #0F1F3D;
    min-height: 100vh; min-height: 100dvh;
    display: flex; align-items: center;
    padding: 120px 0 80px;
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(201,162,46,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    position: relative; z-index: 1;
}
.hero-eyebrow {
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.8rem;
    text-transform: uppercase; letter-spacing: 0.15em; color: #C9A22E;
    margin-bottom: 20px;
}
.hero-headline {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem); color: #F5F0E8;
    margin-bottom: 24px; line-height: 1.05;
}
.hero-headline em { color: #C9A22E; font-style: italic; }
.hero-body {
    font-size: 1.1rem; color: rgba(245,240,232,0.75);
    max-width: 480px; margin-bottom: 36px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; align-items: center; }
.hero-stat-num {
    display: block; font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 700; color: #C9A22E;
}
.hero-stat-label { font-size: 0.8rem; color: rgba(245,240,232,0.6); }
.hero-stat-divider { width: 1px; height: 48px; background: rgba(201,162,46,0.3); }

/* Hero image */
.hero-image { position: relative; }
.hero-img-wrapper {
    position: relative; border-radius: 16px; overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.hero-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-accent {
    position: absolute; bottom: -16px; left: -16px; right: -16px;
    height: 40%; background: rgba(201,162,46,0.12);
    border-radius: 16px; z-index: -1;
}
.hero-badge {
    position: absolute; bottom: -24px; left: 24px;
    background: #0F1F3D; border: 1px solid rgba(201,162,46,0.3);
    border-radius: 12px; padding: 12px 20px;
    display: flex; align-items: center; gap: 10px;
    color: #F5F0E8; font-size: 0.85rem; font-weight: 500;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.hero-badge svg { color: #C9A22E; flex-shrink: 0; }

.hero-wave {
    position: absolute; bottom: 0; left: 0; right: 0;
    color: #ffffff;
}
.hero-wave svg { width: 100%; height: 80px; }

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-image { max-width: 500px; margin: 0 auto; }
    .hero { padding: 100px 0 60px; }
}
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .hero-stats { flex-direction: column; gap: 16px; align-items: flex-start; }
    .hero-stat-divider { width: 48px; height: 1px; }
}

/* ===== Services ===== */
.services {
    padding: 100px 0;
    background: #ffffff;
}
.services .section-title, .services .section-subtitle { margin-left: 0; }
.services .section-subtitle { margin-bottom: 56px; }
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
    background: #FAFAFA; border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px; padding: 36px 28px;
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15,31,61,0.1);
    border-color: rgba(201,162,46,0.3);
}
.service-icon {
    width: 56px; height: 56px; background: #0F1F3D;
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    color: #C9A22E; margin-bottom: 20px;
}
.service-card h3 {
    font-size: 1.2rem; color: #0F1F3D; margin-bottom: 12px;
}
.service-card p { font-size: 0.95rem; color: #5a5a7a; line-height: 1.65; }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ===== About ===== */
.about { padding: 100px 0; background: #F8F6F0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; }
.about-image img {
    border-radius: 16px; width: 100%; height: 700px; object-fit: cover;
    box-shadow: 0 20px 50px rgba(15,31,61,0.12);
}
.about-img-border {
    position: absolute; top: -12px; left: -12px; right: 12px; bottom: 12px;
    border: 2px solid rgba(201,162,46,0.4); border-radius: 16px;
    pointer-events: none; z-index: -1;
}
.about-content .section-title { margin-bottom: 24px; }
.about-body {
    font-size: 1.05rem; color: #4a4a6a; line-height: 1.75;
    margin-bottom: 20px;
}
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.about-value {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.95rem; font-weight: 500; color: #0F1F3D;
}
.about-value svg { color: #C9A22E; flex-shrink: 0; }

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image img { height: 480px; }
}

/* ===== Process ===== */
.process { padding: 100px 0; background: #0F1F3D; color: #F5F0E8; }
.process .section-label { color: #C9A22E; }
.process .section-title { color: #F5F0E8; }
.process .section-subtitle { color: rgba(245,240,232,0.6); }
.process-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
    margin-top: 56px;
}
.process-step {
    padding: 40px 32px; background: rgba(245,240,232,0.04);
    border: 1px solid rgba(201,162,46,0.15); border-radius: 16px;
    transition: all 0.3s ease;
}
.process-step:hover {
    background: rgba(245,240,232,0.07);
    border-color: rgba(201,162,46,0.4);
}
.process-num {
    font-family: 'Playfair Display', serif; font-size: 3rem;
    font-weight: 700; color: rgba(201,162,46,0.3);
    line-height: 1; margin-bottom: 20px;
}
.process-step h3 {
    font-size: 1.3rem; color: #F5F0E8; margin-bottom: 12px;
}
.process-step p { font-size: 0.95rem; color: rgba(245,240,232,0.6); line-height: 1.7; }

@media (max-width: 768px) { .process-grid { grid-template-columns: 1fr; } }

/* ===== Testimonials ===== */
.testimonials { padding: 100px 0; background: #ffffff; }
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    margin-top: 56px;
}
.testimonial-card {
    background: #FAFAFA; border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px; padding: 36px 28px;
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15,31,61,0.08);
}
.testimonial-quote { margin-bottom: 20px; }
.testimonial-quote svg { width: 32px; height: 32px; color: #0F1F3D; }
.testimonial-text {
    font-size: 1rem; color: #4a4a6a; line-height: 1.7;
    margin-bottom: 24px; font-style: italic;
}
.testimonial-author {
    font-size: 0.85rem; font-weight: 600; color: #0F1F3D;
    letter-spacing: 0.03em;
}

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; } }

/* ===== CTA Banner ===== */
.cta-banner { padding: 80px 0; background: #C9A22E; }
.cta-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
}
.cta-content { max-width: 520px; }
.cta-headline {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: #0F1F3D;
    margin-bottom: 16px;
}
.cta-body { font-size: 1.05rem; color: rgba(15,31,61,0.75); line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-actions .btn-gold { background: #0F1F3D; color: #C9A22E; box-shadow: 0 4px 14px rgba(0,0,0,0.2); }
.cta-actions .btn-gold:hover { background: #1a2d4a; }
.cta-actions .btn-outline-gold { border-color: #0F1F3D; color: #0F1F3D; }
.cta-actions .btn-outline-gold:hover { background: #0F1F3D; color: #C9A22E; }

@media (max-width: 768px) {
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }
}

/* ===== Contact ===== */
.contact { padding: 100px 0; background: #F8F6F0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-body { font-size: 1.05rem; color: #4a4a6a; line-height: 1.75; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-detail { display: flex; gap: 16px; }
.contact-detail-icon {
    width: 48px; height: 48px; background: #0F1F3D; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #C9A22E; flex-shrink: 0;
}
.contact-detail strong {
    display: block; font-size: 0.8rem; text-transform: uppercase;
    letter-spacing: 0.08em; color: #0F1F3D; margin-bottom: 4px;
}
.contact-detail p { font-size: 0.95rem; color: #4a4a6a; }
.contact-detail a { color: #C9A22E; transition: color 0.3s ease; }
.contact-detail a:hover { color: #B8911F; }
.contact-map { border-radius: 12px; overflow: hidden; }
.contact-form-wrap {
    background: #ffffff; border-radius: 20px; padding: 40px;
    box-shadow: 0 8px 32px rgba(15,31,61,0.08);
}
.contact-form-title {
    font-size: 1.5rem; color: #0F1F3D; margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 0.85rem; font-weight: 600;
    color: #0F1F3D; margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 0.95rem;
    color: #1a1a2e; background: #FAFAFA; transition: border-color 0.3s ease;
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #C9A22E; background: #fff;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #aaa; }
.form-group textarea { resize: vertical; }

/* Form success */
.form-success {
    text-align: center; padding: 40px 20px;
}
.form-success-icon { color: #C9A22E; margin-bottom: 16px; }
.form-success h4 { font-size: 1.4rem; color: #0F1F3D; margin-bottom: 8px; }
.form-success p { color: #5a5a7a; font-size: 0.95rem; }

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px; }
}

/* ===== Footer ===== */
.footer { background: #0A1628; color: rgba(245,240,232,0.7); padding: 64px 0 0; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
    padding-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-mark {
    width: 36px; height: 36px; background: #C9A22E; color: #0F1F3D;
    border-radius: 6px; display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem;
}
.footer-logo span { color: #F5F0E8; font-size: 0.9rem; line-height: 1.2; }
.footer-logo span:last-child { color: #C9A22E; font-size: 0.75rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-links h4 {
    font-family: 'Inter', sans-serif; font-size: 0.8rem; text-transform: uppercase;
    letter-spacing: 0.1em; color: #C9A22E; margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(245,240,232,0.6); transition: color 0.3s ease; }
.footer-links a:hover { color: #C9A22E; }
.footer-contact h4 {
    font-family: 'Inter', sans-serif; font-size: 0.8rem; text-transform: uppercase;
    letter-spacing: 0.1em; color: #C9A22E; margin-bottom: 16px;
}
.footer-contact p { font-size: 0.9rem; margin-bottom: 8px; }
.footer-contact a { color: #C9A22E; transition: color 0.3s ease; }
.footer-contact a:hover { color: #D4B84B; }
.footer-bottom {
    border-top: 1px solid rgba(245,240,232,0.08);
    padding: 24px 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(245,240,232,0.4); }

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ===== Scroll Reveal ===== */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
@media (prefers-reduced-motion: no-preference) {
    .reveal-up { opacity: 0; transform: translateY(30px); }
    .reveal-left { opacity: 0; transform: translateX(-30px); }
    .reveal-right { opacity: 0; transform: translateX(30px); }
    .reveal-up.revealed, .reveal-left.revealed, .reveal-right.revealed {
        opacity: 1; transform: none;
    }
}
