:root {
    --water-blue: #0ea5e9;
    --deep-navy: #030712;
    --solar-gold: #fbbf24;
    --glass: rgba(255, 255, 255, 0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background-color: var(--deep-navy); color: white; overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }

/* --- HEADER --- */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 1.2rem 0; background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px; margin: 0 auto; display: flex;
    justify-content: space-between; align-items: center; padding: 0 2rem;
}

.logo { font-size: 1.4rem; font-weight: 800; cursor: pointer; text-decoration: none; }
.logo .water { color: var(--water-blue); }
.logo .gold { color: var(--solar-gold); }

.nav-list { display: flex; list-style: none; align-items: center; gap: 2rem; }
.nav-link { color: #cbd5e1; text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: 0.3s; }
.nav-link:hover { color: var(--water-blue); }

.nav-cta {
    background: var(--water-blue); color: white; text-decoration: none;
    padding: 0.7rem 1.4rem; border-radius: 10px; font-weight: 700; transition: 0.3s;
}
.nav-cta:hover { background: #0284c7; }

/* --- MOBILE TOGGLE ICON --- */
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.bar { width: 28px; height: 3px; background-color: white; border-radius: 2px; transition: 0.4s; }

/* --- HERO --- */
.hero {
    min-height: 100vh; display: flex; align-items: center; padding: 100px 2rem 2rem;
    background: linear-gradient(to right, rgba(3, 7, 18, 0.9), rgba(3, 7, 18, 0.4)), 
url(asset/bgimg.jpg);
    background-size: cover; background-position: center;
}

#cursor-glow {
    position: fixed; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none; z-index: 1; transform: translate(-50%, -50%);
}
@media (pointer: coarse) {
    #cursor-glow { display: none; }
}

.container { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; z-index: 2; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; margin-bottom: 1rem; }
.text-gradient { background: linear-gradient(to right, #fff, var(--water-blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
p { color: #94a3b8; margin-bottom: 2rem; font-size: 1.1rem; }
.btn-group { display: flex; gap: 15px; }
.btn { padding: 1rem 1.8rem; border-radius: 12px; text-decoration: none; font-weight: 700; transition: 0.3s; }
.btn-primary { background: var(--water-blue); color: white; }
.btn-outline { border: 1px solid rgba(255,255,255,0.2); color: white; }

/* --- SERVICE CARDS --- */
.visual-area { display: flex; flex-direction: column; gap: 1.5rem; }
.glass-card {
    background: var(--glass); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem; border-radius: 20px; display: flex; align-items: center; gap: 1rem; transition: 0.3s;
}
.icon-box { width: 50px; height: 50px; background: var(--water-blue); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.card-info h4 { color: var(--solar-gold); margin-bottom: 5px; }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 968px) {
    .menu-toggle { display: flex; z-index: 1100; }
    
    /* Animation for Hamburger to X */
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 80%; height: 100vh;
        background: var(--deep-navy); border-left: 1px solid var(--water-blue);
        padding: 100px 2rem; transition: 0.5s ease-in-out;
    }
    .nav-menu.active { right: 0; }
    .nav-list { flex-direction: column; align-items: flex-start; gap: 2.5rem; }
    .container { grid-template-columns: 1fr; text-align: center; }
    .btn-group { justify-content: center; flex-wrap: wrap; }
    .visual-area { flex-direction: row; justify-content: center; flex-wrap: wrap; }
    .glass-card { width: min(320px, 100%); }
}
@media (max-width: 600px) {
    .navbar { padding: 0.9rem 0; }
    .nav-container { padding: 0 1rem; }
    h1 { font-size: clamp(2.1rem, 8vw, 3rem); }
    p { font-size: 1rem; }
    .btn { width: 100%; text-align: center; }
}
/* --- SHARED STYLES --- */
.blue-text { color: #0ea5e9; }
.gold-text { color: #fbbf24; }




/* --- WHY CHOOSE SECTION STYLES --- */
.why-choose {
    padding: 100px 2rem;
    background-color: #030712; /* Deep Navy */
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-intro {
    max-width: 700px;
    margin: 20px auto;
    color: #94a3b8;
    font-size: 1.1rem;
}

.highlight-gold {
    color: #fbbf24;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 24px;
    transition: all 0.4s ease;
    text-align: left;
}

.feature-card:hover {
    background: rgba(14, 165, 233, 0.05); /* Soft Water Blue tint */
    border-color: #0ea5e9;
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
}

.feature-card p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
   
    .features-grid {
        grid-template-columns: 1fr;
    }
}


/* Content Side */
.section-subtitle {
    color: #fbbf24;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}


.highlight-blue { color: #0ea5e9; }



.service-check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #e2e8f0;
}

.check-item i {
    color: #0ea5e9;
    font-style: normal;
}

.contact-highlight {
    padding: 20px;
    background: rgba(14, 165, 233, 0.05);
    border-radius: 15px;
    border-left: 4px solid #fbbf24;
}

.phone-link {
    font-size: 2rem;
    color: #fbbf24;
    text-decoration: none;
    font-weight: 800;
    display: block;
    margin-top: 5px;
    transition: 0.3s;
}

.phone-link:hover { color: white; transform: translateX(5px); }


@media (max-width: 600px) {
    .phone-link { font-size: 1.35rem; }
}
.unique-service-hub {
    padding: 100px 2rem;
    background: #020617;
    color: white;
}

.hub-container { max-width: 1200px; margin: 0 auto; }


.hub-wrapper {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

/* Nav Styles */
.hub-nav { flex: 1; display: flex; flex-direction: column; gap: 15px; }

.nav-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: #94a3b8;
    padding: 20px 30px;
    text-align: left;
    border-radius: 15px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hub-num { font-size: 0.8rem; color: #0ea5e9; opacity: 0.5; }

.nav-item.active {
    background: rgba(14, 165, 233, 0.1);
    border-color: #0ea5e9;
    color: white;
    transform: translateX(20px);
}

/* Display Panel Styles */
.hub-display {
    flex: 1.5;
    background: rgba(255,255,255,0.02);
    border-radius: 30px;
    border: 1px solid rgba(14, 165, 233, 0.2);
    padding: 50px;
    min-height: 400px;
    position: relative;
    box-shadow: 0 0 50px rgba(14, 165, 233, 0.1);
}

.service-panel { display: none; animation: fadeIn 0.5s ease forwards; }
.service-panel.active { display: block; }

.panel-icon { font-size: 4rem; margin-bottom: 20px; }
.service-panel h3 { font-size: 2.2rem; margin-bottom: 20px; color: #fbbf24; }
.service-panel p { color: #94a3b8; line-height: 1.8; font-size: 1.1rem; margin-bottom: 30px; }

.stat-bar { background: rgba(255,255,255,0.1); height: 10px; border-radius: 10px; position: relative; }
.stat-bar .fill { background: #0ea5e9; height: 100%; border-radius: 10px; box-shadow: 0 0 15px #0ea5e9; transition: 1s ease-out; }
.stat-bar span { position: absolute; top: -25px; right: 0; font-size: 0.8rem; color: #0ea5e9; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
    .hub-wrapper { flex-direction: column; }
    .nav-item.active { transform: translateY(-10px); }
    .hub-display { padding: 35px; }
}
.benefits-grid-section { padding: 80px 0; background: #020617; }
.flex-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 50px; max-width: 1200px; margin: 0 auto; }
.blue-tag { color: #0ea5e9; font-weight: 800; font-size: 0.7rem; letter-spacing: 2px; }
.sidebar-info h2 { margin: 12px 0 18px; }
.sidebar-info p { max-width: 420px; }

.cards-layout { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.benefit-glass { 
    background: rgba(255,255,255,0.02); padding: 40px 30px; border-radius: 25px;
    position: relative; border: 1px solid rgba(255,255,255,0.05);
}
.benefit-glass .emoji { font-size: 1.6rem; display: inline-block; }

/* Vertical indicator line from your screenshot */



.benefit-glass::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 3px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  border-radius: 0 5px 5px 0;
}


.benefit-glass h3 { font-size: 1.3rem; margin: 15px 0 10px; }
.benefit-glass p { color: #fff; font-size: 0.9rem; line-height: 1.5; }
.highlight-border { border-color: rgba(14, 165, 233, 0.4); background: rgba(14, 165, 233, 0.05); }
/* ===============================
   MAIN FOOTER
================================ */
.main-footer {
    background-color: #020617;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ===============================
   CTA SECTION
================================ */
.footer-bg-cta {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    text-align: center;
    border-bottom: 1px solid rgba(14,165,233,0.3);
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fbbf24;
}

.cta-content p {
    color: #cbd5f5;
}

.footer-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 18px 36px;
    background-color: #fbbf24;
    color: #000;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
}

.footer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(251,191,36,0.4);
}

/* ===============================
   FOOTER OUTER (EQUAL SIDE SPACE)
================================ */
.footer-outer {
    max-width: 1280px;
    margin: 0 auto;
    padding: 70px 64px 30px;   /* SAME LEFT & RIGHT */
}

/* ===============================
   FOOTER GRID (3 REAL COLUMNS)
================================ */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;                /* SAME SPACE BETWEEN COLUMNS */
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
        justify-items: center;
}

.footer-grid > div {
    min-width: 0;
}

/* ===============================
   COLUMN 1 – BRAND
================================ */
.footer-brand h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.gold-text {
    color: #fbbf24;
}

.footer-brand p {
    color: #fff;
    margin: 0;
}

/* ===============================
   STATUS
================================ */
.status-indicator {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0ea5e9;
    font-size: 0.9rem;
}

.dot {
    width: 8px;
    height: 8px;
    background: #0ea5e9;
    border-radius: 50%;
    box-shadow: 0 0 8px #0ea5e9;
}

/* ===============================
   COLUMN 2 – QUICK LINKS (FIXED)
================================ */
.footer-nav h4 {
    margin-bottom: 16px;
}

.footer-nav ul {
    list-style: none;     /* REMOVE DEFAULT BULLETS */
    padding: 0;           /* REMOVE LEFT SHIFT */
    margin: 0;
}

.footer-nav li {
    display: flex;        /* ALIGN BULLET + TEXT */
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

/* CUSTOM BULLET */
.footer-nav li::before {
    content: "•";
    color: #94a3b8;
    font-size: 1.2rem;
    line-height: 1;
}

.footer-nav a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
}

.footer-nav a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* ===============================
   COLUMN 3 – CONTACT
================================ */
.footer-contact-info h4 {
    margin-bottom: 16px;
}

.footer-contact-info p {
    margin-bottom: 14px;
    color: #94a3b8;
}

/* ===============================
   FOOTER BOTTOM
================================ */
.footer-bottom {
    text-align: center;
    margin-top: 22px;
    font-size: 0.85rem;
    color: #64748b;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 900px) {

    .footer-outer {
        padding: 60px 20px 20px;   
    }

    .footer-grid {
        grid-template-columns: 1fr; 
        gap: 28px;
        justify-items: start;       
        text-align: left;           
    }

    .footer-grid > div {
        max-width: 100%;
        justify-self: start;       
    }

    /* QUICK LINKS – LEFT */
    .footer-nav ul {
        padding-left: 0;
        margin-left: 0;
    }

    .footer-nav li {
        justify-content: flex-start;
    }

    /* CONTACT – LEFT */
    .footer-contact-info p {
        display: flex;
        align-items: center;
        gap: 8px;
        justify-content: flex-start;
    }

    /* STATUS LINE – LEFT */
    .status-indicator {
        justify-content: flex-start;
    }

    /* FOOTER BOTTOM – CENTER (optional) */
    .footer-bottom {
        text-align: center;
    }
}


/* ================= ABOUT SECTION ================= */

.about-section {
    padding: 100px 2rem;
    background-color: #050a18;
    color: white;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ---------- IMAGES (DESKTOP) ---------- */
.about-images {
    position: relative;
    height: 500px;
}

.img-wrapper {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.main-img {
    width: 80%;
    top: 0;
    left: 0;
    z-index: 2;
    border: 2px solid rgba(255,255,255,0.1);
}

.sub-img {
    width: 70%;
    bottom: 0;
    right: 0;
    z-index: 1;
    border: 2px solid #0ea5e9;
}

.img-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.img-wrapper:hover img {
    transform: scale(1.05);
}

/* ---------- CONTENT ---------- */
.about-content {
    max-width: 560px;
}

.section-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-description {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 30px;
    text-align: justify;
}

/* ---------- CHECK GRID ---------- */
.service-check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
    margin-bottom: 35px;
}

.check-item {
    font-weight: 600;
    color: #e2e8f0;
}

/* ---------- CONTACT CARD ---------- */
.contact-highlight {
    background: rgba(14, 165, 233, 0.06);
    padding: 22px;
    border-radius: 18px;
    border-left: 4px solid #fbbf24;
}

.phone-link {
    font-size: 1.9rem;
    font-weight: 800;
    color: #fbbf24;
    text-decoration: none;
    display: inline-block;
    margin-top: 6px;
}

/* ================= MOBILE PERFECT VIEW ================= */
@media (max-width: 768px) {

    .about-section {
        padding: 70px 20px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* TEXT FIRST */
    .about-content {
        order: 1;
        max-width: 100%;
    }

   

    .about-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* CHECK GRID STAYS 2 COLUMN */
    .service-check-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .check-item {
        font-size: 0.95rem;
    }

    /* CONTACT CARD */
    .contact-highlight {
        border-left: none;
        border-top: 3px solid #fbbf24;
    }

    .phone-link {
        font-size: 1.4rem;
    }

    /* IMAGES STACK */
    .about-images {
        order: 2;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .img-wrapper {
        position: relative;
        width: 100%;
    }

    .main-img,
    .sub-img {
        width: 100%;
    }

    .sub-img {
        display: none; /* clean mobile */
    }
}
/* FLOATING ICONS */
.float-wrapper {
    position: fixed;
    right: 18px;
    bottom: 110px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

.float-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* ICON SIZE */
.float-icon i {
    font-size: 22px;
}

/* CALL ICON (WHITE) */
.phone-icon {
    background: #ffffff;
    color: #000000;
}

/* WHATSAPP ICON (GREEN) */
.whatsapp-icon {
    background: #25d366;
    color: #ffffff;
}

/* HOVER */
.float-icon:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

/* MOBILE */
@media (max-width: 600px) {
    .float-wrapper {
        right: 12px;
        bottom: 95px;
    }

    .float-icon {
        width: 52px;
        height: 52px;
    }

    .float-icon i {
        font-size: 20px;
    }
}
.float-icon {
    border: 2px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
}
/* Container Background */
.live-contact-hub {
    background-color: #050a10; /* Match your dark theme */
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

/* Info Side Styles */
.live-info { flex: 1; min-width: 300px; }
.gold-text { color: #fbbf24; }
.pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    margin: 5px;
    font-size: 0.9rem;
}

/* Form Container */
.form-container-premium {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    flex: 1;
    min-width: 320px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.form-header h3 { color: #1a1a1a; margin: 0; font-size: 1.5rem; }
.form-header p { color: #666; margin: 5px 0 25px 0; font-size: 0.9rem; }

/* FIXING INPUTS - The "Perfect" Part */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%; /* Makes them fill the box */
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    background: #fdfdfd;
    box-sizing: border-box; /* PREVENTS OVERFLOW */
    transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus {
    border-color: #fbbf24;
    outline: none;
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.2);
}

/* The Button */
.submit-btn-gold {
    background: #fbbf24 ;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.submit-btn-gold:hover {
    background: #fbbf24;
    transform: translateY(-2px);
}
@media (max-width: 900px) {

  .flex-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .sidebar-info p {
    max-width: 100%;
    margin: 0 auto;
  }

  .cards-layout {
    grid-template-columns: 1fr;
  }

  .benefit-glass {
    padding: 35px 28px;
  }

  /* Move glowing line to TOP for mobile */
  .benefit-glass::before {
    left: 50%;
    top: 0;
    width: 50%;
    height: 3px;
    transform: translateX(-50%);
    border-radius: 0 0 6px 6px;
  }
}
/* ================================
   MOBILE: REMOVE ALL SECTION SPACE
================================ */
@media (max-width: 768px) {

  /* Kill section gaps */
  section {
    margin: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* Kill inner spacing that causes jumps */
  section > div {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 24px !important;   /* minimal readable spacing */
    padding-bottom: 24px !important;
  }

  /* Fix hero causing jump */
  .hero {
    min-height: auto !important;
    padding-top: 96px !important;   /* navbar space */
    padding-bottom: 32px !important;
  }

  /* Fixed navbar compensation */
  body {
    padding-top: 64px !important;
  }

  /* Prevent layout overflow gaps */
  section {
    overflow: hidden;
  }
}
/* ===============================
   BASE RESET
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #020617;
  color: #e5e7eb;
  line-height: 1.7;
}

/* ===============================
   HEADER
================================ */
.site-header {
  background: #030712;
  padding: 18px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-header h1 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
}

.site-header h1 span {
  color: #fbbf24;
}

/* ===============================
   PAGE WRAPPER
================================ */
.policy-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 20px;
}

/* ===============================
   POLICY CARD
================================ */
.policy-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px;
}

.policy-card h2 {
  font-size: 2rem;
  color: #fbbf24;
  margin-bottom: 6px;
}

.updated {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 20px;
}

.policy-card h3 {
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #0ea5e9;
}

.policy-card p {
  color: #cbd5e1;
  margin-bottom: 14px;
}

.policy-card ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.policy-card ul li {
  margin-bottom: 6px;
  color: #e2e8f0;
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */
@media (max-width: 600px) {

  .policy-wrapper {
    padding: 24px 16px;
  }

  .policy-card {
    padding: 24px;
  }

  .policy-card h2 {
    font-size: 1.6rem;
  }

  .contact-cta h2 {
    font-size: 1.4rem;
  }
}
.footer-contact-info a {
  color: #94a3b8;        /* same as footer text */
  text-decoration: none; /* remove underline */
}

.footer-contact-info a:hover {
  color: #94a3b8;        /* no hover color change */
  text-decoration: none;
}
.contact-link,
.contact-link:visited,
.contact-link:hover,
.contact-link:active {
  color: #ffffff;
  text-decoration: none;
}
