/* =======================================
   CSS Variables & Theming
======================================= */
:root {
    /* Primary Colors */
    --primary: #FF0000;
    --primary-hover: #CC0000;
    --primary-light: rgba(255, 0, 0, 0.1);
    
    /* Secondary & Tertiary */
    --tertiary: #eac34a;
    --tertiary-light: rgba(234, 195, 74, 0.1);
    --tertiary-hover: rgba(234, 195, 74, 0.2);

    /* Typography */
    --font-main: 'Cairo', sans-serif;

    /* Theme - Light (Default overridden by dark attribute) */
    --bg-main: #f8f9fa;
    --bg-main-rgb: 248, 249, 250;
    --bg-surface: #ffffff;
    --bg-surface-elevated: #f0f2f5;
    
    --text-main: #131313;
    --text-muted: #5f6368;
    
    --border-color: rgba(0,0,0,0.1);
    --hero-overlay: rgba(255, 255, 255, 0.65);
    
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-primary: 0 10px 30px rgba(255, 0, 0, 0.2);
}

/* Dark Theme overrides via HTML attribute */
[data-theme="dark"] {
    --bg-main: #0f0f0f;
    --bg-main-rgb: 15, 15, 15;
    --bg-surface: #1a1a1a;
    --bg-surface-elevated: #242424;
    
    --text-main: #ffffff;
    --text-muted: #aaaaaa;
    
    --border-color: rgba(255,255,255,0.1);
    --hero-overlay: rgba(0, 0, 0, 0.65);
    
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.2);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.4);
    --shadow-primary: 0 10px 30px rgba(255, 85, 64, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: transparent;
    transition: all 0.3s ease;
}
.text-tertiary {
    color: var(--tertiary);
}
/* Utility / Typo */
.text-primary { color: var(--primary); }
.text-center { text-align: center; }
.icon-primary { color: var(--primary); }
.icon-tertiary { color: var(--tertiary); }
.font-bold { font-weight: bold; }
.fill { font-variation-settings: 'FILL' 1; }
.icon-large { font-size: 3rem; }

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

/* =======================================
   Buttons
======================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
}
.btn-tertiary{
    background: var(--tertiary);
    color: #272626;
}
.btn-tertiary:hover {
    transform: translateY(-2px);
    box-shadow: var(--tertiary-hover);
}


.btn-primary {
    background: linear-gradient(135deg, var(--primary), #FF5540);
    color: #fff;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.2rem;
}
.btn-font {
    font-size: 1.2rem;
}
.btn-outline {
    border: 2px solid var(--primary);
    color: var(--text-main);
}
.btn-outline:hover {
    background: var(--bg-surface-elevated);
}

.btn-outline-alt {
    border: 2px solid var(--tertiary);
    color: var(--tertiary);
}
.btn-outline-alt:hover {
    background: var(--tertiary-light);
}

.icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}
.icon-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* =======================================
   Navbar
======================================= */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(var(--bg-main-rgb), 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links {
    display: flex;
    gap: 30px;
    font-weight: 600;
}
.nav-links a {
    color: var(--text-muted);
}
.nav-links a:hover, .nav-links a.active {
    color: var(--text-main);
}
.nav-links a.active {
    border-bottom: 2px solid var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-cta .btn { display: none; } /* Show theme toggle natively */
    .logo { max-width: 130px; }
}
@media (max-width: 380px) {
    .logo { max-width: 100px; }
}

/* =======================================
   Hero Section
======================================= */
.hero {
    background-image: url('imgs/hero.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 20px 60px; /* Reduced to pull up under navbar */
    display: flex;
    align-items: flex-start; /* Top alignment instead of center */
    justify-content: center;
    text-align: center;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* Safari support */
    background-color: var(--hero-overlay);
    z-index: 1;
    transition: background-color 0.3s ease;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px; /* Safe padding down from navbar */
}

.badge {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: bold;
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
}
.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3px;
    margin-right: 20px;
}

.trust-grid {
    display: flex;
    flex-wrap: nowrap; /* Lock row */
    justify-content: center; /* Center array */
    gap: 15px; /* Tighter gap */
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    width: 100%;
}
.trust-card {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: right;
    background: var(--bg-surface);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    flex: 1 1 0; /* Grow and shrink evenly into row */
    min-width: 0; /* Important breakpoint wrapper overrider */
}
.trust-info h4 { font-size: 1rem; margin-bottom: 4px; }
.trust-info p { font-size: 0.8rem; color: var(--text-muted); }

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .trust-grid {
        gap: 8px; /* Extra tight layout for tiny mobile screens */
        padding-top: 25px;
    }
    .trust-card {
        flex-direction: column; /* Stack logo on top of text */
        text-align: center;
        padding: 12px 5px;
        gap: 5px;
    }
    .trust-info h4 { font-size: 0.85rem; margin-bottom: 2px; }
    .trust-info p { font-size: 0.70rem; line-height: 1.2; }
}

/* =======================================
   Pricing Section
======================================= */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-surface);
}

.section-header {
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.pricing-filter {
    background: var(--bg-surface-elevated);
    display: inline-flex;
    padding: 6px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
}
.filter-btn {
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: bold;
    color: var(--text-muted);
}
.filter-btn.active {
    background: var(--primary);
    color: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.plan-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan-card:hover {
    transform: translateY(-5px);
}
.plan-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-primary);
}
.plan-card.featured:hover { transform: scale(1.05) translateY(-5px); }

.plan-card.tertiary {
    border: 2px solid var(--tertiary);
    transform: scale(1.05);
    box-shadow: var(--shadow-primary);
}
.plan-card.tertiary:hover { transform: scale(1.05) translateY(-5px); }

.plan-card.hidden {
    display: none;
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}
.featured-badge.alt {
    background: var(--tertiary);
    color: #000;
}

.plan-duration {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: bold;
}
.plan-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.old-price {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 700;
    margin-left: 8px;
    opacity: 0.8;
}
.amount {
    font-size: 3rem;
    font-weight: 900;
}
.plan-features {
    flex: 1;
    margin-bottom: 30px;
}
.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}
.checkout-btn { width: 100%; }

@media (max-width: 1024px) {
    .plan-card.featured { transform: none; }
    .plan-card.featured:hover { transform: translateY(-5px); }
}

/* =======================================
   Features Section
======================================= */
.features-section {
    padding: 100px 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.feature-card {
    background: var(--bg-surface);
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}
.feature-card:hover {
    background: var(--bg-surface-elevated);
}
.feature-card h3 {
    font-size: 1.3rem;
    margin: 20px 0 10px;
}
.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.wide-card {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,0,0,0.2);
    background: var(--bg-surface-elevated);
}
.brand-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 15px;
}

/* =======================================
   Reviews Section (Slider)
======================================= */
.reviews-section {
    padding: 80px 0;
    background: var(--bg-surface);
    overflow: hidden;
}
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}
.slider-controls {
    display: flex;
    gap: 10px;
}

.reviews-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    padding-bottom: 20px;
    scroll-behavior: smooth;
}
.reviews-slider::-webkit-scrollbar {
    display: none;
}
.review-card {
    min-width: 350px;
    background: var(--bg-main);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    scroll-snap-align: start;
    flex-shrink: 0;
}
.review-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.stars { color: var(--tertiary); }
.stars span { font-size: 20px; }
.time { font-size: 0.8rem; color: var(--text-muted); }
.review-text {
    font-size: 1rem;
    margin-bottom: 20px;
    min-height: 80px;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: bold;
}
.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
}
.bg-primary-light { background: var(--primary); }
.bg-tertiary-light { background: var(--tertiary); }
.bg-alt-light { background: #4caf50; }

@media (max-width: 768px) {
    .reviews-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .slider-controls { align-self: flex-end; }
    .review-card { min-width: 260px; padding: 20px; } /* Prevent horizontal overflow on XS */
}

/* =======================================
   Contact Section
======================================= */
.contact-section { padding: 100px 0; }
.contact-card {
    background: var(--bg-surface-elevated);
    border-radius: 40px;
    padding: 60px;
    text-align: center;
    border: 1px solid var(--border-color);
}
.contact-info h2 { font-size: 2.5rem; margin-bottom: 15px; }
.contact-info p { color: var(--text-muted); margin-bottom: 40px; font-size: 1.1rem; }
.contact-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.btn-whatsapp { background: #25D366; color: white; }
.btn-whatsapp:hover { background: #20BD5A; transform: translateY(-3px); }
.contact-number {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* =======================================
   Footer
======================================= */
footer {
    background: var(--bg-surface-elevated);
    color: var(--text-main);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}
.footer-brand p { color: var(--text-muted); max-width: 300px; margin-top: 15px; }
.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--text-main); }
.footer-social { display: flex; gap: 15px; }
.social-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    display: flex; align-items: center; justify-content: center;
}
.social-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

/* =======================================
   Premium Floating WhatsApp Widget
======================================= */
.premium-whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px; /* Lock right edge */
    margin: 0 !important; /* Overrid local bug */
    display: flex;
    align-items: center;
    gap: 15px; /* Back to 15px gap since tooltip reversed */
    z-index: 9999;
    text-decoration: none;
    cursor: pointer;
}

.wa-tooltip {
    background-color: var(--bg-surface-elevated);
    color: var(--text-main);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateX(10px); /* In RTL, this moves right (towards icon). 0 moves it left out. */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    border: 1px solid var(--border-color);
}

.premium-whatsapp-widget:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.wa-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin: 0 auto;
}

.wa-icon-wrapper svg {
    width: 30px;
    height: 30px;
}

.premium-whatsapp-widget:hover .wa-icon-wrapper {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
    .premium-whatsapp-widget { bottom: 15px; right: 15px; margin: 0; } /* Lock perfectly on mobile corner */
    .wa-icon-wrapper { width: 45px; height: 45px; }
    .wa-icon-wrapper svg { width: 26px; height: 26px; }
    .wa-tooltip { display: none; } /* Hide tooltip on mobile to save space */
}

/* Scroll Animation Base */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =======================================
   Avatar Group
======================================= */
.avatar-group {
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
    margin-top: 21px;
}
.avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid var(--bg-main);
    object-fit: cover;
    margin-left: -12px;
}
.avatar-img:last-of-type {
    margin-left: 10px;
}
.avatar-badge {
    background: var(--bg-surface-elevated);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    border: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .avatar-group { margin-right: 0; margin-top: 15px; flex-wrap: wrap; justify-content: center; }
}

/* =======================================
   Countdown Strip
======================================= */
.countdown-strip {
    background: var(--bg-surface-elevated);
    padding: 60px 0;
    box-shadow: inset 0 5px 15px rgba(0,0,0,0.1);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.container-flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.countdown-text {
    display: flex;
    align-items: center;
    gap: 15px;
}
.countdown-text h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}
.countdown-text p {
    color: var(--text-muted);
}
.countdown-boxes {
    display: flex;
    gap: 15px;
}
.timer-box {
    background: var(--bg-surface-elevated);
    padding: 15px;
    border-radius: 12px;
    min-width: 80px;
    text-align: center;
    border: 1px solid var(--border-color);
}
.timer-num {
    display: block;
    font-size: 2rem;
    font-weight: 900;
}
.timer-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* =======================================
   Bento Grid Layout
======================================= */
.pt-100 { padding-top: 100px; }
.pb-100 { padding-bottom: 100px; }
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.bento-card {
    background: var(--bg-surface-elevated);
    border-radius: 32px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}
.bento-card:hover {
    background: var(--bg-surface);
}
.bento-card .content {
    position: relative;
    z-index: 2;
}
.bg-glow {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 150px;
    height: 150px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
    z-index: 1;
    transition: opacity 0.3s;
}
.bento-card.group:hover .bg-glow { opacity: 0.2; }
.bento-wide {
    grid-column: span 2;
}
.bento-full {
    grid-column: span 4;
}
.bento-split {
    display: flex;
    align-items: center;
    gap: 40px;
    border: 1px solid rgba(255, 85, 64, 0.2);
}
.bento-text {
    flex: 1;
}
.bento-text h3 { font-size: 2rem; margin-bottom: 15px; }
.bento-images {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.bento-images img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 16px;
    opacity: 0.9;
    transition: transform 0.3s;
}
.bento-images img:hover { transform: scale(1.05); opacity: 1; }

@media (max-width: 992px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-split { flex-direction: column; }
}
@media (max-width: 650px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-wide { grid-column: auto; }
    .bento-full { grid-column: auto; }
}

/* =======================================
   Reviews Marquee Animation
======================================= */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Optional: Faded edges */
    -webkit-mask-image: linear-gradient(to left, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to left, transparent, black 10%, black 90%, transparent);
}
.marquee-content {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: marquee 35s linear infinite;
    direction: rtl; 
}
.marquee-content:hover {
    animation-play-state: paused;
}

/* For RTL scrolling logic */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); /* Moves positively in RTL context to loop */ }
}
/* For LTR fallback but forcing RTL smooth translate */
@keyframes marquee {
    from { transform: translateX(50%); }
    to { transform: translateX(-50%); }
}

/* Hardcode to force smooth looping regardless of rtl trickery */
.marquee-content {
    animation: scroll-left 40s linear infinite;
}
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); /* since elements sit to the left in RTL, positive moves them left */ }
}

/* =======================================
   Polished Contact Card
======================================= */
.box-elevated {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 40px;
}
.contact-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px;
}
.contact-info-col {
    flex: 1;
}
.contact-actions-inline {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.btn-whatsapp-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    color: white;
    background: #25D366;
    padding: 15px 35px;
    border-radius: 50px;
}
.contact-number-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    border: 1px solid var(--border-color);
    background: var(--bg-surface-elevated);
    padding: 15px 35px;
    border-radius: 50px;
}

.payment-methods {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* Fix overflow on XS */
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s, opacity 0.3s;
}
.payment-methods:hover {
    filter: grayscale(0%);
    opacity: 1;
}
.payment-methods img {
    height: 35px;
    object-fit: contain;
}

.contact-agent-col {
    flex: 1;
    position: relative;
}
.agent-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}
.agent-overlay-card {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: var(--bg-surface-elevated);
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
}
.progress-bar-bg {
    width: 100%;
    height: 8px;
    background: var(--bg-main);
    border-radius: 10px;
}
.progress-bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 10px;
}
.w-99 { width: 99.9%; }

@media (max-width: 900px) {
    .contact-layout { flex-direction: column; padding: 40px 20px; text-align: center; }
    .contact-info-col { width: 100%; }
    .contact-actions-inline { justify-content: center; }
    .agent-overlay-card { 
        right: 0; left: 0; margin: 0 auto; 
        bottom: -20px; width: 90%; 
        max-width: 350px;
    }
}
@media (max-width: 480px) {
    .btn-whatsapp-lg, .contact-number-lg { padding: 12px 20px; font-size: 1rem; width: 100%; justify-content: center;}
}

.glow-border { border-color: rgba(255, 85, 64, 0.5); }
.hover-tertiary:hover { border-color: var(--tertiary); box-shadow: 0 10px 30px rgba(234, 195, 74, 0.1); }
