/* 
    Revanta Growth Media - Custom Stylesheet
    Version 2.0 (Multi-page Support)
*/

:root {
    --primary-blue: #0a255c;
    --secondary-red: #e63946;
    --accent-blue: #1d3557;
    --logo-gold: #ffb703;
    --orange: #ff8c00;
    --text-dark: #1a1a1a;
    --text-light: #f8f9fa;
    --bg-light: #ffffff;
    --bg-gray: #f4f7f6;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --mobile-padding: 20px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.no-scroll { overflow: hidden; }
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text-dark); line-height: 1.6; background-color: var(--bg-light); overflow-x: hidden; }
h1, h2, h3, h4, .logo { font-family: 'Outfit', sans-serif; font-weight: 700; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.text-center { text-align: center; }
.text-red { color: var(--secondary-red); }
.text-orange { color: var(--orange); }
.mt-50 { margin-top: 50px; }

/* --- Buttons --- */
.btn { display: inline-block; padding: 14px 35px; border-radius: 50px; font-weight: 700; cursor: pointer; transition: var(--transition); border: 2px solid transparent; font-size: 1.05rem; }
.btn-primary { background: var(--secondary-red); color: var(--white); border-color: var(--secondary-red); box-shadow: 0 10px 25px rgba(230, 57, 70, 0.4); }
.btn-primary:hover { background: var(--white); color: var(--secondary-red); transform: translateY(-3px); }
.btn-secondary { background: var(--white); color: var(--secondary-red); border-color: var(--white); box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2); }
.btn-secondary:hover { background: transparent; color: var(--white); transform: translateY(-3px); }
.btn-outline { border: 2px solid var(--primary-blue); color: var(--primary-blue); background: transparent; }
.btn-whatsapp { background-color: #25d366; color: var(--white); display: flex; align-items: center; gap: 8px; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); }
.btn-whatsapp:hover { background-color: #128c7e; transform: translateY(-3px); }

.btn-login {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
    font-size: 0.95rem;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-login:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.header.scrolled .btn-login {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.header.scrolled .btn-login:hover {
    background: var(--primary-blue);
    color: var(--white);
}

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

/* --- Text-based Logo --- */
.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--white);
    transition: var(--transition);
}

.logo-text .highlight {
    color: var(--secondary-red); /* Updated to Red */
}

.header.scrolled .logo-text {
    color: var(--primary-blue); /* Fallback to blue for readability on white bg */
}

.header.scrolled .logo-text .highlight {
    color: var(--secondary-red);
}

/* --- Header & Nav --- */
.header { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 1000; 
    padding: 20px 0; 
    transition: var(--transition); 
}
.header.scrolled { 
    background: rgba(255, 255, 255, 0.98); 
    backdrop-filter: blur(15px); 
    padding: 12px 0; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
}
.header-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    max-width: 1400px; /* Wider container for more menu items */
    margin: 0 auto;
    padding: 0 30px;
}

/* Button-style Menu Layout */
.nav-menu {
    margin-left: auto; /* Pushes the entire menu to the right */
    margin-right: 30px; /* Space between menu and CTA button */
}

.nav-menu ul { 
    display: flex; 
    gap: 8px; 
    align-items: center; 
}

.nav-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap; /* Prevent text wrapping like 'Our Team' */
    transition: var(--transition);
}

.header.scrolled .nav-btn {
    color: var(--primary-blue);
    background: rgba(10, 37, 92, 0.05);
    border: 1px solid rgba(10, 37, 92, 0.1);
}

.nav-btn i {
    font-size: 0.8rem;
    margin-left: 5px;
}

.nav-btn:hover, .nav-btn.active {
    background: var(--secondary-red) !important;
    color: var(--white) !important;
    border-color: var(--secondary-red) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

/* Dropdown Menu */
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 280px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 15px 0;
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
}

.dropdown:hover .dropdown-menu { display: block; opacity: 1; transform: translateY(0); }
.dropdown-menu li { width: 100%; }
.dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
    background-color: var(--secondary-red);
    color: var(--white);
    padding-left: 35px;
    border-left-color: var(--orange);
}

/* --- Navigation Responsive --- */
.mobile-login { display: none; }

@media (max-width: 992px) {
    .header-container { padding: 15px var(--mobile-padding); }
    
    .mobile-toggle { display: block; cursor: pointer; z-index: 10001; }
    
    /* Fix overlapping header on mobile */
    .logo-text { font-size: 1.1rem !important; }
    .ad-cta-btn { padding: 8px 15px !important; font-size: 0.9rem !important; min-width: auto !important; }
    .header .container { gap: 10px; }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        padding: 20px 30px;
        transition: var(--transition);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        display: block !important;
        border-top: 1px solid rgba(0,0,0,0.05);
        max-height: 80vh;
        overflow-y: auto;
    }

    .nav-menu.active { 
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-overlay {
        display: none !important; /* Disable overlay for top-down menu */
    }

    .nav-menu ul { flex-direction: column; gap: 0; }
    .nav-menu ul li { width: 100%; }
    
    .dropdown-menu { 
        position: static; 
        opacity: 1; 
        visibility: visible; 
        box-shadow: none; 
        display: block !important; 
        padding: 0 0 10px 15px; 
        border-top: none;
        background: transparent;
    }

    .nav-btn i { display: none !important; }

    .dropdown-menu li a {
        padding: 10px 0;
        font-size: 0.95rem;
        border-left: none;
        color: rgba(0,0,0,0.6) !important;
        display: block;
    }

    .dropdown-menu li a:hover {
        background: transparent;
        color: var(--secondary-red) !important;
    }
    
    .dropdown.active .dropdown-menu { display: block; }
    
    .nav-btn.active {
        color: var(--secondary-red) !important;
        background: transparent !important;
        font-weight: 700;
        border-bottom: 1px solid rgba(0,0,0,0.05) !important;
    }

    .nav-btn { 
        color: var(--text-dark) !important; 
        font-size: 1.1rem; 
        padding: 15px 0; 
        width: 100%; 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        background: transparent !important;
        border: none !important;
        border-bottom: 1px solid rgba(0,0,0,0.05) !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        transform: none !important;
    }

    .dropdown.active > .nav-btn {
        color: var(--secondary-red) !important;
    }
    
    .header-actions .btn-whatsapp { display: none; }
    .header-actions .btn-login { display: none; }
    .mobile-login { display: block; }
    
    .header { z-index: 10001 !important; background: transparent; } /* Transparent by default on home */
    .header.scrolled { background: var(--white) !important; } /* Solid when scrolled or on inner pages */
    
    .header .logo-text { color: var(--white) !important; }
    .header.scrolled .logo-text { color: var(--primary-blue) !important; }
    
    .mobile-toggle { display: block !important; color: var(--white); font-size: 1.8rem; z-index: 10002 !important; }
    .header.scrolled .mobile-toggle { color: var(--text-dark); }
}

/* --- Hero Slider Responsive --- */
@media (max-width: 768px) {
    .hero-slider { min-height: 100vh; padding: 140px 0 80px; display: flex; align-items: center; }
    .slide-grid { grid-template-columns: 1fr !important; gap: 20px; text-align: center; }
    
    .slide-left { order: 2; z-index: 5; position: relative; }
    .slide-left .badge { display: inline-block; position: static; margin-bottom: 15px; font-size: 0.75rem; padding: 8px 15px; }
    .slide-left h1 { font-size: 2rem !important; line-height: 1.2; margin-bottom: 15px; font-weight: 800; }
    .slide-left p { font-size: 0.95rem !important; line-height: 1.6; opacity: 0.9; margin-bottom: 25px; padding: 0 10px; }
    
    .hero-btns { display: flex; flex-direction: column; gap: 12px; align-items: center; width: 100%; max-width: 300px; margin: 0 auto; }
    .hero-btns .btn { width: 100%; margin: 0 !important; padding: 14px 20px; font-size: 0.9rem; }
    
    .slide-right { order: 1; position: absolute; top: 15%; left: 50%; transform: translateX(-50%) scale(0.5); opacity: 0.3; z-index: 1; pointer-events: none; height: 200px; overflow: hidden; }
    .glass-dashboard, .glass-browser, .glass-sphere { margin: 0 auto; }
    

    
    .slider-dots { bottom: 15px; }
    .dot { width: 8px; height: 8px; }
    .dot.active { width: 25px; }
}

@media (max-width: 480px) {
    .hero-slider { padding-top: 120px; }
    .slide-left h1 { font-size: 1.7rem !important; }
    .header-container { padding: 12px 15px; }
}

/* --- Content Sections Responsive --- */
@media (max-width: 992px) {
    .grid-3 { grid-template-columns: 1fr; gap: 30px; }
    .grid-2 { grid-template-columns: 1fr !important; gap: 50px; }
    
    .about-modern-grid { grid-template-columns: 1fr !important; text-align: center; }
    .about-image-stack { padding-right: 0 !important; margin-bottom: 50px; }
    .about-image-stack img { height: 450px !important; }
}

/* --- Portfolio Grid Responsive --- */
@media (max-width: 768px) {
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-overlay { opacity: 1; background: rgba(0,0,0,0.6); }
}

/* --- Contact Container Responsive --- */
@media (max-width: 992px) {
    .contact-container { grid-template-columns: 1fr; gap: 40px; padding: 40px 0; }
    .info-card { order: 2; }
    .contact-form { order: 1; }
}

/* --- Inner Hero Responsive --- */
@media (max-width: 768px) {
    .inner-hero { padding: 120px 0 60px; }
    .inner-hero h1 { font-size: 2.5rem !important; }
}

/* --- Footer Responsive Refinement --- */
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-col.brand-col { align-items: center; display: flex; flex-direction: column; }
    .social-links { justify-content: center; }
}

/* --- Stats Section Responsive --- */
@media (max-width: 768px) {
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .stat-item h2 { font-size: 2.5rem; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
}

.mobile-toggle { display: none; font-size: 1.5rem; background: none; border: none; color: var(--primary-blue); }

/* --- Hero Slider --- */
.hero-slider { position: relative; height: 95vh; overflow: hidden; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; opacity: 0; visibility: hidden; transition: opacity 0.8s ease-in-out, visibility 0.8s; z-index: 1; }
.slide.active { opacity: 1; visibility: visible; z-index: 2; }

.slide-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    width: 100%;
}

.slide-left {
    color: var(--white);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.slide-left h1 { 
    font-size: 3.8rem; /* Reasonable premium size */
    line-height: 1.1; 
    margin: 20px 0; 
    font-weight: 800;
    text-transform: capitalize;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.slide-left p { 
    font-size: 1.5rem; 
    margin-bottom: 50px; 
    font-weight: 500;
    line-height: 1.5;
    opacity: 0.9;
}

@keyframes fadeInCenter {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide.active .slide-left {
    animation: fadeInCenter 1s ease-out forwards;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* --- Glassmorphism UI Components --- */
.glass-dashboard, .glass-browser, .glass-sphere {
    width: 400px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.glass-header, .browser-top {
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 8px;
}

.glass-header span, .browser-top span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.glass-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); margin-bottom: 15px; font-weight: 700; }
.stat-row { display: flex; align-items: center; gap: 15px; margin-bottom: 12px; }
.stat-row span { font-size: 0.8rem; color: var(--white); font-weight: 600; min-width: 35px; }

.stat-bar {
    height: 8px;
    background: linear-gradient(90deg, var(--orange), transparent);
    flex: 1;
    border-radius: 4px;
    animation: grow 2s ease-out forwards;
}

.browser-hero { height: 80px; background: rgba(255, 255, 255, 0.08); border-radius: 12px; margin-bottom: 20px; padding: 20px; }
.hero-line { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; margin-bottom: 8px; }

.project-box { 
    background: rgba(255, 255, 255, 0.05); 
    height: 70px; 
    border-radius: 10px; 
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    transition: var(--transition);
}
.project-box:hover { background: rgba(255,255,255,0.1); transform: scale(1.05); }

.floating-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.glass-sphere {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-sphere .core {
    width: 100px;
    height: 100px;
    background: var(--orange);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.5;
}

.glass-sphere i { font-size: 5rem; color: var(--white); position: absolute; }

@keyframes grow {
    from { width: 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.badge { display: inline-block; padding: 6px 16px; background-color: var(--secondary-red); border-radius: 20px; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; margin: 0 auto; }
.hero-btns { display: flex; gap: 20px; justify-content: center; }


.slider-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; }
.dot.active { background: var(--white); width: 25px; border-radius: 10px; }

/* --- Services & Grid --- */
.grid { display: grid; gap: 30px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.service-card { padding: 40px; background: var(--white); border-radius: 20px; text-align: center; transition: var(--transition); border: 1px solid #f0f0f0; }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
.icon-wrapper { width: 70px; height: 70px; background: #f0f4ff; color: var(--primary-blue); border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 25px; }
.link-more { color: var(--secondary-red); font-weight: 600; font-size: 0.9rem; margin-top: 15px; display: inline-block; }

/* --- Process Steps --- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px; position: relative; }
.process-step { text-align: center; position: relative; z-index: 2; }
.step-number { width: 60px; height: 60px; background: var(--secondary-red); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; margin: 0 auto 20px; box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3); }
.process-step h4 { margin-bottom: 15px; color: var(--primary-blue); }

/* --- Stats Section --- */
.stats-section { background: linear-gradient(135deg, var(--primary-blue), #1a3a8a); padding: 80px 0; color: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item h2 { font-size: 3.5rem; color: var(--orange); margin-bottom: 5px; }
.stat-item p { font-weight: 600; opacity: 0.8; text-transform: uppercase; font-size: 0.9rem; }

/* --- Testimonials --- */
.testimonial-card { background: var(--white); padding: 40px; border-radius: 20px; box-shadow: var(--shadow); position: relative; text-align: left; }
.testimonial-card i { font-size: 2rem; color: var(--orange); opacity: 0.3; position: absolute; top: 20px; right: 20px; }
.client-info { display: flex; align-items: center; gap: 15px; margin-top: 25px; }
.client-img { width: 50px; height: 50px; border-radius: 50%; background: var(--bg-gray); }

/* --- Scroll Reveal --- */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* --- CTA Banner --- */
.cta-banner { background: var(--primary-blue); color: var(--white); padding: 80px 0; text-align: center; }
.cta-banner h2 { font-size: 2.5rem; margin-bottom: 15px; }
.cta-banner p { font-size: 1.1rem; opacity: 0.8; margin-bottom: 35px; }
.cta-actions { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.cta-actions .btn { min-width: 250px; }

/* --- Footer --- */
.footer { background: #051433 !important; color: var(--white) !important; padding: 100px 0 30px; position: relative; z-index: 10; }
.footer-grid { 
    display: grid; 
    grid-template-columns: 1.5fr 1fr 1fr 1fr; 
    gap: 40px; 
}

.footer .logo-text { color: var(--white) !important; font-size: 1.6rem; margin-bottom: 25px; display: inline-block; }
.footer .highlight { color: var(--secondary-red) !important; }

.footer-contact p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    width: 20px;
    text-align: center;
}

.footer-col h4 { 
    color: var(--white); 
    font-size: 1.2rem; 
    margin-bottom: 30px; 
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-red);
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 15px; }
.footer-links li a { 
    color: rgba(255, 255, 255, 0.7) !important; 
    font-size: 0.95rem; 
    transition: var(--transition);
}

.footer-links li a:hover { 
    color: var(--orange) !important; 
    padding-left: 8px; 
}

.social-links { display: flex; gap: 15px; margin-top: 30px; }
.social-links a { 
    width: 40px; 
    height: 40px; 
    background: rgba(255, 255, 255, 0.1); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover { background: var(--secondary-red); transform: translateY(-3px); }

/* --- Inner Pages Hero --- */
.inner-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, rgba(10, 37, 92, 0.95), rgba(10, 37, 92, 0.98)), url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    text-align: center;
    color: var(--white);
}

.inner-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* --- Legal Pages --- */
.legal-content h2 { font-size: 1.8rem; color: var(--primary-blue); margin-top: 50px; margin-bottom: 20px; border-bottom: 1px solid var(--bg-gray); padding-bottom: 10px; }
.legal-content h3 { font-size: 1.3rem; color: var(--text-dark); margin-top: 30px; margin-bottom: 15px; }
.legal-content p { font-size: 1.1rem; line-height: 1.8; color: #444; margin-bottom: 20px; }
.legal-content ul { padding-left: 20px; margin-bottom: 30px; }
.legal-content li { font-size: 1.1rem; line-height: 1.8; color: #444; margin-bottom: 10px; }

/* --- About Page Refactored Layouts --- */
.about-section { padding-top: 100px; }
.about-modern-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.about-image-stack { position: relative; }
.about-image-bg { position: absolute; width: 100%; height: 100%; background: var(--bg-gray); top: 30px; left: -30px; border-radius: 40px; z-index: -1; }
.about-main-img { width: 100%; height: 650px; object-fit: cover; border-radius: 40px; box-shadow: 0 40px 80px rgba(0,0,0,0.1); }
.about-years-badge { position: absolute; bottom: -30px; right: -30px; background: var(--secondary-red); color: white; padding: 30px 40px; border-radius: 20px; box-shadow: 0 20px 40px rgba(230,57,70,0.3); text-align: center; }
.about-years-badge h3 { font-size: 2.5rem; font-weight: 800; line-height: 1; margin: 0; color: white; }
.about-years-badge p { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; margin-bottom: 0; color: white; }

.about-main-heading { font-size: 3.5rem; line-height: 1.1; margin-bottom: 30px; color: var(--primary-blue); }
.about-main-desc { font-size: 1.15rem; line-height: 1.8; color: #444; margin-bottom: 30px; }
.about-check-list { display: grid; gap: 15px; margin-bottom: 40px; }
.check-item { display: flex; gap: 12px; align-items: center; }
.check-item i { color: var(--secondary-red); }
.check-item span { font-weight: 600; color: var(--text-dark); }

.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.mv-box { background: var(--bg-gray); padding: 30px; border-radius: 20px; transition: 0.3s; }
.mv-box:hover { background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.mv-box h4 { color: var(--secondary-red); margin-bottom: 10px; }
.mv-box p { font-size: 0.85rem; opacity: 0.8; line-height: 1.6; margin-bottom: 0; }

.footer-bottom { 
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
    margin-top: 60px; 
    padding-top: 30px; 
    text-align: center; 
}

.footer-bottom p { opacity: 0.5; font-size: 0.9rem; }

@media (max-width: 992px) {
    .process-grid, .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 500px) {
    .process-grid, .stats-grid { grid-template-columns: 1fr; }
}

/* --- Floating WhatsApp --- */
.floating-whatsapp { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; z-index: 999; box-shadow: 0 10px 25px rgba(0,0,0,0.2); }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .nav-menu { display: none; }
    .mobile-toggle { display: block; color: var(--white); }
    .header.scrolled .mobile-toggle { color: var(--text-dark); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr !important; gap: 30px; }
    .section { padding: 60px 0; }
    .section-header h2 { font-size: 2rem; }
    
    .footer { text-align: left !important; }
    .footer-grid { grid-template-columns: 1fr !important; gap: 35px !important; }
    .footer-col { text-align: left !important; }
    .footer-col h4 { text-align: left !important; }
    .footer-col h4::after { left: 0 !important; transform: none !important; }
    .social-links { justify-content: flex-start !important; }
    .footer-col.brand-col { align-items: flex-start !important; display: block !important; }
    .footer .logo-text { font-size: 1.5rem !important; line-height: 1.4 !important; }
    .footer-bottom { margin-top: 40px !important; text-align: left !important; }
    
    .inner-hero { padding: 120px 0 50px; }
    .inner-hero h1 { font-size: 2.2rem; }
    
    .about-modern-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-main-heading { font-size: 2.2rem; }
    .about-main-img { height: 400px; }
    .mission-vision-grid { grid-template-columns: 1fr; }
    .about-section { padding-top: 60px; }
}

@media (max-width: 480px) {
    .footer { padding: 60px 0 40px; }
    .footer-grid { gap: 40px; }
}

/* --- Creative Contact Page Overhaul --- */
.creative-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(10, 37, 92, 0.08);
    overflow: hidden;
    margin: 40px 0;
}

.contact-info-panel {
    background: linear-gradient(135deg, var(--primary-blue), #0d327d);
    color: var(--white);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-panel h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-info-panel p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.info-list {
    margin-bottom: 50px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item .icon {
    font-size: 1.5rem;
    color: var(--secondary-red);
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-item .details h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--white);
}

.info-item .details p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-socials h4 {
    margin-bottom: 20px;
    color: var(--white);
}

.contact-socials .social-icons {
    display: flex;
    gap: 15px;
}

.contact-socials .social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.contact-socials .social-icons a:hover {
    background: var(--secondary-red);
    transform: translateY(-5px);
}

/* Right Panel Form */
.contact-form-panel {
    padding: 60px 80px;
    background: var(--white);
}

.contact-form-panel h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.creative-form .floating-group {
    position: relative;
    margin-bottom: 30px;
}

.creative-form input,
.creative-form textarea {
    width: 100%;
    padding: 15px 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    border: none;
    border-bottom: 2px solid #ddd;
    background: transparent;
    transition: var(--transition);
    outline: none;
    font-family: inherit;
}

.creative-form textarea {
    resize: vertical;
}

.creative-form label {
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 1.1rem;
    color: #888;
    transition: 0.3s ease all;
    pointer-events: none;
}

/* Floating Label Animation */
.creative-form input:focus,
.creative-form textarea:focus {
    border-bottom-color: var(--primary-blue);
}

.creative-form input:focus ~ label,
.creative-form input:not(:placeholder-shown) ~ label,
.creative-form textarea:focus ~ label,
.creative-form textarea:not(:placeholder-shown) ~ label {
    top: -15px;
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.creative-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 18px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    margin-top: 20px;
}

.creative-submit i {
    transition: transform 0.3s ease;
}

.creative-submit:hover i {
    transform: translateX(5px) translateY(-5px);
}

@media (max-width: 992px) {
    .creative-contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-form-panel {
        padding: 40px 30px;
    }
    
    .contact-info-panel {
        padding: 50px 30px;
    }
}

/* --- Blog Page Styles --- */
.blog-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); margin-bottom: 30px; transition: var(--transition); }
.blog-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.blog-img { height: 250px; background: #eee; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-content { padding: 30px; }
.blog-content h3 { margin-bottom: 15px; color: var(--primary-blue); font-size: 1.4rem; line-height: 1.3; }
.blog-content p { font-size: 1rem; opacity: 0.8; margin-bottom: 20px; line-height: 1.6; }
.read-btn { color: var(--secondary-red); font-weight: 700; display: inline-flex; align-items: center; gap: 8px; transition: var(--transition); }
.read-btn:hover { gap: 12px; }

/* =========================================
   AD LANDING PAGE (ecomwebsite.html)
   ========================================= */

.ad-landing-page {
    background-color: #f4f6f9;
}

/* Urgency Bar */
.ad-urgency-bar {
    background: var(--secondary-red);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 0.95rem;
}
.ad-urgency-bar p {
    margin: 0;
}

/* Dark Hero Section */
.ad-hero-section {
    background: linear-gradient(135deg, #051024 0%, #0a255c 100%);
    color: white;
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.ad-hero-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
}

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

.ad-badge {
    display: inline-block;
    background: rgba(230, 57, 70, 0.2);
    color: #ff6b6b;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(230, 57, 70, 0.3);
}

.ad-hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.price-highlight {
    color: #25d366; /* WhatsApp Green to associate with the action */
    text-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.ad-subheading {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.ad-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* High Contrast Buttons */
.ad-btn-primary {
    background: #ff7300;
    background: linear-gradient(90deg, #ff7300, #ff5100);
    color: white !important;
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(255, 115, 0, 0.3);
    font-weight: 700;
    border: none;
}
.ad-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 115, 0, 0.4);
}

.ad-btn-secondary {
    background: transparent;
    color: white !important;
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    font-weight: 600;
}
.ad-btn-secondary:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

.ad-btn-action {
    background: #25d366;
    color: white !important;
    padding: 18px 40px;
    font-size: 1.3rem;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    font-weight: 800;
    display: inline-block;
    margin-top: 30px;
}
.ad-btn-action:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* Floating Animation Visuals */
.floating-cards-container {
    position: relative;
    height: 500px;
}

.float-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    overflow: hidden;
    animation: floatAnimation 6s ease-in-out infinite;
    width: 260px;
}

.float-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-ui {
    padding: 15px;
    color: #333;
}
.card-ui span { display: block; font-size: 0.9rem; margin-bottom: 5px; color: #666; }
.card-ui strong { display: block; font-size: 1.2rem; margin-bottom: 15px; color: #111; }
.card-ui button { width: 100%; padding: 10px; background: #0a255c; color: white; border: none; border-radius: 8px; font-weight: 600; cursor: pointer; }

.card-1 { top: 20px; left: 0; animation-delay: 0s; z-index: 2; }
.card-2 { top: 120px; right: 0; animation-delay: -3s; z-index: 1; transform: scale(0.9); opacity: 0.9; }



@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Features Section */
.ad-features-section {
    padding: 100px 0;
    background: white;
}

.ad-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    background: var(--bg-gray);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
}
.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: rgba(230, 57, 70, 0.2);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--secondary-red);
    margin-bottom: 20px;
}

.feature-box h4 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin: 0;
}

/* Short CTA Banner */
.ad-short-cta {
    background: linear-gradient(135deg, var(--primary-blue), #081d4a);
    padding: 80px 0;
    color: white;
}

.ad-short-cta h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: white;
}

.ad-short-cta p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Ad Page Responsive */
@media (max-width: 992px) {
    .ad-hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .ad-hero-section { padding: 80px 0 40px; }
    .ad-cta-group { justify-content: center; }
    .floating-cards-container { height: 350px; margin: 0 auto; max-width: 100%; position: relative; }
    .card-1 { left: 50%; transform: translateX(-60%); z-index: 2; }
    .card-2 { right: 50%; transform: translateX(60%) scale(0.9); z-index: 1; }
    .ad-hero-content h1 { font-size: 2.8rem; }
    .ad-short-cta h2 { font-size: 2.2rem; }
}
@media (max-width: 768px) {
    .ad-features-section { padding: 60px 0; }
    .ad-features-section h2 { font-size: 2rem !important; }
    
    header .btn-whatsapp { font-size: 0.9rem; padding: 8px 12px; border-radius: 8px; white-space: nowrap; }
    header .logo-text { font-size: 1.4rem; white-space: nowrap; letter-spacing: -0.5px; }
    .hide-mobile { display: none !important; }
    .show-mobile { display: inline-block !important; }
}
@media (max-width: 480px) {
    .ad-hero-content h1 { font-size: 2.2rem; }
    .ad-subheading { font-size: 1.05rem; }
    .ad-cta-group { flex-direction: column; width: 100%; }
    .ad-btn-primary, .ad-btn-secondary { width: 100%; font-size: 1rem; padding: 14px; }
    
    .floating-cards-container { height: 300px; }
    .float-card { width: 200px; }
    .float-card img { height: 140px; }
    .card-ui { padding: 10px; }
    .card-ui strong { font-size: 1.1rem; margin-bottom: 10px; }
    .card-ui button { padding: 8px; font-size: 0.9rem; }
    
    .card-1 { left: 50%; transform: translateX(-55%); top: 10px; }
    .card-2 { right: 50%; transform: translateX(55%) scale(0.9); top: 80px; }
    
    .ad-urgency-bar p { display: flex; flex-direction: column; gap: 5px; font-size: 0.85rem; padding: 5px 0; }
    
    header .btn-whatsapp { font-size: 0.8rem; padding: 6px 10px; }
    header .logo-text { font-size: 1.1rem; }
    
    .ad-short-cta h2 { font-size: 1.8rem; }
    .ad-short-cta p { font-size: 1rem; }
    .ad-btn-action { width: 100%; font-size: 1.1rem; padding: 15px; }
}

/* --- Payment Modal --- */
.payment-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(5px);
    display: none; align-items: center; justify-content: center; z-index: 9999;
}
.payment-modal-card {
    background: #0a255c; padding: 40px; border-radius: 20px;
    width: 90%; max-width: 450px; position: relative; color: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1);
}
.payment-modal-card .close-modal {
    position: absolute; top: 15px; right: 20px;
    background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer;
}
.input-group { margin-bottom: 20px; text-align: left; }
.input-group label { display: block; margin-bottom: 8px; font-size: 0.9rem; color: #cbd5e1; }
.input-group input { 
    width: 100%; padding: 12px 15px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.2); color: white; outline: none; font-family: "Outfit", sans-serif;
}
.input-group input::placeholder { color: rgba(255,255,255,0.3); }

