/*
 * BuyNestPro — Premium Modern Design System v2.0
 * Design: Glassmorphism • Gradient Mesh • Micro-animations • Dark-rich palette
 */

/* ============================================================
   GOOGLE FONTS & BASE
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Brand Palette */
    --navy:       #050d1a;
    --navy-800:   #0c1a33;
    --navy-700:   #0f2245;
    --indigo:     #4361ee;
    --indigo-lt:  #6f86fa;
    --violet:     #7c3aed;
    --gold:       #f59e0b;
    --gold-lt:    #fcd34d;
    --teal:       #06b6d4;
    --white:      #ffffff;
    --off-white:  #f0f4ff;
    --muted:      #64748b;
    --border:     rgba(255,255,255,0.1);

    /* Gradients */
    --grad-brand:    linear-gradient(135deg, #4361ee 0%, #7c3aed 100%);
    --grad-gold:     linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --grad-mesh:     radial-gradient(ellipse at 20% 50%, rgba(67,97,238,0.15) 0%, transparent 60%),
                     radial-gradient(ellipse at 80% 20%, rgba(124,58,237,0.18) 0%, transparent 55%),
                     radial-gradient(ellipse at 60% 90%, rgba(6,182,212,0.12) 0%, transparent 50%);
    --grad-dark:     linear-gradient(180deg, var(--navy) 0%, var(--navy-800) 100%);
    --grad-card:     linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));

    /* Shadows */
    --shadow-sm:  0 2px 8px rgba(0,0,0,0.12);
    --shadow-md:  0 8px 30px rgba(0,0,0,0.18);
    --shadow-xl:  0 20px 60px rgba(0,0,0,0.3);
    --shadow-glow: 0 0 40px rgba(67,97,238,0.4);

    /* Glass */
    --glass-bg:   rgba(255,255,255,0.06);
    --glass-border: rgba(255,255,255,0.12);

    /* Typography */
    --font: 'Plus Jakarta Sans', system-ui, sans-serif;

    /* Layout */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --max-w: 1200px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background-color: var(--navy);
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   SCROLL REVEAL (JS adds .visible)
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   NAVBAR
   ============================================================ */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 12px 0;
    background: rgba(5, 13, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo span {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.3px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--grad-brand);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after{
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(5,13,26,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 24px 30px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: var(--font);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--grad-brand);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(67,97,238,0.45);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(67,97,238,0.6);
}

.btn-gold {
    background: var(--grad-gold);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(245,158,11,0.4);
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245,158,11,0.55);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--glass-border);
    backdrop-filter: blur(10px);
}
.btn-outline:hover {
    background: var(--glass-bg);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

/* Legacy alias */
.cta-btn { @extend .btn; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    padding: 160px 0 100px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

/* Animated mesh background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-mesh);
    animation: meshShift 10s ease infinite alternate;
}

@keyframes meshShift {
    0%   { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.15) rotate(3deg); }
}

/* Glowing orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 8s ease-in-out infinite alternate;
}
.orb-1 {
    width: 500px; height: 500px;
    background: rgba(67,97,238,0.2);
    top: -100px; right: -80px;
}
.orb-2 {
    width: 350px; height: 350px;
    background: rgba(124,58,237,0.18);
    bottom: -80px; left: -60px;
    animation-delay: -4s;
}
.orb-3 {
    width: 250px; height: 250px;
    background: rgba(6,182,212,0.12);
    top: 40%; left: 40%;
    animation-delay: -2s;
}

@keyframes orbFloat {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(30px, -30px); }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(67,97,238,0.15);
    border: 1px solid rgba(67,97,238,0.3);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--indigo-lt);
    margin-bottom: 24px;
}

.hero-badge span {
    width: 6px; height: 6px;
    background: var(--indigo-lt);
    border-radius: 50%;
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content h1 .highlight {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content h1 .gold-text {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.stat-item { text-align: center; }

.stat-item .num {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-item p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    margin-bottom: 0;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 0 0 1px var(--glass-border);
}

.hero-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, transparent 50%, rgba(67,97,238,0.2));
}

.hero-img-wrap img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 8s ease;
}

.float-card {
    position: absolute;
    background: rgba(5,13,26,0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    animation: floatCard 4s ease-in-out infinite;
}

.float-card-1 { top: -20px; left: -30px; animation-delay: 0s; }
.float-card-2 { bottom: 20px; right: -30px; animation-delay: -2s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float-card .f-icon {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.float-card .f-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
}

.float-card .f-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
}

/* ============================================================
   SECTION
   ============================================================ */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--indigo-lt);
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header p {
    color: rgba(255,255,255,0.55);
    font-size: 1.05rem;
}

/* ============================================================
   GLASS CARD
   ============================================================ */
.glass-card {
    background: var(--grad-card);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(67,97,238,0.4);
    box-shadow: 0 20px 60px rgba(67,97,238,0.12), 0 0 0 1px rgba(67,97,238,0.2);
    transform: translateY(-6px);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--grad-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    border-color: rgba(67,97,238,0.35);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 0 1px rgba(67,97,238,0.15);
    transform: translateY(-8px);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px; height: 58px;
    border-radius: var(--radius-sm);
    background: rgba(67,97,238,0.15);
    border: 1px solid rgba(67,97,238,0.25);
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 1.4rem;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    padding: 50px 0;
    background: rgba(67,97,238,0.05);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-box .big-num {
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-box p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-img-wrap img {
    width: 100%; height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
}

.about-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    background: rgba(5,13,26,0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 16px 24px;
    border-radius: var(--radius-md);
}

.about-badge .ab-val {
    font-size: 2rem;
    font-weight: 800;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-badge p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0;
}

.check-list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

.check-list li i {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(67,97,238,0.15);
    border: 1px solid rgba(67,97,238,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: var(--indigo-lt);
    flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--grad-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(67,97,238,0.35);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-style: italic;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
}

.client-img {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(67,97,238,0.4);
}

.client-info h5 { font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.client-info small { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: var(--grad-brand);
    border-radius: var(--radius-xl);
    margin: 0 24px;
    text-align: center;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 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='%23ffffff' fill-opacity='0.04'%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");
}

.cta-banner h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 16px;
    position: relative;
}

.cta-banner p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    position: relative;
}

.cta-banner .btn {
    position: relative;
    background: var(--white);
    color: var(--indigo);
}

.cta-banner .btn:hover {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(245,158,11,0.5);
}

/* ============================================================
   ENQUIRY FORM SECTION
   ============================================================ */
.enquiry-section {
    background: var(--navy-800);
}

.form-wrapper {
    background: var(--grad-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 60px;
}

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

.form-group { margin-bottom: 0; }
.form-group-full { grid-column: span 2; }

label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

input, select, textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: var(--transition);
}

input::placeholder, textarea::placeholder {
    color: rgba(255,255,255,0.25);
}

select option {
    background: var(--navy-800);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--indigo);
    box-shadow: 0 0 0 3px rgba(67,97,238,0.2);
    background: rgba(67,97,238,0.05);
}

input.error, select.error, textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.15);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    margin: 20px 0;
}

.checkbox-group input[type="checkbox"] {
    width: 18px; height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--indigo);
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.82rem;
    font-weight: 400;
    text-transform: none;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
    margin: 0;
}

.checkbox-group label a { color: var(--indigo-lt); }

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--grad-brand);
    color: var(--white);
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(67,97,238,0.45);
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(67,97,238,0.6);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-card {
    background: var(--grad-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition);
    margin-bottom: 20px;
}

.contact-info-card:hover {
    border-color: rgba(67,97,238,0.35);
    transform: translateX(6px);
}

.contact-icon {
    width: 50px; height: 50px;
    border-radius: var(--radius-sm);
    background: rgba(67,97,238,0.15);
    border: 1px solid rgba(67,97,238,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: var(--indigo-lt);
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-card p {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-mesh);
}

.page-header .ph-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--indigo-lt);
    margin-bottom: 16px;
    padding: 5px 16px;
    background: rgba(67,97,238,0.12);
    border: 1px solid rgba(67,97,238,0.25);
    border-radius: 50px;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    margin-bottom: 16px;
}

.page-header p {
    position: relative;
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: var(--navy);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 24px;
}

.footer-col p {
    color: rgba(255,255,255,0.45);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.45);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-links a::before {
    content: '→';
    font-size: 0.7rem;
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover::before { opacity: 1; }

.footer-logo-desc {
    color: rgba(255,255,255,0.4);
    font-size: 0.88rem;
    margin: 16px 0 24px;
    line-height: 1.8;
}

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

.social-links a {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--grad-brand);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
}

.footer-bottom a {
    color: rgba(255,255,255,0.4);
}

.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.legal-content .legal-date {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
}

.legal-content h2 {
    margin: 40px 0 12px;
    font-size: 1.3rem;
    color: var(--white);
}

.legal-content p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
    line-height: 1.8;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
    .hero-inner { grid-template-columns: 1fr; gap: 50px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero { padding-top: 130px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group-full { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero-btns { flex-direction: column; }
    .hero-stats { justify-content: space-between; }
    .form-wrapper { padding: 30px 24px; }
    .cta-banner { margin: 0 16px; padding: 50px 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .hero-stats { flex-direction: column; gap: 20px; }
    .hero-content h1 { font-size: 2.2rem; }
    .float-card { display: none; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}
