/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'DM Sans', sans-serif;
    color: #0F2B4C;
    background: #FDF8F0;
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── NAV ─── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(253, 248, 240, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 43, 76, 0.06);
    transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(15, 43, 76, 0.08); }
.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-weight: 700; font-size: 1.15rem; color: #0F2B4C;
}
.nav-logo span { letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    font-size: 0.9rem; font-weight: 500; color: #0F2B4C;
    position: relative; transition: color 0.2s;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: #A8E6CF;
    transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: #1A3A5C; }

.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    color: #0F2B4C; padding: 4px;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 50px; font-weight: 600;
    font-size: 0.95rem; transition: all 0.3s ease; border: none; cursor: pointer;
}
.btn-mint {
    background: #A8E6CF; color: #0F2B4C;
    box-shadow: 0 4px 16px rgba(168, 230, 207, 0.4);
}
.btn-mint:hover {
    background: #96DDB8; transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(168, 230, 207, 0.5);
}
.btn-midnight {
    background: #0F2B4C; color: #fff;
    box-shadow: 0 4px 16px rgba(15, 43, 76, 0.25);
}
.btn-midnight:hover {
    background: #1A3A5C; transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 43, 76, 0.35);
}
.btn-outline-light {
    background: transparent; color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.15); border-color: #fff;
    transform: translateY(-2px);
}
.btn-outline-midnight {
    background: transparent; color: #0F2B4C;
    border: 2px solid #0F2B4C;
}
.btn-outline-midnight:hover {
    background: #0F2B4C; color: #fff; transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ─── HERO ─── */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #0F2B4C 0%, #1A3A5C 30%, #2A5A7C 55%, #4A8A9C 75%, #A8E6CF 100%);
    overflow: hidden; padding: 120px 24px 80px;
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(168,230,207,0.2) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.hero-content {
    position: relative; z-index: 2; text-align: center; max-width: 780px;
}
.hero-eyebrow {
    font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: #A8E6CF; margin-bottom: 20px;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 700; color: #fff;
    line-height: 1.15; margin-bottom: 24px;
}
.hero-sub {
    font-size: 1.15rem; color: rgba(255,255,255,0.8);
    line-height: 1.7; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
    display: flex; align-items: center; justify-content: center; gap: 32px;
    flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
    display: block; font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 700; color: #fff;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.65); letter-spacing: 0.04em; }
.stat-divider {
    width: 1px; height: 40px; background: rgba(255,255,255,0.2);
}
.scroll-hint {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.5); animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── SECTIONS ─── */
.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-eyebrow {
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: #A8E6CF; margin-bottom: 12px;
    background: #0F2B4C; display: inline-block; padding: 6px 16px; border-radius: 50px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700; line-height: 1.2; margin-bottom: 16px; color: #0F2B4C;
}
.section-sub { font-size: 1.05rem; color: #4A6274; line-height: 1.7; }

/* ─── CARDS ─── */
.card {
    background: #fff; border-radius: 16px; padding: 36px;
    box-shadow: 0 4px 24px rgba(15, 43, 76, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(15, 43, 76, 0.1); }

/* ─── SERVICES ─── */
.services { background: #FDF8F0; }
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card { text-align: left; }
.card-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: #EEF9F3; display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: #0F2B4C;
}
.service-card p { font-size: 0.92rem; color: #4A6274; line-height: 1.7; }

/* ─── ABOUT ─── */
.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-images { position: relative; }
.about-img-main {
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 16px 48px rgba(15, 43, 76, 0.12);
}
.about-img-main img { width: 100%; height: 420px; object-fit: cover; }
.about-img-float {
    position: absolute; bottom: -32px; right: -24px;
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 12px 36px rgba(15, 43, 76, 0.15);
    border: 4px solid #fff;
}
.about-img-float img { width: 100%; height: 240px; object-fit: cover; }
.about-accent {
    position: absolute; top: -20px; left: -20px;
    width: 100px; height: 100px; border-radius: 50%;
    background: #A8E6CF; opacity: 0.3; filter: blur(40px);
}
.about-content .section-eyebrow { margin-bottom: 12px; }
.about-text { font-size: 1rem; color: #4A6274; line-height: 1.8; margin-bottom: 16px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0 32px; }
.about-feature {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.9rem; font-weight: 500; color: #0F2B4C;
}
.about-feature svg { flex-shrink: 0; }
.about-content .btn { margin-top: 8px; }

/* ─── AREAS ─── */
.areas { background: #FDF8F0; }
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.area-card {
    position: relative; border-radius: 16px; overflow: hidden;
    aspect-ratio: 4/3; cursor: pointer;
}
.area-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.area-card:hover img { transform: scale(1.08); }
.area-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,43,76,0.8) 0%, rgba(15,43,76,0.1) 60%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 24px; transition: background 0.3s;
}
.area-card:hover .area-overlay {
    background: linear-gradient(to top, rgba(15,43,76,0.9) 0%, rgba(15,43,76,0.2) 60%, transparent 100%);
}
.area-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; color: #fff; margin-bottom: 6px;
}
.area-overlay p { font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.5; }

/* ─── TESTIMONIALS ─── */
.testimonials { background: #EEF9F3; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { position: relative; }
.quote-mark {
    position: absolute; top: 20px; right: 24px; opacity: 0.5;
}
.testimonial-text {
    font-size: 0.95rem; color: #4A6274; line-height: 1.8;
    margin-bottom: 24px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: #A8E6CF; color: #0F2B4C;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; color: #0F2B4C; }
.author-detail { font-size: 0.8rem; color: #4A6274; }

/* ─── CTA ─── */
.cta-section {
    position: relative; padding: 100px 0; overflow: hidden;
    background: linear-gradient(135deg, #0F2B4C 0%, #1A3A5C 50%, #2A5A7C 100%);
}
.cta-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(168,230,207,0.15) 0%, transparent 60%);
    pointer-events: none;
}
.cta-section .container { position: relative; z-index: 2; text-align: center; }
.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700; color: #fff; margin-bottom: 16px;
}
.cta-sub { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── CONTACT ─── */
.contact { background: #FDF8F0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contact-intro { font-size: 1rem; color: #4A6274; line-height: 1.7; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; }
.contact-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: #EEF9F3; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-label {
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: #4A6274; margin-bottom: 4px;
}
.contact-item p { font-size: 0.95rem; color: #0F2B4C; line-height: 1.6; }
.contact-item a { transition: color 0.2s; }
.contact-item a:hover { color: #2A5A7C; }
.contact-map { border-radius: 12px; overflow: hidden; }

/* ─── FORM ─── */
.contact-form-wrap {
    background: #fff; border-radius: 20px; padding: 40px;
    box-shadow: 0 8px 40px rgba(15, 43, 76, 0.08);
}
.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700; margin-bottom: 24px; color: #0F2B4C;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block; font-size: 0.82rem; font-weight: 600;
    color: #0F2B4C; margin-bottom: 6px; letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 12px 16px; border: 1.5px solid #E0E8EC;
    border-radius: 10px; font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem; color: #0F2B4C; background: #FDF8F0;
    transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #A8E6CF; box-shadow: 0 0 0 3px rgba(168,230,207,0.3);
}
.form-group textarea { resize: vertical; }
.form-note { font-size: 0.78rem; color: #4A6274; margin-top: 12px; text-align: center; }
.form-success {
    text-align: center; padding: 40px 20px;
}
.form-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; margin: 16px 0 8px; color: #0F2B4C;
}
.form-success p { font-size: 0.95rem; color: #4A6274; margin-bottom: 24px; }

/* ─── FOOTER ─── */
.footer { background: #0F2B4C; color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px;
    padding-bottom: 48px;
}
.footer-brand .nav-logo { color: #fff; margin-bottom: 16px; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 {
    font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: #A8E6CF; margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
    font-size: 0.88rem; transition: color 0.2s;
}
.footer-col a:hover { color: #A8E6CF; }
.footer-contacts li {
    display: flex; gap: 10px; align-items: flex-start;
    font-size: 0.85rem; line-height: 1.6;
}
.footer-contacts svg { flex-shrink: 0; margin-top: 3px; opacity: 0.6; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0; display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 12px;
    font-size: 0.82rem;
}
.footer-bottom a { transition: color 0.2s; }
.footer-bottom a:hover { color: #A8E6CF; }

/* ─── ANIMATIONS ─── */
.fade-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── MOBILE MENU ─── */
.nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(253,248,240,0.98);
    backdrop-filter: blur(16px);
    padding: 24px; gap: 20px;
    border-bottom: 1px solid rgba(15,43,76,0.06);
    box-shadow: 0 12px 32px rgba(15,43,76,0.08);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .services-grid,
    .areas-grid,
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; align-items: center; justify-content: center; }
    .nav-links.open { display: flex; }
    .hero { padding: 100px 20px 60px; min-height: auto; }
    .hero-stats { gap: 20px; }
    .stat-divider { display: none; }
    .section { padding: 72px 0; }
    .services-grid,
    .areas-grid,
    .testimonials-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-img-float { right: 16px; bottom: -24px; }
    .about-features { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-wrap { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; justify-content: center; }
}
