/* ================================================== */
/* ONEDAYPA — SILVER CHROME DARK THEME                */
/* ================================================== */

/* --- CSS Variables --- */
:root {
    --black: #0a0a0a;
    --dark: #111111;
    --dark-2: #1a1a1a;
    --dark-3: #222222;
    --silver: #c0c0c0;
    --silver-light: #e8e8e8;
    --silver-dim: #888888;
    --chrome: #d4d4d4;
    --white: #f5f5f5;
    --accent-orange: #e07b2a;
    --accent-orange-glow: rgba(224, 123, 42, 0.3);
    --accent-green: #25d366;
    --light-bg: #f0f0f0;
    --light-card: #ffffff;
    --text-dark: #1a1a1a;
    --text-mid: #444444;
    --chrome-gradient: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 30%, #a0a0a0 60%, #d0d0d0 100%);
    --chrome-text-gradient: linear-gradient(135deg, #c0c0c0, #ffffff, #a0a0a0, #e0e0e0);
    --border-dark: rgba(255,255,255,0.08);
    --border-light: rgba(0,0,0,0.08);
    --shadow-dark: 0 20px 60px rgba(0,0,0,0.5);
    --shadow-light: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--black);
    overflow-x: hidden;
    line-height: 1.7;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

/* ================================================== */
/* NAVIGATION                                         */
/* ================================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10,10,10,0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10,10,10,0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

/* Logo */
.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--silver-light);
    letter-spacing: 2px;
}
.logo-accent {
    background: var(--chrome-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-links a {
    text-decoration: none;
    color: var(--silver-dim);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
.agents-nav-btn { background: rgba(245,166,35,0.08) !important; border: 1px solid rgba(245,166,35,0.3) !important; color: #f5a623 !important; padding: 8px 16px !important; border-radius: 8px !important; font-size: 0.82rem !important; font-weight: 600 !important; text-decoration: none !important; transition: all 0.2s !important; }
.agents-nav-btn:hover { background: rgba(245,166,35,0.2) !important; }
.join-btn { background: rgba(255,255,255,0.06) !important; border: 1px solid rgba(255,255,255,0.15) !important; color: #c0c0c0 !important; padding: 8px 18px !important; border-radius: 8px !important; font-size: 0.88rem !important; transition: all 0.2s !important; }
.join-btn:hover { background: rgba(255,255,255,0.1) !important; color: #e8e8e8 !important; }
.login-btn { background: rgba(192,192,192,0.1) !important; border: 1px solid rgba(192,192,192,0.3) !important; color: #c0c0c0 !important; padding: 8px 18px !important; border-radius: 8px !important; font-size: 0.88rem !important; transition: all 0.2s !important; }
.login-btn:hover { background: rgba(192,192,192,0.2) !important; color: #e8e8e8 !important; }

.cta-btn {
    background: var(--chrome-gradient);
    color: var(--black);
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(192,192,192,0.2);
}
.cta-btn:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(192,192,192,0.4); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: relative;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--silver);
    border-radius: 2px;
    transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================== */
/* HERO SECTION                                       */
/* ================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 5% 80px;
    gap: 60px;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

/* Chrome orbs for atmosphere */
.chrome-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.15;
}
.orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #888 0%, transparent 70%);
    top: -200px; right: -100px;
    animation: float-orb 8s ease-in-out infinite;
}
.orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--accent-orange) 0%, transparent 70%);
    bottom: -100px; left: -100px;
    opacity: 0.08;
    animation: float-orb 10s ease-in-out infinite reverse;
}

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

.hero-content { flex: 1; max-width: 580px; z-index: 2; }

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--silver);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--silver-light);
    line-height: 1.05;
    margin-bottom: 24px;
}

.chrome-text {
    background: var(--chrome-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-sub {
    color: var(--silver-dim);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 480px;
    line-height: 1.8;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.main-btn {
    padding: 16px 36px;
    background: var(--accent-orange);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px var(--accent-orange-glow);
}
.main-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-orange-glow); }

.ghost-btn {
    padding: 16px 36px;
    background: transparent;
    color: var(--silver);
    border: 1px solid rgba(192,192,192,0.3);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}
.ghost-btn:hover { border-color: var(--silver); color: var(--silver-light); background: rgba(192,192,192,0.05); }

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--silver-light); }
.stat-label { font-size: 0.75rem; color: var(--silver-dim); letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

/* Hero Image */
.hero-image { flex: 1; display: flex; justify-content: center; z-index: 2; }
.hero-img-frame {
    position: relative;
    border-radius: 0;
    overflow: visible;
    border: none;
    box-shadow: none;
    background: transparent;
}
.hero-img-frame::before {
    display: none;
}
.hero-image img {
    width: 100%;
    max-width: 680px;
    display: block;
    border-radius: 0;
    border: none;
    background: transparent;
    mix-blend-mode: lighten;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
}
.hero-image img:hover { transform: scale(1.03); }

/* ================================================== */
/* SECTION STYLES — ALTERNATING DARK / LIGHT          */
/* ================================================== */
.section-dark {
    background: var(--dark);
    padding: 100px 0;
}
.section-light {
    background: var(--light-bg);
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 12px;
}
.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.section-dark .section-title { color: var(--silver-light); }
.section-light .section-title { color: var(--text-dark); }
.section-desc { font-size: 1rem; color: var(--silver-dim); }
.section-light .section-desc { color: var(--text-mid); }

/* ================================================== */
/* HOW IT WORKS — STEPS                               */
/* ================================================== */
.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step-card {
    background: var(--dark-2);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 36px 28px;
    flex: 1;
    min-width: 220px;
    max-width: 300px;
    position: relative;
    transition: all 0.3s;
    text-align: center;
}
.step-card:hover {
    border-color: rgba(192,192,192,0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(192,192,192,0.15);
    line-height: 1;
    margin-bottom: 12px;
}
.step-icon { font-size: 2rem; margin-bottom: 16px; }
.step-card h3 { color: var(--silver-light); font-size: 1.2rem; margin-bottom: 12px; }
.step-card p { color: var(--silver-dim); font-size: 0.9rem; line-height: 1.7; }
.step-connector { color: var(--silver-dim); font-size: 1.5rem; opacity: 0.4; }

/* ================================================== */
/* SERVICES GRID                                      */
/* ================================================== */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--light-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
    position: relative;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-light);
    border-color: rgba(0,86,179,0.2);
}
.card-icon { font-size: 2.2rem; margin-bottom: 16px; }
.card h3 { color: #0056b3; font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.6; margin-bottom: 12px; }
.card-arrow { color: #0056b3; font-size: 0.82rem; font-weight: 600; opacity: 0.6; }

/* Service Dropdown */
.card-with-dropdown { position: relative; overflow: visible !important; cursor: default; }

.service-dropdown {
    display: none;
    position: absolute;
    top: 100%; left: 0; width: 100%;
    background: white;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    z-index: 100;
    padding: 8px 0;
    border: 1px solid #eee;
    border-top: none;
    animation: fadeIn 0.2s ease;
}
.card-with-dropdown:hover .service-dropdown { display: block; }
.card-with-dropdown:hover {
    border-radius: 16px 16px 0 0;
    border-bottom-color: transparent;
    z-index: 101;
}

.dropdown-category {
    padding: 8px 20px 4px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0056b3;
    background: #f0f7ff;
    border-bottom: 1px solid #e8f0fe;
    margin-top: 4px;
}
.dropdown-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #555;
    text-decoration: none;
    font-size: 0.88rem;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s;
    cursor: pointer;
}
.dropdown-item:last-child { border-bottom: none; border-radius: 0 0 16px 16px; }
.dropdown-item:hover { background: #f0f7ff; color: #0056b3; padding-left: 26px; }
.dropdown-icon { margin-right: 10px; font-size: 1rem; }

/* Tooltip */
.service-tooltip {
    display: none;
    position: absolute;
    left: 100%; top: 0;
    width: 240px;
    background: white;
    border: 1px solid #0056b3;
    border-left: 4px solid #0056b3;
    padding: 14px;
    border-radius: 8px;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.12);
    z-index: 200;
    color: #444;
    font-size: 0.82rem;
    line-height: 1.5;
    pointer-events: none;
}
.service-tooltip strong { display: block; color: #0056b3; margin-bottom: 5px; font-size: 0.9rem; }
.dropdown-item:hover .service-tooltip { display: block; animation: slideRight 0.2s ease-out; }
.force-left-tooltip .service-dropdown .dropdown-item:hover .service-tooltip {
    left: auto; right: 100%;
    border-left: 1px solid #0056b3;
    border-right: 4px solid #0056b3;
    animation: slideLeft 0.2s ease-out;
}

/* ================================================== */
/* WHY ONEDAYPA                                       */
/* ================================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}
.why-card {
    background: var(--dark-2);
    border: 1px solid var(--border-dark);
    border-left: 4px solid var(--silver);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-dark); }
.why-card.accent-orange { border-left-color: var(--accent-orange); }
.why-card.accent-green { border-left-color: var(--accent-green); }
.why-icon { font-size: 2.5rem; margin-bottom: 16px; }
.why-card h3 { color: var(--silver-light); font-size: 1.2rem; margin-bottom: 10px; }
.why-card p { color: var(--silver-dim); font-size: 0.9rem; line-height: 1.7; }

/* ================================================== */
/* PRICING                                            */
/* ================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}
.pricing-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    transition: all 0.3s;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-light); }
.pricing-card.featured {
    background: var(--dark);
    border-color: rgba(192,192,192,0.2);
    color: var(--silver-light);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.pricing-badge {
    position: absolute;
    top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--accent-orange);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.pricing-tag { font-size: 0.82rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--silver-dim); margin-bottom: 12px; }
.pricing-card.featured .pricing-tag { color: var(--silver); }
.pricing-price { font-family: 'Cormorant Garamond', serif; font-size: 3.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.pricing-card.featured .pricing-price { color: var(--silver-light); }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--silver-dim); }
.pricing-desc { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 24px; }
.pricing-card.featured .pricing-desc { color: var(--silver-dim); }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li { padding: 6px 0; font-size: 0.88rem; color: var(--text-mid); border-bottom: 1px solid #f5f5f5; }
.pricing-card.featured .pricing-features li { color: var(--silver-dim); border-bottom-color: rgba(255,255,255,0.06); }
.pricing-btn {
    width: 100%;
    padding: 14px;
    background: #0056b3;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.pricing-card.featured .pricing-btn {
    background: var(--chrome-gradient);
    color: var(--black);
}
.pricing-btn:hover { transform: scale(1.03); opacity: 0.9; }

/* ================================================== */
/* TESTIMONIALS                                       */
/* ================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.testimonial-card {
    background: var(--dark-2);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(192,192,192,0.2); }
.testimonial-card.featured-testimonial {
    border-color: rgba(192,192,192,0.25);
    background: var(--dark-3);
    box-shadow: 0 0 0 1px rgba(192,192,192,0.1);
}
.stars { color: #f5c518; font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { color: var(--silver-dim); font-size: 0.92rem; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 44px; height: 44px;
    background: var(--chrome-gradient);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: var(--black); font-size: 1.1rem;
    flex-shrink: 0;
}
.testimonial-author strong { color: var(--silver-light); font-size: 0.95rem; }
.testimonial-author span { color: var(--silver-dim); font-size: 0.8rem; }

/* ================================================== */
/* FAQ                                                */
/* ================================================== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item:hover { border-color: #0056b3; box-shadow: 0 4px 15px rgba(0,86,179,0.08); }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--text-dark);
}
.faq-icon { color: #0056b3; font-size: 1.3rem; font-weight: 400; transition: transform 0.3s; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: var(--text-mid);
    font-size: 0.92rem;
    line-height: 1.8;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 20px; }
.faq-item.open { border-color: #0056b3; }

/* ================================================== */
/* CONTACT                                            */
/* ================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-icon { font-size: 1.5rem; margin-top: 2px; }
.contact-item strong { color: var(--silver-light); font-size: 0.9rem; display: block; margin-bottom: 4px; }
.contact-item p { color: var(--silver-dim); font-size: 0.9rem; }
.whatsapp-contact-btn {
    display: inline-block;
    background: var(--accent-green);
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s;
}
.whatsapp-contact-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.3); }

.contact-form-box {
    background: var(--dark-2);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 36px;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: var(--silver); font-size: 0.85rem; font-weight: 500; margin-bottom: 8px; letter-spacing: 0.3px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 13px 16px;
    background: var(--dark-3);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    color: var(--silver-light);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    transition: border-color 0.3s;
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: rgba(192,192,192,0.4);
}
.form-group textarea { resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--silver-dim); }
.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--chrome-gradient);
    color: var(--black);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}
.submit-btn:hover { transform: scale(1.02); box-shadow: 0 6px 20px rgba(192,192,192,0.3); }

/* ================================================== */
/* BLOG                                               */
/* ================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.blog-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-light); border-color: #0056b3; }
.blog-tag {
    display: inline-block;
    background: #f0f7ff;
    color: #0056b3;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.blog-card h4 { color: var(--text-dark); font-size: 1.15rem; margin-bottom: 10px; }
.blog-card p { color: var(--text-mid); font-size: 0.88rem; line-height: 1.7; margin-bottom: 18px; }
.blog-link { color: #0056b3; font-weight: 600; font-size: 0.88rem; text-decoration: none; transition: gap 0.2s; }
.blog-link:hover { letter-spacing: 0.3px; }

/* ================================================== */
/* FOOTER                                             */
/* ================================================== */
.footer { background: var(--black); border-top: 1px solid var(--border-dark); padding-top: 70px; }
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 60px;
}
.footer-brand .logo-text { font-size: 1.5rem; }
.footer-brand p { color: var(--silver-dim); font-size: 0.88rem; margin-top: 14px; line-height: 1.8; }
.footer-links h4, .footer-contact h4 { color: var(--silver); font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; }
.footer-links a { color: var(--silver-dim); text-decoration: none; font-size: 0.88rem; margin-bottom: 10px; transition: color 0.2s; }
.footer-links a:hover { color: var(--silver-light); }
.footer-contact p { color: var(--silver-dim); font-size: 0.88rem; margin-bottom: 10px; }
.footer-wa-btn {
    display: inline-block;
    background: var(--accent-green);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s;
}
.footer-wa-btn:hover { opacity: 0.85; }
.footer-bottom {
    border-top: 1px solid var(--border-dark);
    text-align: center;
    padding: 20px 5%;
}
.footer-bottom p { color: var(--silver-dim); font-size: 0.82rem; }

/* ================================================== */
/* MODAL                                              */
/* ================================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(8px);
    overflow: auto;
}
.modal-content {
    background: var(--dark-2);
    border: 1px solid var(--border-dark);
    margin: 5% auto;
    padding: 44px;
    border-radius: 20px;
    width: 90%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.modal-content h2 { color: var(--silver-light); font-size: 1.8rem; margin-bottom: 8px; }
.modal-content > p { color: var(--silver-dim); font-size: 0.9rem; margin-bottom: 28px; }
.close-btn { position: absolute; top: 16px; right: 22px; font-size: 28px; cursor: pointer; color: var(--silver-dim); transition: color 0.2s; }
.close-btn:hover { color: var(--silver-light); }

/* ================================================== */
/* WHATSAPP FLOAT                                     */
/* ================================================== */
.whatsapp-float {
    touch-action: none;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    background: #25d366 !important;
    position: fixed !important;
    bottom: 28px !important;
    right: 28px !important;
    z-index: 5000 !important;
    padding: 12px 22px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4) !important;
    animation: pulse-green 2.5s infinite !important;
    cursor: pointer !important;
}
.whatsapp-float img { width: 22px !important; height: 22px !important; }
.whatsapp-float span { color: white !important; font-weight: 600 !important; font-size: 0.95rem !important; font-family: 'DM Sans', sans-serif !important; }

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
    70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ================================================== */
/* SCROLL ANIMATIONS                                  */
/* ================================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ================================================== */
/* KEYFRAMES                                          */
/* ================================================== */
@keyframes fadeIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideRight { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideLeft { from { opacity: 0; transform: translateX(8px); } to { opacity: 1; transform: translateX(0); } }

/* ================================================== */
/* RESPONSIVE — MOBILE FIRST                          */
/* ================================================== */
@media (max-width: 1024px) {
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    /* Nav */
    .hamburger { display: flex; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(10,10,10,0.98);
        z-index: 999;
        padding: 10px 0 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        overflow-y: auto;
        max-height: calc(100vh - 60px);
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; text-align: center; }
    .nav-links a {
        display: block;
        padding: 14px 20px;
        font-size: 1rem;
        color: var(--silver);
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .nav-links li:last-child { margin-top: 10px; border-bottom: none; }
    .cta-btn { padding: 12px 28px; font-size: 0.95rem; }

    /* Hero */
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 100px 5% 60px;
        gap: 40px;
    }
    .hero h1 { font-size: 3rem; }
    .hero-sub { font-size: 1rem; max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image img { max-width: 100%; mix-blend-mode: lighten; }

    /* Steps */
    .steps-grid { flex-direction: column; align-items: stretch; }
    .step-connector { display: none; }
    .step-card { max-width: 100%; }

    /* Section title */
    .section-title { font-size: 2.2rem; }

    /* Pricing */
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; }

    /* Footer */
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }

    /* Dropdown tooltips — hidden on mobile */
    .service-tooltip { display: none !important; }

    /* Mobile card dropdown */
    .card-with-dropdown { overflow: visible !important; }
    .card-with-dropdown .service-dropdown { display: none; }
    .card-with-dropdown.active { border-radius: 16px 16px 0 0; z-index: 101; }
    .card-with-dropdown.active .service-dropdown {
        display: block !important;
        position: relative !important;
        top: auto !important;
        box-shadow: none !important;
        border: 1px solid #eee !important;
        border-top: none !important;
        border-radius: 0 0 16px 16px !important;
        margin: 0 -28px -28px -28px;
    }

    /* Modal */
    .modal-content { margin: 10% auto; padding: 28px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.4rem; }
    .main-btn, .ghost-btn { width: 100%; text-align: center; }
    .hero-actions { flex-direction: column; }
    .contact-form-box { padding: 24px; }
}

/* SERVICE CHECKBOXES IN BOOKING MODAL */
.service-checkboxes {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 12px 16px;
    max-height: 220px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
}
.service-checkboxes::-webkit-scrollbar { width: 4px; }
.service-checkboxes::-webkit-scrollbar-track { background: transparent; }
.service-checkboxes::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }
.svc-group-label {
    grid-column: 1 / -1;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #0056b3;
    padding: 8px 0 3px;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 4px;
}
.svc-group-label:first-child { border-top: none; margin-top: 0; padding-top: 2px; }
.svc-check {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.83rem;
    color: #999;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 6px;
    transition: background 0.15s;
}
.svc-check:hover { background: rgba(255,255,255,0.05); color: #e8e8e8; }
.svc-check input[type="checkbox"] { accent-color: #0056b3; width: 14px; height: 14px; flex-shrink: 0; cursor: pointer; }
.svc-check:has(input:checked) { color: #e8e8e8; background: rgba(0,86,179,0.08); }
