/* --- Clean, Light-Themed, Red & Black Variables --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

:root {
    /* Brand Colors derived from Logo */
    --brand-red: #E60000;
    --brand-black: #000000;
    
    /* Theme Colors for Light Mode */
    --bg-main: #FFFFFF; /* Pure White Background */
    --bg-alt: #F8F9FA; /* Off-white for section contrast */
    --border-color: rgba(0, 0, 0, 0.08); /* Light subtle border */
    
    /* Text Colors */
    --text-main: #000000; /* Pure Black text */
    --text-muted: #555555; /* Dark grey for secondary text */
    
    --transition: all 0.3s ease-in-out;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 16px;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Enhancements */
h1, h2, h3, h4 {
    color: var(--brand-black);
    font-weight: 700;
    line-height: 1.2;
}

.sub-title {
    color: var(--brand-red);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2.5px;
    display: block;
    margin-bottom: 16px;
}

.highlight-text {
    color: var(--brand-red);
}

/* --- Header / Navbar --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 4%;
    z-index: 1000;
    transition: var(--transition);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    object-fit: contain;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap; 
}

.nav-link {
    color: var(--brand-black);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--brand-red);
}

/* Dropdown styling */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 280px;
    padding: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    color: var(--brand-black);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: rgba(230, 0, 0, 0.05);
    color: var(--brand-red);
}

.dropdown-menu i {
    width: 20px;
    text-align: center;
    color: var(--brand-red);
}

/* Call to Action Navbar Button */
.btn-nav {
    background: var(--brand-red);
    color: #ffffff; /* Requires white text for contrast on red */
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    border: 2px solid var(--brand-red);
}

.btn-nav:hover {
    background: transparent;
    color: var(--brand-red);
}

.menu-toggle {
    display: none;
    color: var(--brand-black);
    font-size: 24px;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 160px 0 100px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-main);
}

.hero-bg-animate {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.circle-1 {
    width: 500px; height: 500px;
    background: var(--brand-red);
    top: -10%; right: -5%;
}

.circle-2 {
    width: 400px; height: 400px;
    background: var(--brand-black);
    bottom: 10%; left: -10%;
}

.hero-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.badge {
    background: rgba(230, 0, 0, 0.08);
    color: var(--brand-red);
    border: 1px solid rgba(230, 0, 0, 0.15);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 28px;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 28px;
    letter-spacing: -1.5px;
    color: var(--brand-black);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: var(--brand-black);
    color: #ffffff; /* Must be white to read on black background */
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    border: 2px solid var(--brand-black);
}

.btn-primary:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
}

.btn-secondary {
    border: 2px solid var(--brand-black);
    color: var(--brand-black);
    background: transparent;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--brand-black);
    color: #ffffff;
}

/* 3D Visual Abstract */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sphere {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--brand-red), #990000);
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(230, 0, 0, 0.3);
    animation: pulse 4s ease-in-out infinite alternate;
}

.floating-dashboard {
    position: relative;
    width: 100%;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-black);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.floating-card i {
    color: var(--brand-red);
    font-size: 20px;
}

.c1 { top: 10%; left: 0; animation: float 5s ease-in-out infinite; }
.c2 { bottom: 20%; right: 0; animation: float 4s ease-in-out infinite 1s; }
.c3 { top: 60%; left: -10%; animation: float 6s ease-in-out infinite 0.5s; }

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.03); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* --- Sections Common Layout --- */
section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px auto;
}

.section-header h2 {
    font-size: 44px;
    color: var(--brand-black);
}

/* --- About Us --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
}

.about-img {
    border-radius: 8px;
    width: 100%;
    height: 500px;
    object-fit: cover;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.about-border-decor {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--brand-red);
    border-radius: 8px;
    top: 24px;
    left: -24px;
    z-index: 1;
}

.about-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.about-content p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 40px;
}

.about-stats {
    display: flex;
    gap: 48px;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
}

.stat-item h3 {
    font-size: 48px;
    color: var(--brand-red);
}

.stat-item p {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-black);
}

/* --- Services --- */
.services-section {
    background: var(--bg-alt);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-red);
    box-shadow: 0 15px 35px rgba(230, 0, 0, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(230, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border: 1px solid rgba(230,0,0,0.1);
    transition: var(--transition);
}

.card-icon i {
    color: var(--brand-red);
    font-size: 22px;
    transition: var(--transition);
}

.service-card:hover .card-icon {
    background: var(--brand-red);
    border-color: var(--brand-red);
}

.service-card:hover .card-icon i {
    color: #ffffff;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--brand-black);
}

.service-card p {
    color: var(--text-muted);
    font-size: 16px;
}

/* --- Why Choose Us --- */
.why-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.why-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.why-content > p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 40px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-line {
    display: flex;
    gap: 20px;
}

.feature-line i {
    color: var(--brand-red);
    font-size: 26px;
    margin-top: 4px;
}

.feature-line h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--brand-black);
}

.feature-line p {
    color: var(--text-muted);
}

.why-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-box {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    padding: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: var(--transition);
}

.feature-box.active {
    border-color: var(--brand-red);
    background: rgba(230, 0, 0, 0.03);
    box-shadow: 0 10px 20px rgba(230,0,0,0.05);
}

.feature-box i {
    font-size: 32px;
    color: var(--brand-red);
}

.feature-box h3 {
    color: var(--brand-black);
}

/* --- Testimonials --- */
.testimonials-section {
    background: var(--bg-alt);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-main);
    padding: 48px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 40px;
    height: 40px;
    background: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
}

.testimonial-card p {
    font-size: 18px;
    color: var(--brand-black);
    margin-bottom: 30px;
    font-style: italic;
    line-height: 1.8;
}

.client-info h4 {
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--brand-black);
}

.client-info span {
    font-size: 14px;
    color: var(--brand-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

/* --- Footer --- */
.footer {
    padding: 100px 0 0 0;
    border-top: 1px solid var(--border-color);
    background: var(--bg-main);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 80px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 24px;
}

.branding p {
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 320px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-black);
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #ffffff;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--brand-black);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 16px;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--brand-red);
}

.contact-info {
    color: var(--brand-black);
    font-weight: 500;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info i {
    color: var(--brand-red);
}

.credit {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    text-align: center;
    background: var(--bg-alt);
}

.credit p {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .header { padding: 16px 4%; }
    .hero-content h1 { font-size: 52px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    
    .navbar {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: var(--bg-main);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        gap: 20px;
        transition: 0.4s ease-in-out;
        overflow-y: auto;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    .navbar.active { left: 0; }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 0 16px;
        display: none;
        width: 100%;
    }

    .dropdown.open .dropdown-menu {
        display: block;
        margin-top: 10px;
    }

    .hero-container { grid-template-columns: 1fr; text-align: center; padding-top: 60px; }
    .hero-content p { margin: 0 auto 40px auto; }
    .hero-btns { justify-content: center; }
    .hero-visual { display: none; }
    
    .about-grid, .why-grid, .testimonials-slider { grid-template-columns: 1fr; gap: 50px;}
    .about-img-wrapper { order: 2; }
    .about-content { order: 1; }
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
    position: fixed;
    width: 80px;
    height: 80px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366; /* Official WhatsApp Green */
    color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}

/* Subtle Pulse Animation */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 70px;
        height: 70px;
        bottom: 25px;
        right: 25px;
        font-size: 28px;
    }
}

/* =========================================
   ABOUT US PAGE SPECIFIC STYLES
   ========================================= */

/* Inner Page Hero */
.inner-hero {
    padding: 180px 0 100px 0;
    background: var(--bg-alt);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.inner-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: var(--brand-black);
}

.inner-hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Our Story Section */
.our-story {
    background: var(--bg-main);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.story-content p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image {
    position: relative;
}

.story-image img {
    border-radius: 8px;
    width: 100%;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.image-decor {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--brand-black);
    border-radius: 8px;
    top: -20px;
    right: -20px;
    z-index: 1;
}

/* Mission & Vision */
.mission-vision {
    background: var(--bg-main);
    padding-top: 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mv-card {
    background: var(--bg-alt);
    padding: 50px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.mv-card.alt-bg {
    background: var(--brand-black);
    color: #ffffff;
}

.mv-card.alt-bg h3 {
    color: #ffffff;
}

.mv-card.alt-bg p {
    color: rgba(255, 255, 255, 0.8);
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: rgba(230, 0, 0, 0.1);
    color: var(--brand-red);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 24px;
}

.mv-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

/* Extended Why Choose Us Section */
.why-us-extended {
    background: var(--bg-alt);
    border-top: 1px solid var(--border-color);
}

.header-desc {
    color: var(--text-muted);
    font-size: 18px;
    margin-top: 16px;
}

.why-extended-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.why-item {
    background: var(--bg-main);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    transition: var(--transition);
}

.why-item:hover {
    transform: translateY(-5px);
    border-color: var(--brand-red);
    box-shadow: 0 15px 30px rgba(230,0,0,0.08);
}

.why-item-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.why-item-header i {
    font-size: 28px;
    color: var(--brand-red);
}

.why-item-header h4 {
    font-size: 20px;
    color: var(--brand-black);
    margin: 0;
}

.why-item p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* Mobile Adjustments for About Page */
@media (max-width: 768px) {
    .inner-hero {
        padding: 140px 24px 80px 24px;
    }
    .inner-hero h1 {
        font-size: 40px;
    }
    .story-grid, .mv-grid, .why-extended-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .story-image {
        order: -1; /* Puts image above text on mobile */
        margin-bottom: 20px;
    }
    .image-decor {
        display: none; /* Removes offset border on mobile to prevent overflow */
    }
}

/* =========================================
   DIGITAL MARKETING PAGE STYLES
   ========================================= */

/* Hero Section */
.dm-hero {
    padding: 180px 0 80px 0;
    background: var(--bg-main);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dm-hero::before {
    content: '';
    position: absolute;
    top: -50%; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(230,0,0,0.05) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

.dm-hero .container {
    position: relative;
    z-index: 2;
}

.dm-hero h1 {
    font-size: 52px;
    margin-bottom: 24px;
    color: var(--brand-black);
}

.dm-hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Filters (Optional UI enhancement) */
.dm-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.dm-filter-btn {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.dm-filter-btn:hover, .dm-filter-btn.active {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(230,0,0,0.2);
}

/* Services Grid Layout */
.dm-services-section {
    background: var(--bg-alt);
    padding: 80px 0 120px 0;
    border-top: 1px solid var(--border-color);
}

.dm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

/* Innovative Interactive Card Styling */
.dm-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    overflow: hidden;
}

/* Red top-border loading effect on hover */
.dm-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0%;
    height: 4px;
    background: var(--brand-red);
    transition: all 0.4s ease;
}

.dm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(230,0,0,0.2);
}

.dm-card:hover::before {
    width: 100%;
}

.dm-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(230,0,0,0.05);
    border: 1px solid rgba(230,0,0,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.dm-icon-box i {
    font-size: 28px;
    color: var(--brand-red);
    transition: var(--transition);
}

.dm-card:hover .dm-icon-box {
    background: var(--brand-red);
    transform: scale(1.05);
}

.dm-card:hover .dm-icon-box i {
    color: #ffffff;
}

.dm-card h3 {
    font-size: 24px;
    color: var(--brand-black);
    margin-bottom: 16px;
}

.dm-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.dm-features {
    list-style: none;
    margin-bottom: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.dm-features li {
    font-size: 14px;
    color: var(--brand-black);
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dm-features li i {
    color: #25d366; /* Green checkmark for positive psychology */
    font-size: 12px;
    background: rgba(37, 211, 102, 0.1);
    padding: 4px;
    border-radius: 50%;
}

.dm-action-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-red);
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.dm-action-link i {
    transition: transform 0.3s ease;
}

.dm-action-link:hover i {
    transform: translateX(6px);
}

/* Initial state for scroll animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .dm-hero h1 { font-size: 40px; }
    .dm-hero { padding: 140px 24px 60px 24px; }
    .dm-grid { grid-template-columns: 1fr; }
}

/* =========================================
   WEB DESIGNING PAGE STYLES (INNOVATIVE BENTO UI)
   ========================================= */

/* Hero Section */
.wd-hero {
    padding: 160px 0 80px 0;
    background: var(--bg-main);
    overflow: hidden;
}

.wd-hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.wd-hero-content h1 {
    font-size: 56px;
    margin-bottom: 24px;
    line-height: 1.1;
}

.wd-hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Animated Wireframe Graphic */
.wd-hero-visual {
    position: relative;
    perspective: 1000px;
}

.wireframe-box {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    transform: rotateY(-15deg) rotateX(10deg);
    transition: transform 0.5s ease;
    animation: float-wireframe 6s ease-in-out infinite alternate;
}

.wireframe-box:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.wireframe-header {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.skeleton-title {
    width: 60%; height: 24px; background: rgba(0,0,0,0.1); border-radius: 4px; margin-bottom: 16px;
}
.skeleton-text {
    width: 100%; height: 12px; background: rgba(0,0,0,0.05); border-radius: 4px; margin-bottom: 12px;
}
.skeleton-text.short { width: 80%; margin-bottom: 30px; }
.skeleton-btn {
    width: 120px; height: 40px; background: var(--brand-red); border-radius: 4px; opacity: 0.8;
}

@keyframes float-wireframe {
    0% { transform: translateY(0) rotateY(-15deg) rotateX(10deg); }
    100% { transform: translateY(-20px) rotateY(-10deg) rotateX(15deg); }
}

/* Infinite Tech Marquee */
.tech-marquee-wrapper {
    background: var(--brand-black);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(230,0,0,0.3);
    border-bottom: 1px solid rgba(230,0,0,0.3);
}

.tech-marquee {
    display: flex;
    white-space: nowrap;
    animation: scroll-marquee 20s linear infinite;
    align-items: center;
}

.tech-marquee span {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 30px;
    letter-spacing: 1px;
}

.tech-marquee .dot-separator {
    color: var(--brand-red);
    font-size: 24px;
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Scrolls exactly half the duplicated content */
}

/* Bento Box Grid System */
.wd-features {
    background: var(--bg-alt);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 24px;
}

/* Base Card Styling */
.wd-bento-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transform-style: preserve-3d;
}

.card-inner {
    transform: translateZ(30px); /* Pushes content forward for 3D effect */
    height: 100%;
}

.bento-icon {
    font-size: 32px;
    color: var(--brand-red);
    margin-bottom: 24px;
    display: block;
}

.wd-bento-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.wd-bento-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Grid Spanning */
.wd-bento-card.large {
    grid-column: span 1;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.wd-bento-card.wide {
    grid-column: span 2;
}

.card-inner.flex-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.wide-content { flex: 1; }
.wide-visual {
    flex: 0.8;
    background: rgba(0,0,0,0.03);
    padding: 20px;
    border-radius: 12px;
}

.ui-element {
    height: 12px; background: rgba(0,0,0,0.1); border-radius: 6px; margin-bottom: 12px; width: 100%;
}
.ui-element.highlight { background: var(--brand-red); width: 70%; }

/* Process Section */
.wd-process {
    background: var(--bg-main);
    border-top: 1px solid var(--border-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    padding: 30px;
    background: var(--bg-alt);
    border-radius: 12px;
    border-top: 4px solid var(--brand-black);
    transition: var(--transition);
}

.step-card:hover {
    border-top-color: var(--brand-red);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(230,0,0,0.1);
    margin-bottom: 16px;
    line-height: 1;
}

.step-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Mobile Responsiveness for Web Design Page */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .wd-bento-card.large { grid-column: span 2; grid-row: span 1; }
    .wd-bento-card.wide { grid-column: span 2; }
}

@media (max-width: 768px) {
    .wd-hero-container { grid-template-columns: 1fr; text-align: center; }
    .wd-hero h1 { font-size: 42px; }
    .bento-grid { grid-template-columns: 1fr; }
    .wd-bento-card.large, .wd-bento-card.wide { grid-column: span 1; }
    .card-inner.flex-row { flex-direction: column; }
    .wide-visual { width: 100%; }
}

/* =========================================
   GRAPHIC DESIGN PAGE (INNOVATIVE & ANIMATED)
   ========================================= */

/* Parallax Hero Section */
.gd-hero {
    position: relative;
    padding: 220px 0 140px 0;
    background: var(--bg-main);
    overflow: hidden;
    text-align: center;
}

.gd-hero-content {
    position: relative;
    z-index: 10;
}

.gd-hero h1 {
    font-size: 64px;
    margin-bottom: 24px;
    color: var(--brand-black);
    line-height: 1.1;
}

.gd-hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 40px auto;
}

/* Floating Abstract Geometric Shapes */
.gd-shape {
    position: absolute;
    z-index: 1;
    opacity: 0.15;
    transition: transform 0.1s ease-out; /* Smooth follow delay */
}

.shape-circle {
    width: 200px; height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-red), transparent);
    top: 20%; left: 10%;
}

.shape-square {
    width: 150px; height: 150px;
    background: var(--brand-black);
    transform: rotate(45deg);
    bottom: 10%; right: 15%;
}

.shape-triangle {
    width: 0; height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid var(--brand-red);
    top: 25%; right: 20%;
    opacity: 0.1;
}

.shape-dots {
    width: 200px; height: 200px;
    background-image: radial-gradient(var(--brand-black) 20%, transparent 20%);
    background-size: 20px 20px;
    bottom: 20%; left: 5%;
}

/* Interactive Before & After Slider */
.gd-transformation {
    background: var(--bg-alt);
    border-top: 1px solid var(--border-color);
}

.gd-compare-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 500px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    background: var(--brand-black); /* Fallback */
}

.gd-compare-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
}

.gd-compare-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Before image sits on top and its width changes */
.before-img {
    width: 50%; /* Initial state */
    border-right: 2px solid var(--brand-red);
    z-index: 2;
}

.compare-label {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    background: rgba(0,0,0,0.7);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
}

.after-label { right: 20px; }
.before-label { left: 20px; }

/* The invisible input range slider */
.gd-compare-slider {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 5;
}

/* Custom visual slider line and arrows */
.gd-compare-line {
    position: absolute;
    top: 0; left: 50%;
    width: 4px; height: 100%;
    background: var(--brand-red);
    transform: translateX(-50%);
    pointer-events: none; /* Let clicks pass through to input */
    z-index: 4;
}

.gd-compare-arrows {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 48px; height: 48px;
    background: var(--brand-red);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(230,0,0,0.3);
}

/* Asymmetrical Creative Grid */
.gd-portfolio-section {
    background: var(--bg-main);
}

.gd-art-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 24px;
}

.gd-art-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.gd-art-box img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gd-art-box.tall { grid-row: span 2; }
.gd-art-box.wide { grid-column: span 2; }

/* Animated Hover Overlay */
.gd-art-overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 40px 30px 30px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
    color: #ffffff;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.gd-art-box:hover img {
    transform: scale(1.08);
}

.gd-art-box:hover .gd-art-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gd-art-overlay h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 8px;
}

.gd-art-overlay p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}

.gd-link {
    width: 40px; height: 40px;
    background: var(--brand-red);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    align-self: flex-start;
    transition: var(--transition);
}

.gd-link:hover {
    background: #ffffff;
    color: var(--brand-red);
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .gd-art-grid { grid-template-columns: repeat(2, 1fr); }
    .gd-art-box.tall { grid-row: span 1; }
    .gd-art-box.wide { grid-column: span 2; }
}

@media (max-width: 768px) {
    .gd-hero h1 { font-size: 42px; }
    .gd-compare-container { height: 350px; }
    .gd-art-grid { grid-template-columns: 1fr; }
    .gd-art-box.tall, .gd-art-box.wide { grid-column: span 1; }
    .gd-shape { display: none; } /* Hide complex shapes on mobile to save performance */
}

/* =========================================
   VIDEO EDITING PAGE (CINEMATIC DESIGN)
   ========================================= */

/* Top Render Progress Bar */
.render-progress-bar {
    position: fixed;
    top: 0; left: 0;
    width: 0%; height: 4px;
    background: var(--brand-red);
    z-index: 9999;
    box-shadow: 0 0 10px rgba(230,0,0,0.5);
    transition: width 0.1s ease;
}

/* Video Hero Section */
.ve-hero {
    position: relative;
    padding: 200px 0 120px 0;
    background: var(--bg-main);
    text-align: center;
    overflow: hidden;
}

/* Software Grid Background */
.editing-grid-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

.ve-hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.play-pulse-wrapper {
    margin-bottom: 30px;
}

.play-btn-circle {
    width: 80px; height: 80px;
    background: var(--brand-red);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 24px;
    padding-left: 6px; /* visually center play icon */
    box-shadow: 0 0 0 0 rgba(230,0,0,0.4);
    animation: pulse-play 2s infinite;
    cursor: pointer;
}

@keyframes pulse-play {
    0% { box-shadow: 0 0 0 0 rgba(230,0,0,0.4); }
    70% { box-shadow: 0 0 0 20px rgba(230,0,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(230,0,0,0); }
}

.ve-hero h1 {
    font-size: 64px;
    color: var(--brand-black);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.ve-hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
}

/* CSS Glitch Text Effect */
.glitch-text {
    position: relative;
    display: inline-block;
    color: var(--brand-red);
}

.glitch-text::before, .glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--bg-main);
    opacity: 0;
}

.ve-hero:hover .glitch-text::before {
    left: 2px;
    text-shadow: -2px 0 #00ffff;
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 2s infinite linear alternate-reverse;
    opacity: 1;
}

.ve-hero:hover .glitch-text::after {
    left: -2px;
    text-shadow: -2px 0 #ff00ff;
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
    opacity: 1;
}

@keyframes glitch-anim {
    0% { clip: rect(10px, 9999px, 44px, 0); }
    20% { clip: rect(80px, 9999px, 12px, 0); }
    40% { clip: rect(14px, 9999px, 89px, 0); }
    60% { clip: rect(66px, 9999px, 23px, 0); }
    80% { clip: rect(9px, 9999px, 78px, 0); }
    100% { clip: rect(54px, 9999px, 34px, 0); }
}

/* Filmstrip Services Section */
.ve-filmstrip-section {
    background: var(--brand-black);
    color: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

.ve-filmstrip-section h2, 
.ve-filmstrip-section .sub-title, 
.ve-filmstrip-section p {
    color: #ffffff;
}

.ve-filmstrip-section .sub-title { color: var(--brand-red); }

/* Horizontal Scroll Container */
.filmstrip-track {
    display: flex;
    gap: 30px;
    padding: 40px 5%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    /* Hide scrollbar for clean look */
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}

.filmstrip-track::-webkit-scrollbar {
    display: none;
}

.filmstrip-clip {
    flex: 0 0 350px;
    scroll-snap-align: center;
    background: #111111;
    border: 2px solid #333333;
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
}

.filmstrip-clip:hover {
    transform: scale(1.02);
    border-color: var(--brand-red);
    box-shadow: 0 15px 30px rgba(230,0,0,0.15);
}

/* Film Edge Holes */
.clip-holes {
    height: 20px;
    background-image: radial-gradient(circle, #000 4px, transparent 5px);
    background-size: 20px 20px;
    background-position: center;
    opacity: 0.5;
}
.clip-holes.top { border-bottom: 2px solid #333; }
.clip-holes.bottom { border-top: 2px solid #333; }

.clip-content {
    padding: 24px;
}

.clip-visual {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
    height: 180px;
}

.clip-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(40%);
    transition: var(--transition);
}

.filmstrip-clip:hover .clip-visual img {
    filter: grayscale(0%);
}

.rec-indicator {
    position: absolute;
    top: 12px; right: 12px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 1px;
}

.rec-indicator span {
    width: 8px; height: 8px;
    background: var(--brand-red);
    border-radius: 50%;
    animation: blink-rec 1s infinite;
}

@keyframes blink-rec {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.clip-content h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 12px;
}
.clip-content p {
    font-size: 14px;
    color: #aaaaaa;
}

/* Timeline Process Section */
.ve-process-section {
    background: var(--bg-main);
    padding: 120px 0;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Center Line */
.timeline-line {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 100%;
    background: var(--border-color);
    border-radius: 2px;
}

/* Red Progress Fill */
.timeline-progress {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 0%; /* Filled via JS */
    background: var(--brand-red);
    border-radius: 2px;
    transition: height 0.2s ease-out;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 50px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.active {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item.left { left: 0; text-align: right; }
.timeline-item.right { left: 50%; }

.timeline-dot {
    position: absolute;
    top: 0;
    width: 20px; height: 20px;
    background: var(--bg-main);
    border: 4px solid var(--border-color);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.4s ease;
}

.timeline-item.left .timeline-dot { right: -10px; }
.timeline-item.right .timeline-dot { left: -10px; }

/* Dot lights up when active */
.timeline-item.active .timeline-dot {
    border-color: var(--brand-red);
    background: var(--brand-red);
    box-shadow: 0 0 15px rgba(230,0,0,0.5);
}

.timeline-content {
    background: var(--bg-alt);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.timecode {
    display: inline-block;
    background: var(--brand-black);
    color: var(--brand-red);
    font-family: monospace;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

/* Mobile Responsive Video Page */
@media (max-width: 768px) {
    .ve-hero h1 { font-size: 42px; }
    
    .timeline-line { left: 20px; }
    .timeline-item { width: 100%; padding: 0 0 0 50px; text-align: left; left: 0; }
    .timeline-item.right { left: 0; }
    
    .timeline-item.left .timeline-dot, 
    .timeline-item.right .timeline-dot {
        left: 10px; right: auto;
    }
}

/* =========================================
   ADS MANAGEMENT PAGE (DYNAMIC & ANIMATED)
   ========================================= */

/* Hero Section */
.ads-hero {
    padding: 160px 0 100px 0;
    background: var(--bg-main);
    overflow: hidden;
}

.ads-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ads-hero-content h1 {
    font-size: 58px;
    margin-bottom: 24px;
    line-height: 1.15;
    color: var(--brand-black);
}

.ads-hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

/* Floating Social Nodes Animation */
.ads-hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.target-pulse {
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    border: 1px dashed rgba(230,0,0,0.3);
    animation: rotate-pulse 15s linear infinite;
}

.target-pulse::before {
    content: '';
    position: absolute;
    top: 50px; left: 50px; right: 50px; bottom: 50px;
    border-radius: 50%;
    border: 1px dashed rgba(0,0,0,0.1);
}

@keyframes rotate-pulse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.social-node {
    position: absolute;
    width: 70px; height: 70px;
    background: var(--bg-main);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

/* Platform Specific Node Colors on Hover */
.social-node:hover {
    transform: scale(1.15) !important; /* Overrides animation momentarily */
    border-color: var(--brand-red);
}
.node-meta:hover { color: #0668E1; box-shadow: 0 10px 30px rgba(6,104,225,0.2); }
.node-google:hover { color: #EA4335; box-shadow: 0 10px 30px rgba(234,67,53,0.2); }
.node-tiktok:hover { color: #000000; box-shadow: 0 10px 30px rgba(0,0,0,0.2); text-shadow: 2px 2px 0 #ff0050, -2px -2px 0 #00f2fe; }
.node-linkedin:hover { color: #0A66C2; box-shadow: 0 10px 30px rgba(10,102,194,0.2); }
.node-youtube:hover { color: #FF0000; box-shadow: 0 10px 30px rgba(255,0,0,0.2); }

/* Node Positioning and Float Animations */
.node-meta { top: 10%; left: 20%; animation: float-node 4s ease-in-out infinite; color: var(--brand-black); }
.node-google { top: 25%; right: 10%; animation: float-node 5s ease-in-out infinite 1s; color: var(--brand-black); }
.node-tiktok { bottom: 15%; left: 10%; animation: float-node 4.5s ease-in-out infinite 0.5s; color: var(--brand-black); }
.node-linkedin { bottom: 25%; right: 20%; animation: float-node 6s ease-in-out infinite 1.5s; color: var(--brand-black); }
.node-youtube { top: -5%; right: 40%; animation: float-node 5.5s ease-in-out infinite 2s; color: var(--brand-black); }

@keyframes float-node {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating-roi {
    position: absolute;
    background: var(--brand-red);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(230,0,0,0.3);
    bottom: 0; right: 5%;
    z-index: 5;
    animation: float-node 5s ease-in-out infinite 1s;
}

.roi-icon { font-size: 28px; }
.floating-roi h4 { font-size: 14px; margin: 0; color: rgba(255,255,255,0.9); font-weight: 500;}
.roi-number { font-size: 24px; font-weight: 800; line-height: 1; }

/* Stats Counter Section */
.ads-stats-section {
    background: var(--brand-black);
    padding: 60px 0;
    color: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-box {
    padding: 20px;
}

.stat-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--brand-red);
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-box p {
    font-size: 16px;
    font-weight: 500;
    color: #cccccc;
}

/* Ad Platforms Grid */
.ads-platforms {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border-color);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.platform-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.platform-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-red);
    box-shadow: 0 15px 40px rgba(230,0,0,0.08);
}

/* Red Accent Line on Hover */
.platform-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0%; height: 4px;
    background: var(--brand-red);
    transition: width 0.4s ease;
}
.platform-card:hover::after { width: 100%; }

.platform-icon {
    width: 60px; height: 60px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    margin-bottom: 24px;
    background: rgba(0,0,0,0.04);
    color: var(--brand-black);
    transition: var(--transition);
}

/* Original Brand colors on hover */
.platform-card:hover .meta-color { background: #0668E1; color: #ffffff; box-shadow: 0 10px 20px rgba(6,104,225,0.3);}
.platform-card:hover .google-color { background: #EA4335; color: #ffffff; box-shadow: 0 10px 20px rgba(234,67,53,0.3);}
.platform-card:hover .tiktok-color { background: #000000; color: #ffffff; box-shadow: 0 10px 20px rgba(0,0,0,0.3);}
.platform-card:hover .linkedin-color { background: #0A66C2; color: #ffffff; box-shadow: 0 10px 20px rgba(10,102,194,0.3);}

.platform-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--brand-black);
}

.platform-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.platform-features {
    list-style: none;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.platform-features li {
    font-size: 14px;
    color: var(--brand-black);
    margin-bottom: 12px;
    font-weight: 500;
}

.platform-features li i {
    color: var(--brand-red);
    margin-right: 8px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 992px) {
    .ads-hero-container { grid-template-columns: 1fr; text-align: center; }
    .ads-hero-content p { margin: 0 auto 40px auto; }
    .hero-btns { justify-content: center; }
    .ads-hero-visual { height: 400px; margin-top: 40px; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
}

@media (max-width: 768px) {
    .ads-hero h1 { font-size: 44px; }
    .social-node { width: 50px; height: 50px; font-size: 24px; }
    .floating-roi { right: 0; bottom: -20px; padding: 12px 16px; }
    .stats-grid { grid-template-columns: 1fr; }
}

/* =========================================
   INFLUENCER MARKETING PAGE STYLES
   ========================================= */

/* Hero Section */
.im-hero {
    padding: 160px 0 100px 0;
    background: var(--bg-main);
    overflow: hidden;
}

.im-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.im-hero-content h1 {
    font-size: 56px;
    margin-bottom: 24px;
    line-height: 1.15;
    color: var(--brand-black);
}

.im-hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

/* Animated Creator Network Visual */
.im-hero-visual {
    position: relative;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.network-center {
    position: absolute;
    width: 80px; height: 80px;
    background: var(--brand-black);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.center-pulse {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 2px solid var(--brand-red);
    animation: network-pulse 3s infinite;
    z-index: -1;
}

@keyframes network-pulse {
    0% { width: 100%; height: 100%; opacity: 1; }
    100% { width: 350%; height: 350%; opacity: 0; }
}

.avatar-node {
    position: absolute;
    width: 60px; height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--bg-main);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 5;
    animation: float-avatar 6s ease-in-out infinite;
    transition: var(--transition);
}

.avatar-node img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.avatar-node:hover {
    transform: scale(1.2) !important;
    border-color: var(--brand-red);
    z-index: 20;
}

/* Positioning the avatars around the center */
.a1 { top: 10%; left: 20%; animation-delay: 0s; width: 80px; height: 80px; }
.a2 { top: 25%; right: 15%; animation-delay: 1s; width: 70px; height: 70px; }
.a3 { bottom: 15%; left: 15%; animation-delay: 2s; width: 65px; height: 65px; }
.a4 { bottom: 25%; right: 20%; animation-delay: 1.5s; width: 90px; height: 90px; }
.a5 { top: -5%; right: 45%; animation-delay: 0.5s; width: 55px; height: 55px; }

@keyframes float-avatar {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* Influencer Tiers Section */
.im-tiers-section {
    background: var(--bg-alt);
    border-top: 1px solid var(--border-color);
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tier-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.tier-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-red);
    box-shadow: 0 15px 40px rgba(230,0,0,0.08);
}

.tier-icon {
    width: 70px; height: 70px;
    background: rgba(230,0,0,0.05);
    color: var(--brand-red);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin: 0 auto 20px auto;
    transition: var(--transition);
}

.tier-card:hover .tier-icon {
    background: var(--brand-red);
    color: #ffffff;
}

.tier-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--brand-black);
}

.tier-range {
    display: inline-block;
    background: var(--brand-black);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
}

.tier-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Interactive Calculator Section */
.im-calculator-section {
    background: var(--bg-main);
}

.calculator-wrapper {
    background: var(--brand-black);
    border-radius: 20px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.calc-content .sub-title { color: var(--brand-red); }
.calc-content h2 { color: #ffffff; margin-bottom: 20px; font-size: 38px; }
.calc-content p { color: #cccccc; margin-bottom: 40px; font-size: 16px; }

.slider-container label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    color: #aaaaaa;
}

.slider-value {
    font-size: 42px;
    font-weight: 800;
    color: var(--brand-red);
    margin-bottom: 20px;
    line-height: 1;
}

/* Custom Range Slider */
.budget-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: #333333;
    border-radius: 4px;
    outline: none;
    transition: var(--transition);
}

.budget-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--brand-red);
    cursor: pointer;
    border: 4px solid #ffffff;
    box-shadow: 0 0 10px rgba(230,0,0,0.5);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: #888888;
    font-size: 14px;
    font-weight: 600;
}

.calc-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.result-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.result-box:hover {
    background: rgba(255,255,255,0.08);
}

.result-box.highlight-box {
    background: rgba(230,0,0,0.1);
    border-color: rgba(230,0,0,0.3);
}

.result-box i {
    font-size: 28px;
    color: var(--brand-red);
    width: 40px;
    text-align: center;
}

.result-data h4 {
    font-size: 14px;
    color: #aaaaaa;
    margin-bottom: 4px;
    font-weight: 500;
}

.result-number {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.highlight-box .result-number {
    color: var(--brand-red);
}

/* Strategies Grid */
.im-strategies {
    background: var(--bg-alt);
    border-top: 1px solid var(--border-color);
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.strategy-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.strategy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-color: var(--brand-red);
}

.strat-img {
    height: 200px;
    overflow: hidden;
}

.strat-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.strategy-card:hover .strat-img img {
    transform: scale(1.05);
}

.strat-content {
    padding: 30px;
}

.strat-content h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--brand-black);
}

.strat-content p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .im-hero-container { grid-template-columns: 1fr; text-align: center; }
    .im-hero-content p { margin: 0 auto 40px auto; }
    .hero-btns { justify-content: center; }
    .im-hero-visual { height: 400px; margin-top: 40px; }
    
    .tier-grid, .strategy-grid { grid-template-columns: repeat(2, 1fr); }
    .calculator-wrapper { grid-template-columns: 1fr; gap: 40px; padding: 40px; text-align: center; }
    .result-box { justify-content: center; text-align: left; }
}

@media (max-width: 768px) {
    .im-hero h1 { font-size: 42px; }
    .tier-grid, .strategy-grid { grid-template-columns: 1fr; }
    .calculator-wrapper { padding: 30px 20px; }
    .slider-value { font-size: 36px; }
}

/* =========================================
   GOOGLE BUSINESS PROFILE PAGE STYLES
   ========================================= */

/* Hero Section */
.gbp-hero {
    position: relative;
    padding: 180px 0 100px 0;
    background: var(--bg-main);
    overflow: hidden;
}

/* Subtle Map Background */
.gbp-map-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(var(--border-color) 2px, transparent 2px);
    background-size: 40px 40px;
    opacity: 0.6;
    z-index: 1;
}

.gbp-hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.gbp-hero-content h1 {
    font-size: 56px;
    margin-bottom: 24px;
    line-height: 1.15;
    color: var(--brand-black);
}

.gbp-hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Interactive Search Mockup */
.gbp-hero-visual {
    position: relative;
    perspective: 1000px;
}

.search-mockup {
    background: transparent;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.search-bar {
    background: #ffffff;
    border: 1px solid #dfe1e5;
    border-radius: 30px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    font-size: 16px;
    color: var(--brand-black);
    margin-bottom: 30px;
    position: relative;
    z-index: 5;
}

.g-logo {
    height: 24px;
    margin-right: 16px;
}

.search-icons {
    margin-left: auto;
    display: flex;
    gap: 16px;
    color: #5f6368;
    font-size: 18px;
}

/* Typewriter Cursor */
.cursor {
    display: inline-block;
    width: 2px;
    height: 20px;
    background: var(--brand-black);
    margin-left: 2px;
    animation: blink-cursor 0.8s infinite;
}

@keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Map Result Pin Reveal */
.map-result-container {
    position: relative;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 40px 20px 20px 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
    opacity: 0; /* Hidden initially, revealed by JS */
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.map-result-container.show {
    opacity: 1;
    transform: translateY(0);
}

.map-pin {
    position: absolute;
    top: -30px; left: 50%;
    transform: translateX(-50%);
    color: #EA4335; /* Google Red */
    font-size: 60px;
    text-shadow: 0 10px 10px rgba(234,67,53,0.3);
}

.floating-pin {
    animation: bounce-pin 2s ease-in-out infinite;
}

@keyframes bounce-pin {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -10px); }
}

.pin-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pin-card .brand-name {
    font-size: 22px;
    color: var(--brand-black);
    margin-bottom: 8px;
}

.pin-card .stars {
    color: #5f6368;
    font-size: 14px;
    margin-bottom: 8px;
}

.pin-card .stars i {
    color: #fbbc04; /* Google Yellow */
}

.pin-card .status {
    font-size: 14px;
    color: #5f6368;
    margin-bottom: 20px;
}

.pin-card .open {
    color: #188038; /* Google Green */
    font-weight: 600;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.action-buttons button {
    flex: 1;
    padding: 10px;
    border: 1px solid #dadce0;
    background: #ffffff;
    border-radius: 20px;
    color: #1a73e8; /* Google Blue */
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.action-buttons button:hover {
    background: #f1f3f4;
}

/* GBP Services Grid */
.gbp-services {
    background: var(--bg-alt);
    border-top: 1px solid var(--border-color);
}

.gbp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gbp-card {
    background: var(--bg-main);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.gbp-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-red);
    box-shadow: 0 15px 35px rgba(230,0,0,0.08);
}

.gbp-icon {
    width: 60px; height: 60px;
    background: rgba(230,0,0,0.05);
    color: var(--brand-red);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.gbp-card:hover .gbp-icon {
    background: var(--brand-red);
    color: #ffffff;
}

.gbp-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.gbp-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Review Reputation Section */
.gbp-reputation {
    background: var(--brand-black);
    padding: 100px 0;
    overflow: hidden;
}

.reputation-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.reputation-content .sub-title { color: var(--brand-red); }
.reputation-content h2 { color: #ffffff; font-size: 40px; margin-bottom: 20px; }
.reputation-content p { color: #cccccc; font-size: 16px; }

/* Infinite Scroll Marquee */
.review-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

/* Gradient masks for smooth fade out on edges */
.review-marquee-wrapper::before,
.review-marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 2;
}

.review-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--brand-black), transparent);
}

.review-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--brand-black), transparent);
}

.review-marquee {
    display: flex;
    width: max-content;
    animation: scroll-reviews 25s linear infinite;
    gap: 30px;
    padding-left: 30px; /* Gap correction */
}

/* Pause animation on hover */
.review-marquee:hover {
    animation-play-state: paused;
}

.review-tag {
    background: var(--bg-main);
    width: 350px;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.tag-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    position: relative;
}

.tag-header img {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.initial-avatar {
    width: 48px; height: 48px;
    background: #9c27b0;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
}

.tag-header h5 {
    color: var(--brand-black);
    font-size: 16px;
    margin-bottom: 4px;
}

.tag-header span i {
    color: #fbbc04;
    font-size: 12px;
}

.google-g {
    position: absolute;
    right: 0; top: 0;
    color: #4285F4;
    font-size: 20px;
}

.review-tag p {
    color: var(--text-muted);
    font-size: 15px;
    font-style: italic;
}

@keyframes scroll-reviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Scrolls exactly half the width */
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .gbp-hero-container { grid-template-columns: 1fr; text-align: center; }
    .gbp-hero-content p { margin: 0 auto 40px auto; }
    .hero-btns { justify-content: center; }
    .gbp-hero-visual { margin-top: 40px; }
    
    .gbp-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .gbp-hero h1 { font-size: 42px; }
    .search-mockup { width: 90%; }
}

/* =========================================
   THEATER ADS PAGE (CINEMATIC DESIGN)
   ========================================= */

/* Hero Section */
.theater-hero {
    position: relative;
    padding: 220px 0 140px 0;
    background: #000000; /* Deep black for cinema feel */
    overflow: hidden;
    color: #ffffff;
}

/* Opening Curtains Effect */
.curtain-left, .curtain-right {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: var(--brand-red);
    z-index: 5;
    transition: transform 2.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: 0 0 50px rgba(0,0,0,0.8) inset;
}

.curtain-left { left: 0; transform-origin: left; }
.curtain-right { right: 0; transform-origin: right; }

/* The class added via JS to open the curtains */
.theater-hero.curtains-open .curtain-left { transform: scaleX(0); }
.theater-hero.curtains-open .curtain-right { transform: scaleX(0); }

/* Cinematic Spotlights */
.spotlight {
    position: absolute;
    top: -100px;
    width: 200px;
    height: 800px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.1) 0%, transparent 100%);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    z-index: 1;
    pointer-events: none;
}

.spotlight-left {
    left: -50px;
    transform: rotate(-25deg);
    animation: sweep-left 8s ease-in-out infinite alternate;
}

.spotlight-right {
    right: -50px;
    transform: rotate(25deg);
    animation: sweep-right 10s ease-in-out infinite alternate;
}

@keyframes sweep-left { 0% { transform: rotate(-25deg); } 100% { transform: rotate(-10deg); } }
@keyframes sweep-right { 0% { transform: rotate(25deg); } 100% { transform: rotate(10deg); } }

/* Hero Content */
.theater-hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.glowing-badge {
    background: transparent;
    border-color: rgba(255,255,255,0.3);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255,255,255,0.2);
}

.cinematic-text {
    background: linear-gradient(to right, #ffffff, #aaaaaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255,255,255,0.1);
    color: unset; /* override default brand red highlight */
}

.theater-hero h1 {
    font-size: 64px;
    margin-bottom: 24px;
    color: #ffffff;
}

.theater-hero p {
    color: #cccccc;
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 500px;
}

.glow-btn {
    background: var(--brand-red);
    border-color: var(--brand-red);
    box-shadow: 0 0 30px rgba(230,0,0,0.5);
}

.glow-btn:hover {
    box-shadow: 0 0 50px rgba(230,0,0,0.8);
    background: transparent;
    color: var(--brand-red);
}

/* Floating Film Reel Visual */
.theater-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.film-reel-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.reel-circle {
    position: absolute;
    border-radius: 50%;
    border: 15px solid #333;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.reel-circle.outer {
    width: 280px; height: 280px;
    border: 8px dashed #555;
    animation: rotate-reel 15s linear infinite;
}

.reel-circle.inner {
    width: 100px; height: 100px;
    background: #222;
}

.film-strip {
    position: absolute;
    background: #111;
    border-left: 4px dashed #666;
    border-right: 4px dashed #666;
    opacity: 0.8;
}

.strip-1 {
    width: 80px; height: 300px;
    top: -150px; left: 150px;
    transform: rotate(30deg);
    animation: film-flow 3s linear infinite;
}

@keyframes rotate-reel { 0% { transform: translate(-50%, -50%) rotate(0deg); } 100% { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes film-flow { 0% { background-position: 0 0; } 100% { background-position: 0 100px; } }


/* Theater Advantages */
.theater-advantage {
    background: #111111;
    color: #ffffff;
    padding: 100px 0;
}

.light-text h2, .light-text p {
    color: #ffffff;
}
.light-text .sub-title { color: var(--brand-red); }

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.adv-card {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 40px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition);
}

.adv-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-red);
    box-shadow: 0 15px 30px rgba(230,0,0,0.1);
}

.adv-icon {
    width: 60px; height: 60px;
    background: rgba(230,0,0,0.1);
    color: var(--brand-red);
    font-size: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.adv-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}
.adv-content p {
    color: #aaaaaa;
    font-size: 15px;
    line-height: 1.6;
}

/* Ad Formats Section */
.theater-formats {
    background: var(--bg-main);
    padding: 100px 0;
}

.formats-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.format-box {
    background: var(--bg-main);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.format-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.format-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #000;
}

.format-img-wrapper img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.5s ease;
}

.format-box:hover .format-img-wrapper img {
    transform: scale(1.05);
    opacity: 1;
}

.play-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 50px; height: 50px;
    background: rgba(230,0,0,0.8);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    padding-left: 4px;
}

.format-details {
    padding: 30px;
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 16px 16px;
}

.format-details h3 {
    font-size: 20px;
    color: var(--brand-black);
    margin-bottom: 12px;
}

.format-details p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .theater-hero-content { grid-template-columns: 1fr; text-align: center; }
    .theater-hero p { margin: 0 auto 40px auto; }
    .theater-visual { display: none; } /* Hide complex visual on tablet/mobile */
    .advantage-grid { grid-template-columns: repeat(2, 1fr); }
    .formats-showcase { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .theater-hero h1 { font-size: 42px; }
    .advantage-grid { grid-template-columns: 1fr; }
    .formats-showcase { grid-template-columns: 1fr; }
}

/* =========================================
   PODCAST SERVICES PAGE STYLES
   ========================================= */

/* Hero Section */
.pod-hero {
    position: relative;
    padding: 180px 0 120px 0;
    background: var(--bg-main);
    overflow: hidden;
}

.pod-hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.pod-hero-content h1 {
    font-size: 56px;
    margin-bottom: 24px;
    line-height: 1.15;
    color: var(--brand-black);
}

.pod-hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

/* Background Soundwave Lines */
.pod-soundwave-bg {
    position: absolute;
    top: 50%; left: 0;
    width: 100%; height: 300px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0.03; /* Very subtle in background */
    z-index: 1;
    pointer-events: none;
}

.bg-bar {
    width: 2px;
    background: var(--brand-black);
    border-radius: 2px;
}

/* Interactive Glassmorphism Player */
.pod-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 450px;
}

.mock-player {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 24px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    position: relative;
    z-index: 5;
    transition: var(--transition);
}

.mock-player:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(230,0,0,0.1);
}

.player-cover {
    position: relative;
    width: 100%;
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.player-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.live-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: rgba(230,0,0,0.9);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    animation: blink-live 2s infinite;
}

@keyframes blink-live {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.player-info {
    text-align: center;
}

.player-info h3 {
    font-size: 20px;
    color: var(--brand-black);
    margin-bottom: 4px;
}

.player-info p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Audio Visualizer Component */
.visualizer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 40px;
    margin-bottom: 24px;
}

.vis-bar {
    width: 4px;
    background: var(--brand-red);
    border-radius: 2px;
    height: 4px; /* Default rest state */
    transition: height 0.1s ease;
}

/* Player Controls */
.player-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.time {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

.play-btn {
    width: 56px; height: 56px;
    background: var(--brand-black);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

/* Align play icon slightly right */
.play-btn i.fa-play { padding-left: 4px; }
.play-btn i.fa-pause { padding-left: 0; } 

.play-btn:hover {
    background: var(--brand-red);
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(230,0,0,0.3);
}

/* Floating 3D Mic Element */
.floating-mic {
    position: absolute;
    top: -20px; right: -20px;
    width: 80px; height: 80px;
    background: var(--brand-red);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 20px 40px rgba(230,0,0,0.4);
    z-index: 10;
    animation: float-mic 4s ease-in-out infinite;
}

@keyframes float-mic {
    0%, 100% { transform: translateY(0) rotate(5deg); }
    50% { transform: translateY(-20px) rotate(-5deg); }
}

/* Core Podcasting Services */
.pod-services {
    background: var(--bg-alt);
    border-top: 1px solid var(--border-color);
}

.pod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.pod-card {
    background: var(--bg-main);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.pod-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-red);
    box-shadow: 0 15px 35px rgba(230,0,0,0.08);
}

.pod-icon {
    width: 60px; height: 60px;
    background: rgba(230,0,0,0.05);
    color: var(--brand-red);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin: 0 auto 24px auto;
    transition: var(--transition);
}

.pod-card:hover .pod-icon {
    background: var(--brand-red);
    color: #ffffff;
}

.pod-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--brand-black);
}

.pod-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* DAW Timeline Section */
.pod-process {
    background: var(--bg-main);
    overflow: hidden;
}

.daw-timeline {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

/* Red Playhead */
.daw-playhead {
    position: absolute;
    top: 0; left: 30%;
    width: 2px; height: 100%;
    background: var(--brand-red);
    z-index: 5;
    box-shadow: 0 0 10px rgba(230,0,0,0.5);
    animation: move-playhead 8s linear infinite;
}

.daw-playhead::before {
    content: '';
    position: absolute;
    top: -5px; left: -6px;
    width: 14px; height: 14px;
    background: var(--brand-red);
    border-radius: 2px;
}

@keyframes move-playhead {
    0% { left: 15%; }
    100% { left: 85%; }
}

.daw-track {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding: 20px;
}

.daw-track:last-child {
    border-bottom: none;
}

.track-header {
    width: 200px;
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-black);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    border-right: 1px solid var(--border-color);
    padding-right: 20px;
}

.track-header i {
    color: var(--text-muted);
    font-size: 16px;
}

.track-clips {
    flex-grow: 1;
    display: flex;
    align-items: center;
    padding-left: 20px;
    position: relative;
}

.daw-clip {
    padding: 12px;
    border-radius: 6px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.daw-clip:hover { transform: scaleY(1.1); }

.color-red { background: linear-gradient(90deg, #E60000, #ff3333); }
.color-dark { background: linear-gradient(90deg, #111111, #333333); }


/* Mobile Responsive */
@media (max-width: 992px) {
    .pod-hero-container { grid-template-columns: 1fr; text-align: center; }
    .pod-hero-content p { margin: 0 auto 40px auto; }
    .hero-btns { justify-content: center; }
    .pod-hero-visual { margin-top: 40px; }
    .floating-mic { right: 10%; top: -10px; }
}

@media (max-width: 768px) {
    .pod-hero h1 { font-size: 42px; }
    .daw-track { flex-direction: column; align-items: flex-start; padding: 15px; }
    .track-header { width: 100%; border-right: none; border-bottom: 1px solid var(--border-color); padding-bottom: 10px; margin-bottom: 15px; }
    .track-clips { width: 100%; padding-left: 0; flex-direction: column; gap: 10px; }
    .daw-clip { width: 100% !important; margin-left: 0 !important; }
    .daw-playhead { display: none; } /* Hide playhead on mobile for cleaner look */
}

/* =========================================
   BULK SMS PAGE STYLES (INNOVATIVE UI)
   ========================================= */

/* Hero Section */
.sms-hero {
    position: relative;
    padding: 180px 0 100px 0;
    background: var(--bg-main);
    overflow: hidden;
}

.sms-hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.sms-hero-content h1 {
    font-size: 56px;
    margin-bottom: 24px;
    line-height: 1.15;
    color: var(--brand-black);
}

.sms-hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Floating Message Background Animation */
.floating-bubble {
    position: absolute;
    color: rgba(230,0,0,0.05);
    font-size: 120px;
    z-index: 1;
    animation: float-up-fade 8s infinite linear;
}

.bubble-1 { bottom: -100px; left: 10%; animation-duration: 12s; }
.bubble-2 { bottom: -150px; left: 50%; animation-duration: 9s; animation-delay: 2s; font-size: 80px;}
.bubble-3 { bottom: -100px; right: 15%; animation-duration: 15s; animation-delay: 4s; }

@keyframes float-up-fade {
    0% { transform: translateY(0) rotate(-10deg); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(-800px) rotate(20deg); opacity: 0; }
}

/* Hero Stats Card */
.hero-stats-card {
    background: var(--brand-black);
    padding: 30px;
    border-radius: 16px;
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.hero-stats-card::before {
    content: '';
    position: absolute;
    top: -10px; right: -10px;
    width: 100%; height: 100%;
    border: 2px solid var(--brand-red);
    border-radius: 16px;
    z-index: -1;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 50px; height: 50px;
    background: rgba(230,0,0,0.15);
    color: var(--brand-red);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.stat-row h4 {
    font-size: 14px;
    color: #aaaaaa;
    margin-bottom: 4px;
    font-weight: 500;
}

.stat-row span {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.stat-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    width: 100%;
}

/* Interactive Simulator Section */
.sms-types-section {
    background: var(--bg-alt);
    border-top: 1px solid var(--border-color);
}

.interactive-sms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Tabs */
.sms-tabs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sms-tab {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.sms-tab:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.sms-tab.active {
    border-color: var(--brand-red);
    background: rgba(230,0,0,0.02);
    box-shadow: 0 15px 30px rgba(230,0,0,0.08);
}

.tab-icon {
    font-size: 28px;
    color: var(--brand-black);
    transition: var(--transition);
    margin-top: 4px;
}

.sms-tab.active .tab-icon {
    color: var(--brand-red);
}

.tab-text h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--brand-black);
}

.tab-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Smartphone Simulator */
.sms-simulator-wrapper {
    display: flex;
    justify-content: center;
}

.smartphone {
    width: 320px;
    height: 640px;
    background: #000000;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2), inset 0 0 10px rgba(255,255,255,0.2);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 12px; left: 50%;
    transform: translateX(-50%);
    width: 120px; height: 25px;
    background: #000000;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
}

.phone-screen {
    width: 100%; height: 100%;
    background: #f4f4f5;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.screen-header {
    background: #ffffff;
    padding: 40px 20px 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e4e4e7;
    font-weight: 600;
    font-size: 15px;
    color: #18181b;
}

.screen-body {
    flex-grow: 1;
    padding: 20px;
    position: relative;
}

.sim-screen {
    position: absolute;
    top: 20px; left: 20px; right: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sim-screen.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.timestamp {
    text-align: center;
    font-size: 11px;
    color: #a1a1aa;
    margin-bottom: 16px;
}

/* Text Message Bubbles */
.chat-bubble {
    background: #e4e4e7;
    padding: 12px 16px;
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    font-size: 13px;
    line-height: 1.5;
    color: #18181b;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* WhatsApp Specific Styling */
.whatsapp-theme .chat-bubble {
    background: #ffffff;
    border-bottom-left-radius: 4px;
}
.wa-image {
    width: 100%; height: 120px;
    background: url('https://images.unsplash.com/photo-1557838923-2985c318be48?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&q=80') center/cover;
    border-radius: 8px;
    margin-bottom: 8px;
}
.wa-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    border-top: 1px solid #f4f4f5;
    padding-top: 12px;
}
.wa-buttons button {
    background: #f4f4f5;
    border: none;
    padding: 8px;
    border-radius: 6px;
    color: #0ea5e9;
    font-weight: 600;
    font-size: 13px;
}

/* Features Section */
.sms-features {
    background: var(--bg-main);
}
.sms-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.feature-box {
    background: var(--bg-alt);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}
.f-icon {
    font-size: 32px;
    color: var(--brand-red);
    margin-bottom: 20px;
}
.feature-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
}
.feature-box p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .sms-hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-stats-card { max-width: 400px; margin: 0 auto; }
    
    .interactive-sms-grid { grid-template-columns: 1fr; }
    .sms-tabs { order: 2; }
    .sms-simulator-wrapper { order: 1; margin-bottom: 40px; }
    
    .sms-feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .sms-hero h1 { font-size: 42px; }
    .sms-feature-grid { grid-template-columns: 1fr; }
}

/* =========================================
   WHATSAPP MARKETING PAGE STYLES
   ========================================= */

:root {
    --wa-green: #25D366;
    --wa-dark: #075E54;
    --wa-teal: #128C7E;
    --wa-bg: #efeae2;
    --wa-bubble-bg: #ffffff;
}

/* Hero Section */
.wa-hero {
    position: relative;
    padding: 180px 0 100px 0;
    background: var(--bg-main);
    overflow: hidden;
}

.wa-hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.wa-badge {
    background: rgba(37, 211, 102, 0.1);
    color: var(--wa-green);
    border-color: rgba(37, 211, 102, 0.3);
}

.wa-hero-content h1 {
    font-size: 56px;
    margin-bottom: 24px;
    line-height: 1.15;
    color: var(--brand-black);
}

.wa-highlight {
    color: var(--wa-green);
}

.wa-hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.wa-btn-primary {
    background: var(--wa-green);
    border-color: var(--wa-green);
    color: #ffffff;
}

.wa-btn-primary:hover {
    background: var(--wa-dark);
    border-color: var(--wa-dark);
    color: #ffffff;
}

/* Floating WhatsApp Icons */
.wa-floating-icon {
    position: absolute;
    color: rgba(37, 211, 102, 0.1);
    z-index: 1;
    animation: wa-float 6s ease-in-out infinite;
}

.w-icon-1 { font-size: 120px; top: 15%; left: 5%; }
.w-icon-2 { font-size: 80px; bottom: 10%; left: 45%; animation-delay: 2s; }
.w-icon-3 { font-size: 100px; top: 20%; right: 10%; animation-delay: 1s; }

@keyframes wa-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Stats Ring Visual */
.wa-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wa-stats-ring {
    position: relative;
    width: 300px; height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ring-circle {
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 3px dashed var(--wa-green);
    animation: wa-spin 20s linear infinite;
}

@keyframes wa-spin { 100% { transform: rotate(360deg); } }

.ring-content {
    text-align: center;
    background: #ffffff;
    width: 200px; height: 200px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.2);
    z-index: 2;
}

.ring-content h2 {
    font-size: 48px;
    color: var(--wa-green);
    line-height: 1;
    margin-bottom: 5px;
}

.ring-content p {
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-black);
}

.floating-badge {
    position: absolute;
    background: var(--brand-black);
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 5;
    animation: wa-float 4s ease-in-out infinite reverse;
}

.fb-top { top: -10px; right: -20px; }
.fb-bottom { bottom: 10px; left: -40px; animation-delay: 1s; }


/* Simulator Section */
.wa-simulator-section {
    background: var(--bg-alt);
    border-top: 1px solid var(--border-color);
}

.wa-sim-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.wa-campaign-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wa-opt-btn {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    padding: 20px 24px;
    border-radius: 12px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-black);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 16px;
}

.wa-opt-btn i {
    font-size: 20px;
    color: var(--text-muted);
    transition: var(--transition);
}

.wa-opt-btn:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.wa-opt-btn.active {
    border-color: var(--wa-green);
    background: rgba(37, 211, 102, 0.05);
}

.wa-opt-btn.active i {
    color: var(--wa-green);
}

/* WhatsApp Phone UI */
.wa-phone-wrapper {
    display: flex;
    justify-content: center;
}

.wa-phone {
    width: 340px;
    height: 680px;
    background: #000;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2), inset 0 0 10px rgba(255,255,255,0.2);
}

.wa-screen {
    width: 100%; height: 100%;
    background: var(--wa-bg);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.wa-header {
    background: var(--wa-teal);
    color: #ffffff;
    padding: 40px 16px 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #ffffff;
    overflow: hidden;
    padding: 4px;
}

.wa-avatar img { width: 100%; height: 100%; object-fit: contain; }

.wa-brand-info h4 {
    font-size: 15px;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.verified-tick {
    color: #4CAF50;
    font-size: 12px;
    background: #fff;
    border-radius: 50%;
}

.wa-brand-info span {
    font-size: 11px;
    opacity: 0.8;
}

.wa-header-right {
    display: flex;
    gap: 16px;
    font-size: 18px;
}

/* Chat Background Pattern */
.wa-chat-bg {
    flex-grow: 1;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23dcd5cc" fill-opacity="0.4"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    padding: 16px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.wa-date-badge {
    align-self: center;
    background: #e1f5fe;
    color: #4a5568;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 10px;
    margin-bottom: 16px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.wa-message-container {
    animation: msg-pop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: top left;
}

@keyframes msg-pop {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

.wa-msg-bubble {
    background: var(--wa-bubble-bg);
    padding: 4px;
    border-radius: 8px;
    border-top-left-radius: 0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    max-width: 90%;
    margin-bottom: 4px;
}

.wa-msg-img {
    width: 100%;
    height: 140px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    margin-bottom: 6px;
}

.wa-msg-text {
    padding: 4px 8px 8px 8px;
    font-size: 13.5px;
    color: #111;
    line-height: 1.5;
    position: relative;
}

.wa-msg-time {
    text-align: right;
    font-size: 10px;
    color: #999;
    margin-top: 4px;
}

.wa-interactive-btns {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 90%;
}

.wa-interactive-btns button {
    background: #ffffff;
    border: none;
    padding: 10px;
    border-radius: 8px;
    color: #00a884;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* Typing Indicator */
.wa-typing {
    background: #fff;
    padding: 12px 16px;
    border-radius: 20px;
    border-top-left-radius: 0;
    display: inline-flex;
    gap: 4px;
    width: fit-content;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.wa-typing .dot {
    width: 6px; height: 6px;
    background: #a0a0a0;
    border-radius: 50%;
    animation: type-bounce 1.2s infinite ease-in-out;
}

.wa-typing .dot:nth-child(1) { animation-delay: 0s; }
.wa-typing .dot:nth-child(2) { animation-delay: 0.2s; }
.wa-typing .dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes type-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.wa-footer-input {
    background: #f0f2f5;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fake-input {
    flex-grow: 1;
    background: #ffffff;
    padding: 10px 16px;
    border-radius: 20px;
    color: #999;
    font-size: 14px;
}

.wa-footer-input > i {
    font-size: 20px;
    color: #888;
}

.mic-btn {
    width: 40px; height: 40px;
    background: var(--wa-teal);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Features Grid */
.wa-features { background: var(--bg-main); }

.wa-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.wa-feat-card {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 16px;
    transition: var(--transition);
}

.wa-feat-card:hover {
    transform: translateY(-5px);
    border-color: var(--wa-green);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.1);
}

.wa-feat-icon {
    font-size: 36px;
    color: var(--wa-green);
    margin-bottom: 20px;
}

.wa-feat-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--brand-black);
}

.wa-feat-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .wa-hero-container { grid-template-columns: 1fr; text-align: center; }
    .wa-hero-content p { margin: 0 auto 40px auto; }
    .wa-hero-visual { margin-top: 40px; }
    .wa-sim-grid { grid-template-columns: 1fr; }
    .wa-phone-wrapper { margin-top: 40px; }
    .wa-feature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .wa-hero h1 { font-size: 42px; }
    .wa-stats-ring { width: 250px; height: 250px; }
    .ring-content { width: 160px; height: 160px; }
    .ring-content h2 { font-size: 36px; }
}


/* =========================================
   EMAIL MARKETING PAGE STYLES
   ========================================= */

/* Hero Section */
.em-hero {
    position: relative;
    padding: 180px 0 100px 0;
    background: var(--bg-main);
    overflow: hidden;
}

.em-hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.em-hero-content h1 {
    font-size: 56px;
    margin-bottom: 24px;
    line-height: 1.15;
    color: var(--brand-black);
}

.em-hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

/* Floating Paper Planes */
.paper-plane {
    position: absolute;
    color: rgba(230, 0, 0, 0.08);
    font-size: 60px;
    z-index: 1;
    pointer-events: none;
    animation: fly-plane linear infinite;
}

.p1 { top: 20%; left: -10%; animation-duration: 15s; font-size: 80px; }
.p2 { top: 60%; left: -10%; animation-duration: 25s; animation-delay: 5s; font-size: 40px; transform: rotate(15deg); }
.p3 { top: 80%; left: -10%; animation-duration: 18s; animation-delay: 10s; font-size: 60px; }

@keyframes fly-plane {
    0% { transform: translateX(0) translateY(0) rotate(15deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(120vw) translateY(-200px) rotate(15deg); opacity: 0; }
}

/* Dashboard Mockup */
.em-dashboard {
    background: var(--bg-alt);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    overflow: hidden;
}

.em-dash-header {
    background: var(--brand-black);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.dots { display: flex; gap: 6px; }
.dots span { width: 12px; height: 12px; border-radius: 50%; }
.dots .red { background: #ff5f56; }
.dots .yellow { background: #ffbd2e; }
.dots .green { background: #27c93f; }

.dash-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.em-dash-body {
    padding: 30px;
    background: #ffffff;
}

.metric-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.metric-box {
    flex: 1;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.metric-box i { font-size: 28px; }

.m-data .m-val {
    font-size: 24px;
    font-weight: 800;
    color: var(--brand-black);
}

.m-data p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* Bar Chart Animation */
.em-chart-area {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 120px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.chart-bar {
    flex: 1;
    background: var(--brand-black);
    border-radius: 4px 4px 0 0;
    animation: grow-bar 1.5s ease-out forwards;
    transform-origin: bottom;
    transform: scaleY(0);
}

.chart-bar:hover { background: var(--brand-red); }

.b1 { height: 40%; animation-delay: 0.2s; }
.b2 { height: 60%; animation-delay: 0.3s; }
.b3 { height: 35%; animation-delay: 0.4s; }
.b4 { height: 80%; animation-delay: 0.5s; background: var(--brand-red); } /* highlight */
.b5 { height: 50%; animation-delay: 0.6s; }
.b6 { height: 75%; animation-delay: 0.7s; }
.b7 { height: 90%; animation-delay: 0.8s; }

@keyframes grow-bar {
    to { transform: scaleY(1); }
}

.deliverability-badge {
    background: rgba(39, 201, 63, 0.1);
    color: #27c93f;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Workflow Visualizer */
.em-workflows {
    background: var(--bg-alt);
    border-top: 1px solid var(--border-color);
}

.workflow-visualizer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    overflow-x: auto;
}

.wf-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 140px;
    opacity: 0.4; /* Dimmed initially */
    transition: all 0.4s ease;
}

.wf-node.active {
    opacity: 1;
    transform: translateY(-5px);
}

.wf-icon {
    width: 60px; height: 60px;
    background: var(--bg-alt);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--text-muted);
    margin-bottom: 16px;
    transition: all 0.4s ease;
}

.wf-node.active .wf-icon {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(230,0,0,0.2);
}

.wf-node h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--brand-black);
}

.wf-node p {
    font-size: 12px;
    color: var(--text-muted);
}

.wf-line {
    flex-grow: 1;
    height: 4px;
    background: var(--border-color);
    margin: 0 15px;
    margin-top: -45px; /* align with circles */
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    min-width: 50px;
}

.wf-progress {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 0%;
    background: var(--brand-red);
    transition: width 0.8s ease-in-out;
}

/* Campaign Types Grid */
.em-campaign-types {
    background: var(--bg-main);
}

.em-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.em-card {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.em-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-red);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.em-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--border-color);
}

.em-card-content {
    padding: 30px;
}

.em-card-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--brand-black);
}

.em-card-content p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Deliverability Section */
.em-pillars {
    background: var(--bg-alt);
    border-top: 1px solid var(--border-color);
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pillar-list {
    list-style: none;
    margin-top: 30px;
}

.pillar-list li {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.pillar-list li i {
    color: var(--brand-red);
    margin-top: 4px;
    font-size: 20px;
}

.pillar-list li strong {
    color: var(--brand-black);
}

/* Inbox Mockup */
.inbox-mockup {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

.inbox-header {
    background: #f8f9fa;
    padding: 16px 20px;
    font-weight: 700;
    color: var(--brand-black);
    border-bottom: 1px solid var(--border-color);
}

.email-row {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
}

.email-row.active {
    background: rgba(230,0,0,0.03);
    border-left: 4px solid var(--brand-red);
    color: var(--brand-black);
}

.email-row .sender { width: 140px; }
.email-row .subject { flex-grow: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding-right: 20px;}
.email-row .time { font-size: 12px; }

.spam-alert {
    background: #fff3cd;
    color: #856404;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .em-hero-container { grid-template-columns: 1fr; text-align: center; }
    .em-hero-content p { margin: 0 auto 40px auto; }
    .hero-btns { justify-content: center; }
    .em-hero-visual { margin-top: 40px; }
    
    .pillars-grid { grid-template-columns: 1fr; }
    .pillar-visual { order: -1; }
}

@media (max-width: 768px) {
    .em-hero h1 { font-size: 44px; }
    .workflow-visualizer { flex-direction: column; align-items: flex-start; gap: 20px; }
    .wf-node { width: 100%; flex-direction: row; text-align: left; gap: 16px; }
    .wf-icon { margin-bottom: 0; width: 40px; height: 40px; font-size: 16px; }
    .wf-line { width: 2px; height: 30px; margin: 0 0 0 19px; min-width: auto; }
    .wf-progress { width: 100%; height: 0%; transition: height 0.8s ease-in-out; }
    
    .em-grid { grid-template-columns: 1fr; }
    
    .email-row { flex-direction: column; align-items: flex-start; gap: 4px; }
    .email-row .time { position: absolute; right: 20px; }
    .email-row { position: relative; }
}

/* =========================================
   CONTACT US PAGE (SPLIT-SCREEN & SMART FORM)
   ========================================= */

/* Adjust body specifically for contact page to avoid scroll issues on desktop */
.contact-page-body {
    background: var(--bg-main);
}

.contact-split-section {
    padding-top: 80px; /* Account for navbar */
    min-height: 100vh;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 80px);
}

/* Left Column: Info & Visuals */
.contact-info-col {
    background: var(--brand-black);
    color: #ffffff;
    padding: 80px 10%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Abstract Background Shapes */
.bg-shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.circle-shape {
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230,0,0,0.15) 0%, transparent 70%);
    top: -100px; left: -100px;
}

.grid-shape {
    width: 100%; height: 100%;
    top: 0; left: 0;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.info-content {
    position: relative;
    z-index: 10;
}

.info-content h1 {
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.info-content p {
    color: #cccccc;
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 450px;
    line-height: 1.6;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.info-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.info-card:hover {
    background: rgba(230,0,0,0.1);
    border-color: rgba(230,0,0,0.3);
}

.info-icon {
    width: 50px; height: 50px;
    background: var(--brand-red);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: #ffffff;
}

.info-text a, .info-text span {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.info-text a:hover {
    color: var(--brand-red);
}

.contact-socials p {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.contact-socials .social-links a {
    display: inline-flex;
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #ffffff;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.contact-socials .social-links a:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
    transform: translateY(-3px);
}

/* Right Column: Smart Form */
.contact-form-col {
    background: var(--bg-main);
    padding: 80px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-wrapper h2 {
    font-size: 36px;
    color: var(--brand-black);
    margin-bottom: 12px;
}

.form-wrapper p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.smart-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Floating Label Magic */
.floating-group {
    position: relative;
    width: 100%;
}

.floating-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--border-color);
    padding: 16px 0 8px 0;
    font-size: 16px;
    color: var(--brand-black);
    outline: none;
    transition: all 0.3s ease;
}

textarea.floating-input {
    resize: none;
}

/* Base Label State */
.floating-label {
    position: absolute;
    top: 16px;
    left: 0;
    font-size: 16px;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Animated Border Bottom */
.floating-group::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0%; height: 2px;
    background: var(--brand-red);
    transition: width 0.4s ease;
}

.floating-input:focus ~ .floating-label,
.floating-input:not(:placeholder-shown) ~ .floating-label,
.floating-input:valid ~ .floating-label {
    top: -10px;
    font-size: 12px;
    color: var(--brand-red);
    font-weight: 600;
}

.floating-input:focus ~ .floating-label {
    color: var(--brand-red);
}

.floating-input:focus {
    border-bottom-color: transparent; /* Hide base border to show animated one */
}

.floating-input:focus ~ .floating-group::after,
.floating-group:focus-within::after {
    width: 100%;
}

/* Select Dropdown Fixes */
.select-group .floating-input {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}
.select-group .floating-input:invalid {
    color: transparent; /* Hides default option text until selected */
}
.select-icon {
    position: absolute;
    right: 0;
    top: 20px;
    color: var(--text-muted);
    pointer-events: none;
}
.select-group .floating-input:focus ~ .select-label,
.select-group .floating-input:valid ~ .select-label {
    top: -10px;
    font-size: 12px;
    color: var(--brand-red);
}

/* Dynamic Submit Button */
.btn-submit {
    background: var(--brand-black);
    color: #ffffff;
    border: none;
    padding: 18px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--brand-red);
}

.btn-text {
    transition: opacity 0.3s ease;
}

.btn-text i {
    margin-left: 8px;
}

/* Loader Animation */
.loader {
    position: absolute;
    width: 24px; height: 24px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    animation: spin-loader 1s linear infinite;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

@keyframes spin-loader { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Success Icon */
.success-icon {
    position: absolute;
    font-size: 24px;
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Button States triggered by JS */
.btn-submit.loading .btn-text { opacity: 0; visibility: hidden; }
.btn-submit.loading .loader { opacity: 1; visibility: visible; }
.btn-submit.loading { background: var(--text-muted); pointer-events: none; }

.btn-submit.success .loader { opacity: 0; visibility: hidden; }
.btn-submit.success .success-icon { opacity: 1; visibility: visible; transform: scale(1); }
.btn-submit.success { background: #27c93f; pointer-events: none; }

.form-success-msg {
    background: rgba(39, 201, 63, 0.1);
    color: #27c93f;
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
    display: none;
}

/* Full Width Map Section */
.map-section {
    width: 100%;
    height: 450px;
    background: #eee;
    display: block; /* Remove padding for full bleed */
}
.map-section iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(100%) contrast(1.2); /* Stylize map to match branding */
    transition: var(--transition);
}
.map-section iframe:hover {
    filter: grayscale(0%) contrast(1);
}


/* Mobile Responsive Contact Page */
@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info-col { padding: 80px 5%; text-align: center; }
    .info-content p { margin: 0 auto 40px auto; }
    .info-card { flex-direction: column; justify-content: center; text-align: center; }
    .contact-form-col { padding: 80px 5%; }
}

@media (max-width: 768px) {
    .info-content h1 { font-size: 42px; }
    .form-wrapper h2 { font-size: 32px; }
    .form-row { grid-template-columns: 1fr; gap: 24px; }
}

/* =========================================
   AUTOMATIC VIDEO POPUP STYLES
   ========================================= */

.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9); /* Dark cinematic background */
    z-index: 99999; /* Ensures it is above your sticky header */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* Class added by JS to show the modal */
.video-modal-overlay.show-modal {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 30px rgba(230,0,0,0.2);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-modal-overlay.show-modal .video-modal-content {
    transform: scale(1);
}

/* Close Button Styling */
.close-video-btn {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    opacity: 0.8;
}

.close-video-btn:hover {
    color: var(--brand-red, #E60000); /* Uses your brand red */
    opacity: 1;
}

/* 16:9 Responsive Video Container */
.video-container {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: 12px;
    overflow: hidden;
}

.video-container video, 
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .close-video-btn {
        top: -40px;
        right: 10px;
        font-size: 36px;
    }
}


