/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #1a1a2e;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* ─── Section Shared ─── */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0A1628;
    background: #2DD4BF;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #0A1628;
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-header { margin-bottom: 56px; }
.section-header .section-title { margin-bottom: 12px; }

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 14px 28px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.btn-mint {
    background: #2DD4BF;
    color: #0A1628;
    border-color: #2DD4BF;
}
.btn-mint:hover {
    background: #14B8A6;
    border-color: #14B8A6;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 212, 191, 0.35);
}
.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-2px);
}
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45, 212, 191, 0.15);
    transition: background 0.3s ease;
}
.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-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
}
.nav-logo-text { color: #2DD4BF; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    transition: color 0.2s ease;
}
.nav-links a:hover { color: #2DD4BF; }
.nav-links .btn-mint { padding: 10px 22px; font-size: 0.85rem; }

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

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(16px);
    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 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    transition: color 0.2s ease;
}
.mobile-menu-link:hover { color: #2DD4BF; }
.mobile-menu-cta {
    margin-top: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: #2DD4BF;
    color: #0A1628;
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 600;
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.78) 50%, rgba(10,22,40,0.6) 100%);
}
.hero-shape {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}
.hero-shape-1 {
    width: 420px;
    height: 420px;
    background: rgba(45, 212, 191, 0.08);
    border-radius: 50%;
    top: -80px;
    right: -80px;
}
.hero-shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(45, 212, 191, 0.06);
    transform: rotate(45deg);
    bottom: 12%;
    right: 8%;
    border-radius: 24px;
}
.hero-shape-3 {
    width: 100px;
    height: 100px;
    background: rgba(45, 212, 191, 0.1);
    border-radius: 50%;
    bottom: 20%;
    right: 18%;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #2DD4BF;
    background: rgba(45, 212, 191, 0.12);
    border: 1px solid rgba(45, 212, 191, 0.25);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
}
.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5.5vw, 3.75rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    max-width: 780px;
    margin-bottom: 24px;
}
.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255,255,255,0.75);
    max-width: 580px;
    line-height: 1.7;
    margin-bottom: 36px;
}
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2DD4BF;
    line-height: 1.2;
}
.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(45, 212, 191, 0.3);
}

/* ─── About ─── */
.about {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.about-geo {
    position: absolute;
    pointer-events: none;
}
.about-geo-1 {
    width: 300px;
    height: 300px;
    background: rgba(45, 212, 191, 0.05);
    border-radius: 50%;
    top: -60px;
    left: -60px;
}
.about-geo-2 {
    width: 150px;
    height: 150px;
    background: rgba(10, 22, 40, 0.04);
    transform: rotate(30deg);
    bottom: 40px;
    right: 5%;
    border-radius: 20px;
}
.about-inner { position: relative; z-index: 1; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-image-wrap {
    position: relative;
}
.about-image-accent {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 20px;
    left: 20px;
    background: #2DD4BF;
    border-radius: 16px;
    z-index: 0;
    opacity: 0.2;
}
.about-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 750px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(10, 22, 40, 0.15);
}
.about-content { padding: 8px 0; }
.about-text {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.75;
    margin-bottom: 16px;
}
.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}
.about-value {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.about-value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(45, 212, 191, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-value strong {
    display: block;
    font-size: 1rem;
    color: #0A1628;
    margin-bottom: 2px;
}
.about-value span {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

/* ─── Services ─── */
.services {
    position: relative;
    padding: 100px 0;
    background: #F0FDFA;
    overflow: hidden;
}
.services-geo {
    position: absolute;
    pointer-events: none;
}
.services-geo-1 {
    width: 250px;
    height: 250px;
    background: rgba(45, 212, 191, 0.07);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}
.services-geo-2 {
    width: 120px;
    height: 120px;
    background: rgba(10, 22, 40, 0.04);
    transform: rotate(45deg);
    bottom: 60px;
    left: 5%;
    border-radius: 16px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}
.service-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px;
    border: 1px solid rgba(45, 212, 191, 0.15);
    transition: all 0.3s ease;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(10, 22, 40, 0.1);
    border-color: rgba(45, 212, 191, 0.35);
}
.service-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2DD4BF, #5EEAD4);
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.service-card:hover .service-card-accent { opacity: 1; }
.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(45, 212, 191, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 12px;
}
.service-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
}

/* ─── Areas ─── */
.areas {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.areas-inner { position: relative; z-index: 1; }
.areas-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.areas-text {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.75;
    margin-bottom: 32px;
}
.areas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.area-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #0A1628;
}
.areas-image-wrap {
    position: relative;
}
.areas-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(10, 22, 40, 0.12);
}
.areas-image-badge {
    position: absolute;
    bottom: -16px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #0A1628;
    color: #2DD4BF;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ─── Testimonials ─── */
.testimonials {
    position: relative;
    padding: 100px 0;
    background: #0A1628;
    overflow: hidden;
}
.testimonials-geo {
    position: absolute;
    pointer-events: none;
}
.testimonials-geo-1 {
    width: 400px;
    height: 400px;
    background: rgba(45, 212, 191, 0.05);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}
.testimonials-geo-2 {
    width: 200px;
    height: 200px;
    background: rgba(45, 212, 191, 0.04);
    border-radius: 50%;
    bottom: -40px;
    right: 5%;
}
.testimonials .section-tag { background: rgba(45, 212, 191, 0.15); color: #2DD4BF; }
.testimonials .section-title { color: #fff; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}
.testimonial-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(45, 212, 191, 0.15);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(45, 212, 191, 0.35);
    transform: translateY(-4px);
}
.testimonial-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1;
    color: #2DD4BF;
    opacity: 0.3;
    margin-bottom: -8px;
}
.testimonial-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.75;
    margin-bottom: 24px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-author-avatar {
    width: 40px;
    height: 40px;
    background: rgba(45, 212, 191, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
}
.testimonial-detail {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* ─── CTA Banner ─── */
.cta-banner {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #0A1628 0%, #112240 100%);
    overflow: hidden;
}
.cta-banner-shape {
    position: absolute;
    pointer-events: none;
}
.cta-banner-shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(45, 212, 191, 0.08);
    border-radius: 50%;
    top: -100px;
    right: 10%;
}
.cta-banner-shape-2 {
    width: 150px;
    height: 150px;
    background: rgba(45, 212, 191, 0.06);
    transform: rotate(45deg);
    bottom: -40px;
    left: 5%;
    border-radius: 20px;
}
.cta-banner-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-banner-content { flex: 1; min-width: 280px; }
.cta-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 12px;
}
.cta-banner-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}
.cta-banner-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ─── Contact ─── */
.contact {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.contact-geo {
    position: absolute;
    pointer-events: none;
}
.contact-geo-1 {
    width: 250px;
    height: 250px;
    background: rgba(45, 212, 191, 0.05);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
}
.contact-geo-2 {
    width: 100px;
    height: 100px;
    background: rgba(10, 22, 40, 0.04);
    transform: rotate(30deg);
    top: 40px;
    left: 3%;
    border-radius: 14px;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.contact-text {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.75;
    margin-bottom: 36px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(45, 212, 191, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-detail strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0A1628;
    margin-bottom: 4px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.contact-detail span,
.contact-detail a {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}
.contact-detail a:hover { color: #2DD4BF; }
.contact-detail address { font-style: normal; }

/* Contact form */
.contact-form-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 16px 48px rgba(10, 22, 40, 0.08);
    border: 1px solid rgba(45, 212, 191, 0.15);
}
.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: #0A1628;
    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 #e2e8f0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #1a1a2e;
    background: #f8fafc;
    transition: all 0.2s ease;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2DD4BF;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 16px 20px;
    background: rgba(45, 212, 191, 0.08);
    border: 1px solid rgba(45, 212, 191, 0.25);
    border-radius: 12px;
    color: #0A1628;
    font-size: 0.95rem;
    font-weight: 500;
}
.form-success svg { flex-shrink: 0; }

/* ─── Footer ─── */
.footer {
    background: #0A1628;
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 16px;
}
.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 12px;
}
.footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}
.footer-links strong,
.footer-contact strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2DD4BF;
    margin-bottom: 16px;
}
.footer-links a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    padding: 4px 0;
    transition: color 0.2s ease;
}
.footer-links a:hover { color: #2DD4BF; }
.footer-contact address {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    font-style: normal;
}
.footer-contact a {
    color: rgba(255,255,255,0.6);
    transition: color 0.2s ease;
}
.footer-contact a:hover { color: #2DD4BF; }
.footer-bottom {
    padding: 24px 0;
    text-align: center;
}
.footer-bottom span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .about-grid,
    .areas-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image { height: 500px; }
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
    .hero-headline { font-size: clamp(1.75rem, 6vw, 2.5rem); }
    .hero-stats { gap: 16px; }
    .hero-stat-num { font-size: 1.25rem; }
    .hero-shape-1 { width: 250px; height: 250px; }
    .hero-shape-2 { display: none; }
    .hero-shape-3 { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .areas-list { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px; }
    .cta-banner-inner { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; align-items: flex-start; gap: 12px; }
    .hero-stat-divider { display: none; }
}

/* ─── Animations ─── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
