/* ==========================================================================
   INFOSWARE PRIVATE LIMITED - DIGITAL MARKETING AGENCY DESIGN SYSTEM
   Theme: Modern Clean White & Black with Royal Blue (#4B84C4) & Vibrant Orange (#F37023)
   ========================================================================== */

:root {
    /* Logo Exact Brand Palette */
    --color-blue: #4B84C4;
    --color-blue-dark: #1D4ED8;
    --color-navy: #0F3870;
    --color-orange: #F37023;
    --color-orange-bright: #FF6B00;

    /* Theme Colors: Pure White, Deep Black/Navy & Brand-Tinted Sections (no plain gray) */
    --color-bg-white: #FFFFFF;
    --color-bg-alt: #EAF2FC;
    --color-bg-alt-orange: #FDF1E8;
    --color-bg-dark: #0B1220;
    --color-bg-card: #FFFFFF;
    --color-border: #CFE0F4;
    --color-border-hover: var(--color-blue);

    /* Text Color Tokens */
    --text-dark: #0B1220;
    --text-slate: #2B4A6B;
    --text-muted: #5B7896;
    --text-white: #FFFFFF;

    /* Functional Accents */
    --color-green: #25D366;
    --color-gold: #F59E0B;
    --color-pink: #EC4899;
    --color-purple: #8B5CF6;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Transitions & Shadows (lightened) */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 8px 20px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 16px 32px rgba(15, 23, 42, 0.08);
    --shadow-glow: 0 8px 24px rgba(243, 112, 35, 0.18);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-white);
    color: var(--text-slate);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Container & Layout Utilities */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 4.5rem 0;
    position: relative;
}

.section-alt {
    background-color: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.align-center { align-items: center; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }

/* Text & Gradient Utilities */
.gradient-text {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-blue { color: var(--color-blue); }
.text-orange { color: var(--color-orange); }
.text-green { color: var(--color-green); }
.text-gold { color: var(--color-gold); }
.text-dark { color: var(--text-dark); }

/* Section Headings */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(75, 132, 196, 0.08);
    border: 1px solid rgba(75, 132, 196, 0.18);
    border-radius: 50px;
    color: var(--color-blue);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.35rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.22;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 1.02rem;
    color: var(--text-muted);
    max-width: 680px;
    line-height: 1.75;
    font-weight: 400;
}

/* Button Component System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 1.6rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-bright) 100%);
    color: var(--text-white);
    box-shadow: 0 4px 12px rgba(243, 112, 35, 0.22);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(243, 112, 35, 0.3);
}

.btn-secondary {
    background: var(--color-bg-dark);
    color: var(--text-white);
}

.btn-secondary:hover {
    background: #1E293B;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.22);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
}

.btn-hero {
    padding: 0.68rem 1.35rem;
    font-size: 0.86rem;
    border-radius: 8px;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(4px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-block { width: 100%; }

.btn-text {
    background: none;
    border: none;
    color: var(--color-orange);
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.btn-text:hover {
    gap: 0.75rem;
    color: var(--color-blue);
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
    background: var(--color-bg-dark);
    color: #94A3B8;
    padding: 0.45rem 0;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge-pulse {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.3);
    padding: 0.1rem 0.5rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.35); }
    70% { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.contact-quick {
    display: flex;
    gap: 1rem;
}

.contact-quick a { color: #CBD5E1; }
.contact-quick a:hover { color: var(--color-orange); }

.currency-selector select {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.78rem;
    cursor: pointer;
    outline: none;
}

/* ==========================================================================
   HEADER / NAVIGATION BAR (SINGLE CLEAN LINE)
   ========================================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    padding: 0.6rem 0;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-menu { display: flex; align-items: center; }

.nav-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    white-space: nowrap;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-slate);
    white-space: nowrap;
    padding: 0.3rem 0;
    position: relative;
}

.nav-link:hover, .nav-link.active { color: var(--color-orange); }

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-orange);
    border-radius: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   HERO SLIDER CAROUSEL
   ========================================================================== */
.hero-slider-section {
    position: relative;
    overflow: hidden;
    background: var(--color-bg-dark);
    color: var(--text-white);
    min-height: 500px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.7) 60%, rgba(15, 23, 42, 0.35) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(243, 112, 35, 0.15);
    border: 1px solid rgba(243, 112, 35, 0.3);
    border-radius: 50px;
    color: var(--color-orange);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 2.9rem;
    font-weight: 700;
    line-height: 1.18;
    color: var(--text-white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.slide-sub {
    font-size: 1.05rem;
    color: #CBD5E1;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.slide-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--text-white);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--color-orange);
    border-color: var(--color-orange);
}

.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.dot-btn {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.dot-btn.active {
    background: var(--color-orange);
    width: 26px;
    border-radius: 10px;
}

/* Stats Counter Bar */
.stats-bar-section {
    background: var(--color-bg-white);
    border-bottom: 1px solid var(--color-border);
    padding: 2rem 0;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    padding: 0.75rem;
    border-right: 1px solid var(--color-border);
    transition: var(--transition);
}

.stat-card:hover { transform: translateY(-3px); }
.stat-card:last-child { border-right: none; }

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-orange);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.stat-sub {
    color: var(--text-muted);
    font-size: 0.78rem;
}

/* ==========================================================================
   MARQUEE TRUST BAR
   ========================================================================== */
.trust-marquee-section {
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem 0;
    overflow: hidden;
}

.marquee-title {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: flex;
    gap: 2.5rem;
    animation: marquee 28s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1.25rem;
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-slate);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.brand-pill:hover {
    border-color: var(--color-orange);
    transform: translateY(-2px);
}

/* ==========================================================================
   ABOUT US SECTION (WITH REAL PHOTO)
   ========================================================================== */
.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.pillar-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.pillar-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(75, 132, 196, 0.1);
    color: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pillar-item h4 {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 700;
}

.pillar-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Real Image Photo Showcase in About */
.about-visual-real {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.about-real-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.about-visual-real:hover .about-real-img {
    transform: scale(1.03);
}

.about-photo-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 0.9rem 1.15rem;
    color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-photo-badge strong { color: var(--color-orange); font-size: 1.05rem; }

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
    background: radial-gradient(ellipse at top, rgba(75, 132, 196, 0.06) 0%, rgba(255, 255, 255, 0) 55%),
                radial-gradient(ellipse at bottom right, rgba(243, 112, 35, 0.06) 0%, rgba(255, 255, 255, 0) 55%);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.service-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.75rem;
}

.filter-btn {
    padding: 0.5rem 1.15rem;
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 30px;
    color: var(--text-slate);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--color-orange);
    color: var(--text-white);
    border-color: var(--color-orange);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.25rem;
}

.service-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    position: relative;
    height: 320px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-orange) 100%);
    opacity: 0.5;
    transition: var(--transition);
    z-index: 4;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--color-orange);
    box-shadow: 0 20px 40px rgba(243, 112, 35, 0.18);
}

.service-card:hover::before {
    opacity: 1;
    height: 5px;
}

.service-face {
    position: absolute;
    inset: 0;
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    background: var(--color-bg-white);
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.35s ease, transform 0.4s ease;
    z-index: 2;
}

.service-card:hover .service-face {
    opacity: 0;
    transform: translateY(-14px) scale(0.97);
    pointer-events: none;
}

.service-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(75, 132, 196, 0.12) 0%, rgba(243, 112, 35, 0.12) 100%);
    color: var(--color-blue);
    font-size: 1.5rem;
    margin-bottom: 1.1rem;
    transition: var(--transition);
}

.service-card:hover .service-icon-circle {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-orange) 100%);
    color: #FFFFFF;
    transform: scale(1.1) rotate(-6deg);
    box-shadow: 0 8px 20px rgba(243, 112, 35, 0.3);
}

.service-face h3 {
    font-family: var(--font-heading);
    font-size: 1.14rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.55rem;
}

.service-subheading {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}

.service-details {
    position: absolute;
    inset: 0;
    padding: 1.4rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    background: var(--color-bg-white);
    opacity: 0;
    transform: translateY(14px) scale(0.98);
    transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
    pointer-events: none;
    overflow-y: auto;
    z-index: 3;
}

.service-card:hover .service-details {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.service-logo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.32rem 0.8rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-slate);
    margin-bottom: 0.75rem;
    width: fit-content;
}

.service-logo-badge i {
    color: var(--color-orange);
    font-size: 0.85rem;
}

.service-details h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.4rem;
}

.service-details p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 0.75rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.9rem;
}

.service-features li {
    font-size: 0.78rem;
    color: var(--text-slate);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.service-features li i { color: var(--color-orange); font-size: 0.72rem; }

.service-card-footer {
    margin-top: auto;
    padding-top: 0.8rem;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.service-explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.65rem 1rem;
    background: transparent;
    border: 1.5px solid var(--color-orange);
    border-radius: 8px;
    color: var(--color-orange);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.service-explore-btn i {
    transition: var(--transition);
}

.service-explore-btn:hover {
    background: var(--color-orange);
    color: var(--text-white);
    box-shadow: 0 6px 16px rgba(243, 112, 35, 0.28);
}

.service-explore-btn:hover i {
    transform: translateX(3px);
}

/* ==========================================================================
   ROI & ROAS CALCULATOR
   ========================================================================== */
.roi-wrapper {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 2.25rem;
    box-shadow: var(--shadow-md);
}

.calc-group { margin-bottom: 1.4rem; }

.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.92rem;
}

.calc-val-display {
    color: var(--color-orange);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
}

input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: var(--color-border);
    outline: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-orange);
    cursor: pointer;
}

.calc-select {
    width: 100%;
    padding: 0.7rem 1rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.92rem;
    outline: none;
}

.calc-result-box {
    background: var(--color-bg-dark);
    color: var(--text-white);
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: var(--shadow-lg);
}

.result-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.15rem;
}

.result-metric-main {
    text-align: center;
    background: #1E293B;
    border-radius: 12px;
    padding: 1.15rem;
    margin-bottom: 1.15rem;
}

.res-sub { font-size: 0.82rem; color: #94A3B8; }

.res-big {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-orange);
    margin-top: 0.3rem;
}

.result-grid-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
    margin-bottom: 1.15rem;
}

.res-mini-card {
    background: #1E293B;
    padding: 0.8rem;
    border-radius: 10px;
    text-align: center;
}

.mini-label { font-size: 0.7rem; color: #94A3B8; }
.mini-val { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; }

.calc-cta-box p {
    font-size: 0.75rem;
    color: #94A3B8;
    margin-bottom: 1rem;
    text-align: center;
}

/* ==========================================================================
   PORTFOLIO & CASE STUDIES
   ========================================================================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.25rem;
}

.case-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.case-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-blue);
    box-shadow: var(--shadow-lg);
}

.case-image {
    height: 180px;
    position: relative;
    overflow: hidden;
    background: var(--color-bg-alt);
}

.case-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.case-card:hover .case-image-img {
    transform: scale(1.06);
}

.bg-case-1 { background: linear-gradient(135deg, #4B84C4 0%, #1D4ED8 100%); }
.bg-case-2 { background: linear-gradient(135deg, #F37023 0%, #FF6B00 100%); }
.bg-case-3 { background: linear-gradient(135deg, #0F3870 0%, #4B84C4 100%); }

.flag-badge, .industry-badge {
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-white);
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(4px);
}

.case-body { padding: 1.35rem; }

.case-body h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.55rem;
    line-height: 1.3;
}

.case-body p {
    font-size: 0.84rem;
    color: var(--text-muted);
    margin-bottom: 1.15rem;
}

.case-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 0.9rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.78rem;
}

.case-stats strong {
    color: var(--color-orange);
    font-size: 0.95rem;
    display: block;
}

.case-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1.75rem;
}

/* ==========================================================================
   PRICING / PACKAGES SECTION
   ========================================================================== */
.pricing-section {
    background: var(--color-bg-alt-orange);
    border-top: 1px solid rgba(243, 112, 35, 0.2);
    border-bottom: 1px solid rgba(243, 112, 35, 0.2);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    align-items: start;
}

.price-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.price-card.featured {
    border: 2px solid var(--color-orange);
    box-shadow: var(--shadow-glow);
    transform: scale(1.02);
}

.price-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-orange);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(243, 112, 35, 0.35);
}

.price-card-header {
    text-align: center;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-border);
}

.price-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.price-tagline {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.9rem;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

.price-currency {
    font-size: 1.3rem;
    vertical-align: top;
    color: var(--color-orange);
}

.price-period {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.price-features li {
    font-size: 0.82rem;
    color: var(--text-slate);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
}

.price-features li i {
    color: var(--color-green);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

/* ==========================================================================
   CONTACT SECTION - DARK BRAND BAND (Black/Navy + White + Logo Accents)
   ========================================================================== */
.contact-section {
    background: var(--color-bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-section .section-tag {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    color: #9FC3EC;
}

.contact-section .section-title {
    color: #FFFFFF;
}

.contact-section .section-description {
    color: #A9B8CC;
}

.contact-section .section-description strong {
    color: #FFFFFF;
}

/* Equal-height columns: both sides stretch to match the taller one,
   and the info column distributes its content top/bottom so the
   contact cards align flush with the bottom of the form card. */
.contact-section .grid-2 {
    align-items: stretch;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.contact-form-col {
    display: flex;
    height: 100%;
}

.contact-form-col .form-card {
    width: 100%;
}

.contact-intro .section-title {
    font-size: 2.05rem;
}

.contact-intro .section-description {
    font-size: 0.95rem;
    line-height: 1.65;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
    margin-top: 1.25rem;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 0.85rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-orange);
    box-shadow: var(--shadow-md);
}

.contact-card .contact-icon { transition: var(--transition); }

.contact-card:hover .contact-icon {
    transform: scale(1.12) rotate(-4deg);
}

.contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.icon-blue { background: rgba(75, 132, 196, 0.12); color: var(--color-blue); }
.icon-green { background: rgba(37, 211, 102, 0.12); color: #16A34A; }
.icon-whatsapp { background: rgba(37, 211, 102, 0.12); color: #25D366; }
.icon-orange { background: rgba(243, 112, 35, 0.12); color: var(--color-orange); }

.contact-details { display: flex; flex-direction: column; gap: 0.1rem; }

.contact-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.contact-value {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-dark);
}

.contact-value-text {
    font-size: 0.8rem;
    color: var(--text-slate);
}

.copy-hint {
    font-size: 0.68rem;
    color: var(--color-orange);
}

.form-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.form-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.4rem;
}

.form-group {
    margin-bottom: 1.05rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input, .form-group textarea, .form-group select {
    padding: 0.75rem 1rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--color-orange);
    background: #FFFFFF;
    box-shadow: 0 0 6px rgba(243, 112, 35, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-slate);
    cursor: pointer;
}

.form-guarantee {
    font-size: 0.73rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.8rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--color-bg-dark);
    color: #94A3B8;
    padding-top: 3.5rem;
}

.footer-desc {
    font-size: 0.85rem;
    color: #94A3B8;
    margin: 1.2rem 0;
}

.social-links { display: flex; gap: 0.6rem; }

.social-links a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}

.social-links a:hover { background: var(--color-orange); }

.footer-links-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.15rem;
}

.footer-links-col ul li { margin-bottom: 0.6rem; }
.footer-links-col ul li a { font-size: 0.85rem; color: #94A3B8; }
.footer-links-col ul li a:hover { color: var(--color-orange); }

.footer-bottom {
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.4rem 0;
    font-size: 0.8rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-links { display: flex; gap: 1.25rem; }
.legal-links a:hover { color: #FFFFFF; }

/* ==========================================================================
   FLOATING VERTICAL CONTACT SPEED DIAL
   Stack: WhatsApp (Green Circle), Call (Navy Blue Circle), Mail (Orange Circle)
   ========================================================================== */
.floating-contact-stack {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.speed-dial-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    color: #FFFFFF;
    font-size: 1.55rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    text-decoration: none;
}

.speed-dial-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

/* Green WhatsApp Circle */
.dial-wa {
    background: #25D366;
}

/* Navy Blue Call Circle */
.dial-call {
    background: #0F3870;
}

/* Vibrant Orange Mail Circle */
.dial-mail {
    background: #F37023;
}

/* Tooltip Hint on Hover */
.speed-dial-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 66px;
    background: var(--color-bg-dark);
    color: #FFFFFF;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
    box-shadow: var(--shadow-md);
}

.speed-dial-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   CONTACT POPUP FORM MODAL
   ========================================================================== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(6px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-backdrop.active { display: flex; }

.modal-card {
    max-width: 600px;
    width: 100%;
    background: var(--color-bg-white);
    border-radius: 18px;
    padding: 2rem;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;
    top: 1.15rem;
    right: 1.15rem;
    background: var(--color-bg-alt);
    border: none;
    color: var(--text-dark);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

.success-icon { font-size: 3.25rem; margin-bottom: 1rem; }

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
    .slide-title { font-size: 2.3rem; }
    .services-grid, .portfolio-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .price-card.featured { transform: none; }
}

@media (max-width: 768px) {
    .top-bar-content { flex-direction: column; gap: 0.4rem; text-align: center; }
    .slide-title { font-size: 1.85rem; }
    .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-card { border-right: none; border-bottom: 1px solid var(--color-border); }
    .grid-2, .services-grid, .portfolio-grid, .pricing-grid, .grid-4 { grid-template-columns: 1fr; }

    /* Touch devices: skip the hover crossfade, show full card details in normal flow */
    .service-card { height: auto; cursor: default; }
    .service-face { position: relative; inset: auto; }
    .service-face .service-card-footer { display: none; }
    .service-details {
        position: relative;
        inset: auto;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        padding: 0 1.5rem 1.5rem;
    }

    
    .nav-menu {
        position: fixed;
        top: 65px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 65px);
        background: var(--color-bg-white);
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active { left: 0; }
    .nav-list { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
    .mobile-toggle { display: block; }
    .form-row, .checkbox-grid { grid-template-columns: 1fr; }
    .footer-bottom-content { flex-direction: column; gap: 1rem; text-align: center; }
    
    .floating-contact-stack { right: 15px; bottom: 15px; }
    .speed-dial-btn { width: 48px; height: 48px; font-size: 1.35rem; }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS & EXTRA HOVER/MOTION POLISH
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.4s; }
.reveal:nth-child(7) { transition-delay: 0.48s; }
.reveal:nth-child(8) { transition-delay: 0.56s; }
.reveal:nth-child(9) { transition-delay: 0.64s; }
.reveal:nth-child(10) { transition-delay: 0.72s; }
.reveal:nth-child(11) { transition-delay: 0.8s; }
.reveal:nth-child(12) { transition-delay: 0.88s; }

/* Hero slide content entrance */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide.active .slide-badge { animation: heroFadeUp 0.7s ease both; }
.slide.active .slide-title { animation: heroFadeUp 0.7s ease 0.1s both; }
.slide.active .slide-sub { animation: heroFadeUp 0.7s ease 0.2s both; }
.slide.active .slide-cta-group { animation: heroFadeUp 0.7s ease 0.3s both; }

/* Header gains depth once the page is scrolled */
.header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.99);
}

/* Logo subtle hover motion */
.brand-logo { transition: var(--transition); }
.brand-logo:hover { transform: scale(1.03); }

/* Nav link underline sweep */
.nav-link::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-orange);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover::before { width: 100%; }
.nav-link.active::before { width: 0; }

/* Stat card icon-like number pulse on hover */
.stat-card { cursor: default; }
.stat-number { transition: var(--transition); }
.stat-card:hover .stat-number { transform: scale(1.08); }

/* Pillar icon hover */
.pillar-icon { transition: var(--transition); }
.pillar-item:hover .pillar-icon {
    background: var(--color-orange);
    color: #FFFFFF;
    transform: rotate(-6deg) scale(1.08);
}

/* Service logo image gentle hover */
.service-card:hover .service-logo-img { transform: scale(1.12); }
.service-logo-img { transition: var(--transition); }

/* Filter buttons press feedback */
.filter-btn:active,
.btn:active,
.service-explore-btn:active { transform: scale(0.97); }

/* Case card image zoom on hover */
.case-image { transition: var(--transition); overflow: hidden; }
.case-card:hover .case-image { filter: brightness(1.06); }

/* Price card featured glow pulse */
@keyframes glowPulse {
    0%, 100% { box-shadow: var(--shadow-glow); }
    50% { box-shadow: 0 0 0 6px rgba(243, 112, 35, 0.12), var(--shadow-glow); }
}

.price-card.featured { animation: glowPulse 3.5s ease-in-out infinite; }

/* Social icons hover lift */
.social-links a { transition: var(--transition); }
.social-links a:hover { transform: translateY(-3px); }

/* Speed dial entrance */
@keyframes dialPop {
    from { opacity: 0; transform: scale(0.6); }
    to { opacity: 1; transform: scale(1); }
}

.speed-dial-btn { animation: dialPop 0.5s ease both; }
.dial-call { animation-delay: 0.1s; }
.dial-mail { animation-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
    .reveal, .slide.active .slide-badge, .slide.active .slide-title,
    .slide.active .slide-sub, .slide.active .slide-cta-group,
    .price-card.featured, .speed-dial-btn {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

.logo-img {
    height: 54px;
    width: auto;
    display: block;
}


/* ==========================================================================
   INFOSWARE PRIVATE LIMITED - DIGITAL MARKETING AGENCY DESIGN SYSTEM
   Theme: Modern Clean White & Black with Royal Blue (#4B84C4) & Vibrant Orange (#F37023)
   ========================================================================== */

:root {
    /* Logo Exact Brand Palette */
    --color-blue: #4B84C4;
    --color-blue-dark: #1D4ED8;
    --color-navy: #0F3870;
    --color-orange: #F37023;
    --color-orange-bright: #FF6B00;

    /* Theme Colors: Pure White, Deep Black/Navy & Brand-Tinted Sections (no plain gray) */
    --color-bg-white: #FFFFFF;
    --color-bg-alt: #EAF2FC;
    --color-bg-alt-orange: #FDF1E8;
    --color-bg-dark: #0B1220;
    --color-bg-card: #FFFFFF;
    --color-border: #CFE0F4;
    --color-border-hover: var(--color-blue);

    /* Text Color Tokens */
    --text-dark: #0B1220;
    --text-slate: #2B4A6B;
    --text-muted: #5B7896;
    --text-white: #FFFFFF;

    /* Functional Accents */
    --color-green: #25D366;
    --color-gold: #F59E0B;
    --color-pink: #EC4899;
    --color-purple: #8B5CF6;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Transitions & Shadows (lightened) */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 8px 20px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 16px 32px rgba(15, 23, 42, 0.08);
    --shadow-glow: 0 8px 24px rgba(243, 112, 35, 0.18);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-white);
    color: var(--text-slate);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Container & Layout Utilities */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 4.5rem 0;
    position: relative;
}

.section-alt {
    background-color: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.align-center { align-items: center; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }

/* Text & Gradient Utilities */
.gradient-text {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-blue { color: var(--color-blue); }
.text-orange { color: var(--color-orange); }
.text-green { color: var(--color-green); }
.text-gold { color: var(--color-gold); }
.text-dark { color: var(--text-dark); }

/* Section Headings */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(75, 132, 196, 0.08);
    border: 1px solid rgba(75, 132, 196, 0.18);
    border-radius: 50px;
    color: var(--color-blue);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.35rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.22;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 1.02rem;
    color: var(--text-muted);
    max-width: 680px;
    line-height: 1.75;
    font-weight: 400;
}

/* Button Component System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 1.6rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-bright) 100%);
    color: var(--text-white);
    box-shadow: 0 4px 12px rgba(243, 112, 35, 0.22);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(243, 112, 35, 0.3);
}

.btn-secondary {
    background: var(--color-bg-dark);
    color: var(--text-white);
}

.btn-secondary:hover {
    background: #1E293B;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.22);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
}

.btn-hero {
    padding: 0.68rem 1.35rem;
    font-size: 0.86rem;
    border-radius: 8px;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(4px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-block { width: 100%; }

.btn-text {
    background: none;
    border: none;
    color: var(--color-orange);
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.btn-text:hover {
    gap: 0.75rem;
    color: var(--color-blue);
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
    background: var(--color-bg-dark);
    color: #94A3B8;
    padding: 0.45rem 0;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge-pulse {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.3);
    padding: 0.1rem 0.5rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.35); }
    70% { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.contact-quick {
    display: flex;
    gap: 1rem;
}

.contact-quick a { color: #CBD5E1; }
.contact-quick a:hover { color: var(--color-orange); }

.currency-selector select {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.78rem;
    cursor: pointer;
    outline: none;
}

/* ==========================================================================
   HEADER / NAVIGATION BAR (SINGLE CLEAN LINE)
   ========================================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    padding: 0.6rem 0;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-menu { display: flex; align-items: center; }

.nav-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    white-space: nowrap;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-slate);
    white-space: nowrap;
    padding: 0.3rem 0;
    position: relative;
}

.nav-link:hover, .nav-link.active { color: var(--color-orange); }

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-orange);
    border-radius: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   HERO SLIDER CAROUSEL
   ========================================================================== */
.hero-slider-section {
    position: relative;
    overflow: hidden;
    background: var(--color-bg-dark);
    color: var(--text-white);
    min-height: 500px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.7) 60%, rgba(15, 23, 42, 0.35) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(243, 112, 35, 0.15);
    border: 1px solid rgba(243, 112, 35, 0.3);
    border-radius: 50px;
    color: var(--color-orange);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 2.9rem;
    font-weight: 700;
    line-height: 1.18;
    color: var(--text-white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.slide-sub {
    font-size: 1.05rem;
    color: #CBD5E1;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.slide-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--text-white);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--color-orange);
    border-color: var(--color-orange);
}

.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.dot-btn {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.dot-btn.active {
    background: var(--color-orange);
    width: 26px;
    border-radius: 10px;
}

/* Stats Counter Bar */
.stats-bar-section {
    background: var(--color-bg-white);
    border-bottom: 1px solid var(--color-border);
    padding: 2rem 0;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    padding: 0.75rem;
    border-right: 1px solid var(--color-border);
    transition: var(--transition);
}

.stat-card:hover { transform: translateY(-3px); }
.stat-card:last-child { border-right: none; }

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-orange);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.stat-sub {
    color: var(--text-muted);
    font-size: 0.78rem;
}

/* ==========================================================================
   MARQUEE TRUST BAR
   ========================================================================== */
.trust-marquee-section {
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem 0;
    overflow: hidden;
}

.marquee-title {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: flex;
    gap: 2.5rem;
    animation: marquee 28s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1.25rem;
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-slate);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.brand-pill:hover {
    border-color: var(--color-orange);
    transform: translateY(-2px);
}

/* ==========================================================================
   ABOUT US SECTION (WITH REAL PHOTO)
   ========================================================================== */
.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.pillar-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.pillar-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(75, 132, 196, 0.1);
    color: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pillar-item h4 {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 700;
}

.pillar-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Real Image Photo Showcase in About */
.about-visual-real {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.about-real-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.about-visual-real:hover .about-real-img {
    transform: scale(1.03);
}

.about-photo-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 0.9rem 1.15rem;
    color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-photo-badge strong { color: var(--color-orange); font-size: 1.05rem; }

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
    background: radial-gradient(ellipse at top, rgba(75, 132, 196, 0.06) 0%, rgba(255, 255, 255, 0) 55%),
                radial-gradient(ellipse at bottom right, rgba(243, 112, 35, 0.06) 0%, rgba(255, 255, 255, 0) 55%);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.service-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.75rem;
}

.filter-btn {
    padding: 0.5rem 1.15rem;
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 30px;
    color: var(--text-slate);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--color-orange);
    color: var(--text-white);
    border-color: var(--color-orange);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.25rem;
}

.service-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    position: relative;
    height: 320px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-orange) 100%);
    opacity: 0.5;
    transition: var(--transition);
    z-index: 4;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--color-orange);
    box-shadow: 0 20px 40px rgba(243, 112, 35, 0.18);
}

.service-card:hover::before {
    opacity: 1;
    height: 5px;
}

.service-face {
    position: absolute;
    inset: 0;
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    background: var(--color-bg-white);
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.35s ease, transform 0.4s ease;
    z-index: 2;
}

.service-card:hover .service-face {
    opacity: 0;
    transform: translateY(-14px) scale(0.97);
    pointer-events: none;
}

.service-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(75, 132, 196, 0.12) 0%, rgba(243, 112, 35, 0.12) 100%);
    color: var(--color-blue);
    font-size: 1.5rem;
    margin-bottom: 1.1rem;
    transition: var(--transition);
}

.service-card:hover .service-icon-circle {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-orange) 100%);
    color: #FFFFFF;
    transform: scale(1.1) rotate(-6deg);
    box-shadow: 0 8px 20px rgba(243, 112, 35, 0.3);
}

.service-face h3 {
    font-family: var(--font-heading);
    font-size: 1.14rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.55rem;
}

.service-subheading {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}

.service-details {
    position: absolute;
    inset: 0;
    padding: 1.4rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    background: var(--color-bg-white);
    opacity: 0;
    transform: translateY(14px) scale(0.98);
    transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
    pointer-events: none;
    overflow-y: auto;
    z-index: 3;
}

.service-card:hover .service-details {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.service-logo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.32rem 0.8rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-slate);
    margin-bottom: 0.75rem;
    width: fit-content;
}

.service-logo-badge i {
    color: var(--color-orange);
    font-size: 0.85rem;
}

.service-details h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.4rem;
}

.service-details p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 0.75rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.9rem;
}

.service-features li {
    font-size: 0.78rem;
    color: var(--text-slate);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.service-features li i { color: var(--color-orange); font-size: 0.72rem; }

.service-card-footer {
    margin-top: auto;
    padding-top: 0.8rem;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.service-explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.65rem 1rem;
    background: transparent;
    border: 1.5px solid var(--color-orange);
    border-radius: 8px;
    color: var(--color-orange);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.service-explore-btn i {
    transition: var(--transition);
}

.service-explore-btn:hover {
    background: var(--color-orange);
    color: var(--text-white);
    box-shadow: 0 6px 16px rgba(243, 112, 35, 0.28);
}

.service-explore-btn:hover i {
    transform: translateX(3px);
}

/* ==========================================================================
   ROI & ROAS CALCULATOR
   ========================================================================== */
.roi-wrapper {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 2.25rem;
    box-shadow: var(--shadow-md);
}

.calc-group { margin-bottom: 1.4rem; }

.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.92rem;
}

.calc-val-display {
    color: var(--color-orange);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
}

input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: var(--color-border);
    outline: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-orange);
    cursor: pointer;
}

.calc-select {
    width: 100%;
    padding: 0.7rem 1rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.92rem;
    outline: none;
}

.calc-result-box {
    background: var(--color-bg-dark);
    color: var(--text-white);
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: var(--shadow-lg);
}

.result-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.15rem;
}

.result-metric-main {
    text-align: center;
    background: #1E293B;
    border-radius: 12px;
    padding: 1.15rem;
    margin-bottom: 1.15rem;
}

.res-sub { font-size: 0.82rem; color: #94A3B8; }

.res-big {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-orange);
    margin-top: 0.3rem;
}

.result-grid-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
    margin-bottom: 1.15rem;
}

.res-mini-card {
    background: #1E293B;
    padding: 0.8rem;
    border-radius: 10px;
    text-align: center;
}

.mini-label { font-size: 0.7rem; color: #94A3B8; }
.mini-val { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; }

.calc-cta-box p {
    font-size: 0.75rem;
    color: #94A3B8;
    margin-bottom: 1rem;
    text-align: center;
}

/* ==========================================================================
   PORTFOLIO & CASE STUDIES
   ========================================================================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.25rem;
}

.case-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.case-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-blue);
    box-shadow: var(--shadow-lg);
}

.case-image {
    height: 180px;
    position: relative;
    overflow: hidden;
    background: var(--color-bg-alt);
}

.case-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.case-card:hover .case-image-img {
    transform: scale(1.06);
}

.bg-case-1 { background: linear-gradient(135deg, #4B84C4 0%, #1D4ED8 100%); }
.bg-case-2 { background: linear-gradient(135deg, #F37023 0%, #FF6B00 100%); }
.bg-case-3 { background: linear-gradient(135deg, #0F3870 0%, #4B84C4 100%); }

.flag-badge, .industry-badge {
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-white);
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(4px);
}

.case-body { padding: 1.35rem; }

.case-body h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.55rem;
    line-height: 1.3;
}

.case-body p {
    font-size: 0.84rem;
    color: var(--text-muted);
    margin-bottom: 1.15rem;
}

.case-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 0.9rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.78rem;
}

.case-stats strong {
    color: var(--color-orange);
    font-size: 0.95rem;
    display: block;
}

.case-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1.75rem;
}

/* ==========================================================================
   PRICING / PACKAGES SECTION
   ========================================================================== */
.pricing-section {
    background: var(--color-bg-alt-orange);
    border-top: 1px solid rgba(243, 112, 35, 0.2);
    border-bottom: 1px solid rgba(243, 112, 35, 0.2);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    align-items: start;
}

.price-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.price-card.featured {
    border: 2px solid var(--color-orange);
    box-shadow: var(--shadow-glow);
    transform: scale(1.02);
}

.price-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-orange);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(243, 112, 35, 0.35);
}

.price-card-header {
    text-align: center;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-border);
}

.price-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.price-tagline {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.9rem;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

.price-currency {
    font-size: 1.3rem;
    vertical-align: top;
    color: var(--color-orange);
}

.price-period {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.price-features li {
    font-size: 0.82rem;
    color: var(--text-slate);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
}

.price-features li i {
    color: var(--color-green);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

/* ==========================================================================
   CONTACT SECTION - DARK BRAND BAND (Black/Navy + White + Logo Accents)
   ========================================================================== */
.contact-section {
    background: var(--color-bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-section .section-tag {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    color: #9FC3EC;
}

.contact-section .section-title {
    color: #FFFFFF;
}

.contact-section .section-description {
    color: #A9B8CC;
}

.contact-section .section-description strong {
    color: #FFFFFF;
}

/* Equal-height columns: both sides stretch to match the taller one,
   and the info column distributes its content top/bottom so the
   contact cards align flush with the bottom of the form card. */
.contact-section .grid-2 {
    align-items: stretch;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.contact-form-col {
    display: flex;
    height: 100%;
}

.contact-form-col .form-card {
    width: 100%;
}

.contact-intro .section-title {
    font-size: 2.05rem;
}

.contact-intro .section-description {
    font-size: 0.95rem;
    line-height: 1.65;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
    margin-top: 1.25rem;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 0.85rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-orange);
    box-shadow: var(--shadow-md);
}

.contact-card .contact-icon { transition: var(--transition); }

.contact-card:hover .contact-icon {
    transform: scale(1.12) rotate(-4deg);
}

.contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.icon-blue { background: rgba(75, 132, 196, 0.12); color: var(--color-blue); }
.icon-green { background: rgba(37, 211, 102, 0.12); color: #16A34A; }
.icon-whatsapp { background: rgba(37, 211, 102, 0.12); color: #25D366; }
.icon-orange { background: rgba(243, 112, 35, 0.12); color: var(--color-orange); }

.contact-details { display: flex; flex-direction: column; gap: 0.1rem; }

.contact-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.contact-value {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-dark);
}

.contact-value-text {
    font-size: 0.8rem;
    color: var(--text-slate);
}

.copy-hint {
    font-size: 0.68rem;
    color: var(--color-orange);
}

.form-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.form-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.4rem;
}

.form-group {
    margin-bottom: 1.05rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input, .form-group textarea, .form-group select {
    padding: 0.75rem 1rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--color-orange);
    background: #FFFFFF;
    box-shadow: 0 0 6px rgba(243, 112, 35, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-slate);
    cursor: pointer;
}

.form-guarantee {
    font-size: 0.73rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.8rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--color-bg-dark);
    color: #94A3B8;
    padding-top: 3.5rem;
}

.footer-desc {
    font-size: 0.85rem;
    color: #94A3B8;
    margin: 1.2rem 0;
}

.social-links { display: flex; gap: 0.6rem; }

.social-links a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}

.social-links a:hover { background: var(--color-orange); }

.footer-links-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.15rem;
}

.footer-links-col ul li { margin-bottom: 0.6rem; }
.footer-links-col ul li a { font-size: 0.85rem; color: #94A3B8; }
.footer-links-col ul li a:hover { color: var(--color-orange); }

.footer-bottom {
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.4rem 0;
    font-size: 0.8rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-links { display: flex; gap: 1.25rem; }
.legal-links a:hover { color: #FFFFFF; }

/* ==========================================================================
   FLOATING VERTICAL CONTACT SPEED DIAL
   Stack: WhatsApp (Green Circle), Call (Navy Blue Circle), Mail (Orange Circle)
   ========================================================================== */
.floating-contact-stack {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.speed-dial-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    color: #FFFFFF;
    font-size: 1.55rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    text-decoration: none;
}

.speed-dial-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

/* Green WhatsApp Circle */
.dial-wa {
    background: #25D366;
}

/* Navy Blue Call Circle */
.dial-call {
    background: #0F3870;
}

/* Vibrant Orange Mail Circle */
.dial-mail {
    background: #F37023;
}

/* Tooltip Hint on Hover */
.speed-dial-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 66px;
    background: var(--color-bg-dark);
    color: #FFFFFF;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
    box-shadow: var(--shadow-md);
}

.speed-dial-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   CONTACT POPUP FORM MODAL
   ========================================================================== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(6px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-backdrop.active { display: flex; }

.modal-card {
    max-width: 600px;
    width: 100%;
    background: var(--color-bg-white);
    border-radius: 18px;
    padding: 2rem;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;
    top: 1.15rem;
    right: 1.15rem;
    background: var(--color-bg-alt);
    border: none;
    color: var(--text-dark);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

.success-icon { font-size: 3.25rem; margin-bottom: 1rem; }

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
    .slide-title { font-size: 2.3rem; }
    .services-grid, .portfolio-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .price-card.featured { transform: none; }
}

@media (max-width: 768px) {
    .top-bar-content { flex-direction: column; gap: 0.4rem; text-align: center; }
    .slide-title { font-size: 1.85rem; }
    .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-card { border-right: none; border-bottom: 1px solid var(--color-border); }
    .grid-2, .services-grid, .portfolio-grid, .pricing-grid, .grid-4 { grid-template-columns: 1fr; }

    /* Touch devices: skip the hover crossfade, show full card details in normal flow */
    .service-card { height: auto; cursor: default; }
    .service-face { position: relative; inset: auto; }
    .service-face .service-card-footer { display: none; }
    .service-details {
        position: relative;
        inset: auto;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        padding: 0 1.5rem 1.5rem;
    }

    
    .nav-menu {
        position: fixed;
        top: 65px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 65px);
        background: var(--color-bg-white);
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active { left: 0; }
    .nav-list { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
    .mobile-toggle { display: block; }
    .form-row, .checkbox-grid { grid-template-columns: 1fr; }
    .footer-bottom-content { flex-direction: column; gap: 1rem; text-align: center; }
    
    .floating-contact-stack { right: 15px; bottom: 15px; }
    .speed-dial-btn { width: 48px; height: 48px; font-size: 1.35rem; }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS & EXTRA HOVER/MOTION POLISH
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.4s; }
.reveal:nth-child(7) { transition-delay: 0.48s; }
.reveal:nth-child(8) { transition-delay: 0.56s; }
.reveal:nth-child(9) { transition-delay: 0.64s; }
.reveal:nth-child(10) { transition-delay: 0.72s; }
.reveal:nth-child(11) { transition-delay: 0.8s; }
.reveal:nth-child(12) { transition-delay: 0.88s; }

/* Hero slide content entrance */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide.active .slide-badge { animation: heroFadeUp 0.7s ease both; }
.slide.active .slide-title { animation: heroFadeUp 0.7s ease 0.1s both; }
.slide.active .slide-sub { animation: heroFadeUp 0.7s ease 0.2s both; }
.slide.active .slide-cta-group { animation: heroFadeUp 0.7s ease 0.3s both; }

/* Header gains depth once the page is scrolled */
.header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.99);
}

/* Logo subtle hover motion */
.brand-logo { transition: var(--transition); }
.brand-logo:hover { transform: scale(1.03); }

/* Nav link underline sweep */
.nav-link::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-orange);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover::before { width: 100%; }
.nav-link.active::before { width: 0; }

/* Stat card icon-like number pulse on hover */
.stat-card { cursor: default; }
.stat-number { transition: var(--transition); }
.stat-card:hover .stat-number { transform: scale(1.08); }

/* Pillar icon hover */
.pillar-icon { transition: var(--transition); }
.pillar-item:hover .pillar-icon {
    background: var(--color-orange);
    color: #FFFFFF;
    transform: rotate(-6deg) scale(1.08);
}

/* Service logo image gentle hover */
.service-card:hover .service-logo-img { transform: scale(1.12); }
.service-logo-img { transition: var(--transition); }

/* Filter buttons press feedback */
.filter-btn:active,
.btn:active,
.service-explore-btn:active { transform: scale(0.97); }

/* Case card image zoom on hover */
.case-image { transition: var(--transition); overflow: hidden; }
.case-card:hover .case-image { filter: brightness(1.06); }

/* Price card featured glow pulse */
@keyframes glowPulse {
    0%, 100% { box-shadow: var(--shadow-glow); }
    50% { box-shadow: 0 0 0 6px rgba(243, 112, 35, 0.12), var(--shadow-glow); }
}

.price-card.featured { animation: glowPulse 3.5s ease-in-out infinite; }

/* Social icons hover lift */
.social-links a { transition: var(--transition); }
.social-links a:hover { transform: translateY(-3px); }

/* Speed dial entrance */
@keyframes dialPop {
    from { opacity: 0; transform: scale(0.6); }
    to { opacity: 1; transform: scale(1); }
}

.speed-dial-btn { animation: dialPop 0.5s ease both; }
.dial-call { animation-delay: 0.1s; }
.dial-mail { animation-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
    .reveal, .slide.active .slide-badge, .slide.active .slide-title,
    .slide.active .slide-sub, .slide.active .slide-cta-group,
    .price-card.featured, .speed-dial-btn {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ==========================================================================
   THANK YOU PAGE
   ========================================================================== */
.thankyou-section {
    min-height: calc(100vh - 130px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-dark);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.thankyou-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(75, 132, 196, 0.18) 0%, rgba(11, 18, 32, 0) 45%),
                radial-gradient(circle at 80% 80%, rgba(243, 112, 35, 0.16) 0%, rgba(11, 18, 32, 0) 45%);
}

.thankyou-card {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
    background: #10192E;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.thankyou-card .section-tag {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    color: #9FC3EC;
}

.thankyou-title {
    color: #FFFFFF;
}

.thankyou-desc {
    color: #A9B8CC;
}

.thankyou-desc strong {
    color: #FFFFFF;
}

.thankyou-meta {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.thankyou-meta-item {
    color: #CBD5E1;
}

.thankyou-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
    font-size: 2.75rem;
    animation: thankyouPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes thankyouPop {
    0% { opacity: 0; transform: scale(0.4) rotate(-15deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

.thankyou-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin: 0.75rem 0 1rem;
    letter-spacing: -0.5px;
}

.thankyou-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 540px;
    margin: 0 auto 2rem;
}

.thankyou-cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.25rem;
}

.thankyou-redirect-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: -1.25rem;
    margin-bottom: 2rem;
}

.thankyou-redirect-note span {
    color: var(--color-orange);
    font-weight: 700;
}

.thankyou-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.thankyou-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-slate);
}

@media (max-width: 768px) {
    .thankyou-card { padding: 2.25rem 1.5rem; }
    .thankyou-title { font-size: 1.6rem; }
    .thankyou-cta-group { flex-direction: column; }
    .thankyou-meta { flex-direction: column; align-items: center; gap: 0.75rem; }
}