/* --- Design System (Mobile First) --- */
:root {
    --primary-color: #0066ff;
    --secondary-color: #00d2ff;
    --bg-dark: #f0f7ff; /* Light bluish white tint */
    --bg-light: #f8fbff; /* Very light bluish white */
    --text-main: #001a33;
    --text-dim: #4d7091;
    --glass-bg: rgba(243, 249, 255, 0.8); /* Bluish white glass */
    --glass-border: rgba(0, 102, 255, 0.08);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --shadow-premium: 0 15px 45px rgba(0, 102, 255, 0.08);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Typography Mobile */
    --h1-size: 1.75rem;
    --h2-size: 1.5rem;
    --h3-size: 1.2rem;
    --p-size: 0.95rem;
    --section-padding: 2.5rem 0;
}

/* Tablet Upgrades */
@media (min-width: 768px) {
    :root {
        --h1-size: 2.5rem;
        --h2-size: 2rem;
        --p-size: 1rem;
        --section-padding: 3rem 0;
    }
}

/* Desktop Upgrades */
@media (min-width: 1024px) {
    :root {
        --h1-size: 4rem;
        --h2-size: 3rem;
        --section-padding: 4.5rem 0;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(
        to bottom,
        #4facfe 0%,
        #cfe8ff 40%,
        #ffffff 100%
    );
    background-attachment: fixed; /* Keeps the gradient fixed while scrolling */
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
}

/* Top Glow Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at top, rgba(79, 172, 254, 0.3), transparent 70%);
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
p { font-size: var(--p-size); color: var(--text-dim); }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem; /* 20px padding mobile */
}

.section {
    padding: var(--section-padding);
}

.alt-bg {
    background: transparent;
}

.text-center {
    text-align: center;
}

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


/* --- Navigation --- */
#navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.5rem 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1); /* Transparent glass */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

#navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: -10px; /* Shifting further to the left */
}

.logo img:first-of-type {
    height: 40px;
    width: 40px;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    border-radius: 50%; /* Circular frame */
    padding: 2px;
}

.brand-name-img {
    height: 36px;
    width: auto;
    border: none; /* Explicitly no border */
}

/* Mobile Menu Button */
.menu-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    z-index: 1002;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-main);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Fullscreen Slide Menu */
.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    z-index: 1001;
    list-style: none;
    overflow-y: auto;
}

.nav-links.active {
    right: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

/* Desktop Navigation Upgrades */
@media (min-width: 1024px) {
    .menu-toggle { display: none; }
    .nav-links {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        background: transparent;
        gap: 2.5rem;
        transition: none;
    }
    .nav-links a {
        font-size: 0.95rem;
        font-weight: 500;
        transition: color 0.3s;
    }
    .nav-links a:hover { color: var(--secondary-color); }
    
    /* Cursor only on desktop */
    .cursor {
        width: 10px;
        height: 10px;
        background: var(--secondary-color);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
    }
    .cursor-follower {
        width: 40px;
        height: 40px;
        border: 1px solid var(--primary-color);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: transform 0.1s ease;
    }
}

@media (max-width: 1023px) {
    .cursor, .cursor-follower { display: none; }
    * { cursor: auto !important; }
}

/* --- Buttons --- */
.btn {
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: block; /* Full width mobile */
    text-align: center;
    transition: var(--transition);
    border: none;
    min-height: 48px;
    margin-bottom: 1rem;
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.4);
    transform: translateY(-3px) scale(1.02);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

@media (min-width: 768px) {
    .btn { display: inline-block; width: auto; margin-right: 1rem; }
}

/* --- Hero Section --- */
#hero {
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
    width: 100%;
    aspect-ratio: 16/11; /* Increased height from 16/9 */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Zoom to fill without black strips */
}

.hero-bottom-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to top, var(--bg-dark), transparent);
    z-index: 5;
}

.hero-text-overlay {
    position: absolute;
    top: 15%; /* Shifted even higher */
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100%;
    text-align: center;
    pointer-events: none;
}

.premium-quote {
    font-size: clamp(0.7rem, 4vw, 1.5rem); /* Even smaller */
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    letter-spacing: 15px; /* More spacing for tiny text */
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin: 0;
    text-transform: uppercase;
    white-space: nowrap;
}

.premium-quote-large {
    font-size: clamp(0.8rem, 3vw, 1.25rem);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    letter-spacing: 12px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    margin: 1.5rem 0;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .premium-quote {
        letter-spacing: 4px;
    }
    .premium-quote-large {
        letter-spacing: 6px;
    }
}


@media (min-width: 1024px) {
    #hero {
        aspect-ratio: 16/9; /* Increased height from 21/9 */
        min-height: auto;
    }
}

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

@keyframes floatReverse {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(20px) rotate(5deg); }
}

/* --- Services --- */
#services {
    padding-top: 0.5rem; /* Further reduced to shift up */
}

.section-header {
    margin-bottom: 1.5rem; /* Reduced to shift boxes further up */
}

.section-tagline {
    display: inline-block;
    font-size: 0.5rem; /* Even smaller */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
    padding: 0.15rem 0.5rem; /* Very tight padding */
    background: rgba(0, 102, 255, 0.08);
    border-radius: 50px;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.section-header h2 {
    font-size: clamp(2rem, 6vw, 3.5rem); /* Increased size */
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 0.9rem;
    max-width: 500px;
    margin: 0.5rem auto 1.5rem;
}

.underline {
    width: 50px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns by default */
    gap: 0.75rem; /* Smaller gap */
}

.card-inner {
    padding: 1.25rem 1rem; /* Reduced padding for smaller size */
    background: var(--bg-light);
    border: 1px solid var(--glass-border);
    border-radius: 20px; /* Slightly smaller radius */
    height: 100%;
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content for compact look */
    text-align: center;
}

.icon-box {
    width: 44px; /* Smaller icon box */
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.15);
}

.card-inner h3 {
    font-size: 0.95rem; /* Smaller heading */
    margin-bottom: 0.5rem;
}

.card-inner p {
    font-size: 0.75rem; /* Smaller text */
    line-height: 1.3;
}

.service-card:hover .card-inner {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff, #e6f7ff);
    transform: translateY(-8px);
}

@media (min-width: 768px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .service-card:hover .card-inner {
        transform: translateY(-10px);
        border-color: var(--primary-color);
    }
}

/* --- Portfolio --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column mobile */
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    loading: lazy;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

@media (min-width: 768px) {
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Process --- */


.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .process-grid { grid-template-columns: repeat(4, 1fr); }
}

/* --- Features --- */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .features-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
}

/* --- Testimonials (Slider) --- */
.testimonial-slider-container {
    overflow: hidden;
    touch-action: pan-y;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
}

.testimonial-content {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--glass-border);
}

.testimonial-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.stars {
    color: #ffcc00;
    margin-bottom: 1rem;
}

/* --- CTA Section --- */
.cta-section {
    background: var(--gradient-primary);
    color: white;
}

.cta-section h2, .cta-section p {
    color: white;
}

.cta-section .btn-outline {
    border-color: white;
    color: white;
}

/* --- Footer --- */
#footer {
    background: #000c1a; /* Deep premium blue */
    color: white;
    padding: 3rem 0 2rem;
    position: relative;
    overflow: hidden;
}

#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-info .logo {
    margin-bottom: 1.5rem;
}

.footer-info .logo img:first-of-type {
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-info p {
    color: #a1b1c1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}

.footer-links h3, .footer-contact h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: #a1b1c1;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #a1b1c1;
    margin-bottom: 1rem;
}

.footer-contact p i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #6d7e8e;
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

/* --- Reveal Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Bottom Navigation (Mobile) --- */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(207, 232, 255, 0.85); /* Light Sky Blue Glass */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(0, 102, 255, 0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
    padding: 0 10px;
    box-shadow: 0 -5px 25px rgba(0, 102, 255, 0.08);
    will-change: transform;
}

.bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-main); /* Darker text for light blue background */
    font-size: 0.65rem;
    gap: 4px;
    transition: var(--transition);
    flex: 1;
}

/* Authentic Brand Colors */
.nav-call i { color: #25D366; } /* Call Green */
.nav-whatsapp i { color: #25D366; } /* WhatsApp Green */
.nav-home i { color: var(--primary-color); }
.nav-fb i { color: #1877F2; } /* Facebook Blue */
.nav-insta i { 
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bottom-nav a i {
    font-size: 1.3rem;
}

/* Hide bottom nav on desktop */
@media (min-width: 768px) {
    .bottom-nav {
        display: none;
    }
}

/* --- Proof Section --- */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.proof-badge {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
}

.proof-badge:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.badge-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.badge-content h4 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.badge-content p {
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .proof-grid { grid-template-columns: repeat(4, 1fr); }
}

/* --- Web Projects Section --- */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.project-card {
    background: var(--bg-light);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.project-img {
    height: 200px;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.project-info p {
    margin-bottom: 1.5rem;
}

.project-info .btn {
    width: 100%;
}

@media (min-width: 768px) {
    .projects-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- Pricing Section --- */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    border-radius: 30px;
}

.pricing-card.active {
    border: 2px solid var(--primary-color);
    background: white;
    transform: scale(1.05);
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1.5rem 0;
    color: var(--primary-color);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-card ul li {
    margin-bottom: 1rem;
    color: var(--text-dim);
}

.pricing-card ul li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

@media (min-width: 768px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Contact Info Section --- */
.contact-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    border-radius: 30px;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-item p, .contact-item a {
    color: var(--text-dim);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-color);
}

@media (min-width: 768px) {
    .contact-details { grid-template-columns: repeat(2, 1fr); }
}

/* --- Contact Form & Methods --- */
.contact-form-container {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-premium);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.9rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: white;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.05);
}

.contact-method-card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow: var(--shadow-premium);
}

.contact-method-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.contact-method-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-method-card h4 {
    margin-bottom: 0.5rem;
}

/* Adjust footer for bottom nav space on mobile */
@media (max-width: 767px) {
    #footer {
        padding-bottom: 100px;
    }
}

/* --- Track Record Section --- */
.growth-flow {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.flow-step {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-premium);
    text-align: center;
    flex: 1;
    transition: var(--transition);
}

.flow-step:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.flow-step i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.flow-step h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.flow-step ul {
    list-style: none;
    font-size: 0.8rem;
    color: var(--text-dim);
}

.flow-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    opacity: 0.3;
}

@media (min-width: 1024px) {
    .growth-flow {
        flex-direction: row;
        align-items: stretch;
    }
    .flow-arrow i {
        transform: rotate(0deg);
    }
}

@media (max-width: 1023px) {
    .flow-arrow i {
        transform: rotate(90deg);
    }
}

/* Before vs After Cards */
.ba-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .ba-grid { grid-template-columns: 1fr 1fr; }
}

.ba-card {
    padding: 2rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.ba-card.before {
    background: white;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-premium);
}

.ba-card.after {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
}

.ba-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ba-card ul {
    list-style: none;
}

.ba-card ul li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.ba-card.before ul li i { color: #ff4d4d; }
.ba-card.after ul li i { color: #fff; }
.ba-card.after p, .ba-card.after span, .ba-card.after li { color: rgba(255, 255, 255, 0.95); }

/* Growth Graph Visual */
.graph-container {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    margin-bottom: 2rem;
    text-align: center;
    border: 1px solid var(--glass-border);
}

.graph-visual {
    height: 150px;
    width: 100%;
    max-width: 500px;
    margin: 1.5rem auto;
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.graph-bar {
    flex: 1;
    background: #f0f7ff;
    border-radius: 8px 8px 0 0;
    position: relative;
}

.graph-bar::after {
    content: attr(data-label);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-dim);
    white-space: nowrap;
}

.graph-bar.active {
    background: var(--gradient-primary);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

.impact-line {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(0, 102, 255, 0.05);
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

@media (min-width: 768px) {
    .impact-line { font-size: 1.1rem; }
    .graph-visual { height: 200px; }
}

