/* ============================================
   Spark Network Solutions - Main Stylesheet
   Color Palette: Blue (#04345b), Gold (#ffd697), White (#ffffff), Black (#000000)
   ============================================ */

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

:root {
    --primary-blue: #04345b;
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f7fafc;
    --gray-medium: #e2e8f0;
    --gray-dark: #4a5568;
    --text-dark: #2d3748;
    --text-light: #718096;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.15);
    --gold: #ffd697;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

/* ============================================
   Sticky CTA Bar
   ============================================ */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-blue);
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 1000;
    box-shadow: 0 -2px 10px var(--shadow-lg);
}

.sticky-cta-bar .cta-btn {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    max-width: 150px;
    justify-content: center;
}

.sticky-cta-bar .call-btn {
    background: var(--white);
    color: var(--primary-blue);
}

.sticky-cta-bar .whatsapp-btn {
    background: #25d366;
}

.sticky-cta-bar .quote-btn {
    background: var(--white);
    color: var(--primary-blue);
}

.sticky-cta-bar .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow);
}

@media (max-width: 768px) {
    .sticky-cta-bar {
        padding: 10px 15px;
    }
    
    .sticky-cta-bar .cta-btn {
        font-size: 12px;
        padding: 8px 12px;
        max-width: 120px;
    }
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    background: #04345b;
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 0.8;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #ffd697;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px;
        max-width: 150px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .footer-logo-img {
        height: 40px;
        max-width: 150px;
    }
    
    .footer-logo-text {
        font-size: 18px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 20px 0;
        gap: 20px;
    }
    
    .nav-menu a {
        color: var(--text-dark);
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        color: #04345b;
    }
    
    .nav-menu.active {
        left: 0;
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    min-height: 600px;
}

.hero-content-left {
    background: var(--primary-blue);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-badge {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 0.6s ease;
}

.badge-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--primary-blue);
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease;
    display: flex;
    flex-direction: column;
}

.hero-title .title-line {
    display: block;
    text-transform: uppercase;
    color: var(--white);
}

.hero-title .title-line.highlight {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.7;
    animation: fadeInUp 1s ease;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease;
}

.hero-content-right {
    background: rgba(0, 0, 0, 0.3);
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

@media (max-width: 968px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-content-left {
        padding: 60px 40px;
    }
    
    .hero-content-right {
        padding: 40px 20px;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
    }
    
    .hero-wrapper {
        min-height: auto;
    }
    
    .hero-content-left {
        padding: 50px 30px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-title .title-line {
        font-size: inherit;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .badge-line {
        width: 30px;
    }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.btn-primary:hover {
    background: var(--primary-blue);
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 52, 91, 0.4);
}

.btn-quote {
    background: var(--white);
    color: var(--primary-blue);
    border: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-quote:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
}

.btn-call {
    background: var(--white);
    color: var(--primary-blue);
    border: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-call:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
}

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

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

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    border: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

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

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

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ============================================
   Services Slideshow (in Hero)
   ============================================ */
.services-slideshow-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    min-height: 450px;
}

.services-slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-slide {
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.6s;
    pointer-events: none;
    padding: 30px 20px;
    will-change: opacity, transform;
}

.service-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    z-index: 2;
}

.slide-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(4, 52, 91, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.service-slide.active .slide-image {
    border-color: var(--primary-blue);
    transform: scale(1.08);
    box-shadow: 0 12px 35px rgba(4, 52, 91, 0.5);
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-slide.active .slide-image img {
    transform: scale(1.05);
}

.service-slide h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    transition: color 0.4s ease;
    opacity: 0;
    transform: translateY(10px);
}

.service-slide.active h4 {
    opacity: 1;
    transform: translateY(0);
    color: var(--white);
    transition-delay: 0.2s;
}

.service-slide p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 450px;
    margin: 0 auto;
    font-weight: 400;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.service-slide.active p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

/* Navigation Arrows */
.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20;
    backdrop-filter: blur(10px);
    opacity: 0.7;
}

.slideshow-nav:hover {
    background: rgba(4, 52, 91, 0.3);
    border-color: var(--primary-blue);
    transform: translateY(-50%) scale(1.15);
    opacity: 1;
}

.slideshow-nav:active {
    transform: translateY(-50%) scale(1.05);
}

.slideshow-nav.prev {
    left: 15px;
}

.slideshow-nav.next {
    right: 15px;
}

.slideshow-nav i {
    color: var(--white);
    font-size: 20px;
    transition: color 0.3s ease;
}

.slideshow-nav:hover i {
    color: var(--gold);
}

.slideshow-dots {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 15;
}

.dots-row {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.slideshow-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    flex-shrink: 0;
}

.slideshow-dots .dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.slideshow-dots .dot.active {
    background: var(--primary-blue);
    width: 24px;
    height: 8px;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(4, 52, 91, 0.6);
}

/* ============================================
   Enterprise Solutions Section
   ============================================ */
.enterprise-solutions-section {
    position: relative;
    padding: 100px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.enterprise-solutions-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.8s ease;
    opacity: 0.4;
    z-index: 1;
}

.enterprise-solutions-bg.active {
    opacity: 0.6;
}

.enterprise-solutions-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 36, 57, 0.9) 0%, rgba(26, 54, 93, 0.85) 100%);
    z-index: 2;
}

.enterprise-solutions-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.solution-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: rgba(4, 52, 91, 0.2);
    border: 3px solid var(--primary-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.solution-icon i {
    font-size: 36px;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.solution-header {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.solution-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    transition: opacity 0.4s ease;
}

.solution-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    transition: opacity 0.4s ease;
}

@media (max-width: 968px) {
    .slideshow-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .enterprise-solutions-section {
        padding: 60px 0;
        min-height: 400px;
    }
    
    .solution-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .solution-icon i {
        font-size: 28px;
    }
    
    .solution-title {
        font-size: 32px;
    }
    
    .solution-description {
        font-size: 16px;
    }
    
    .services-slideshow-wrapper {
        padding: 15px;
        min-height: 380px;
    }
    
    .services-slideshow-container {
        min-height: 320px;
    }
    
    .service-slide {
        padding: 20px 15px;
    }
    
    .slide-image {
        width: 110px;
        height: 110px;
        margin-bottom: 18px;
    }
    
    .service-slide h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .service-slide p {
        font-size: 13px;
        max-width: 100%;
    }
    
    .slideshow-nav {
        width: 40px;
        height: 40px;
        opacity: 0.8;
    }
    
    .slideshow-nav.prev {
        left: 10px;
    }
    
    .slideshow-nav.next {
        right: 10px;
    }
    
    .slideshow-nav i {
        font-size: 16px;
    }
    
    .slideshow-dots {
        top: 12px;
        right: 12px;
        gap: 6px;
    }
    
    .dots-row {
        gap: 6px;
    }
    
    .slideshow-dots .dot {
        width: 6px;
        height: 6px;
    }
    
    .slideshow-dots .dot.active {
        width: 20px;
        height: 6px;
    }
}

/* ============================================
   Value Bar
   ============================================ */
.value-bar {
    background: var(--gray-light);
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-medium);
}

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

.value-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 32px;
    color: var(--primary-blue);
    min-width: 40px;
}

.value-item span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

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

/* ============================================
   Sections
   ============================================ */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 50px;
}

/* ============================================
   Services Overview
   ============================================ */
.services-overview {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-medium);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px var(--shadow-lg);
    border-color: var(--primary-blue);
}

.service-image {
    width: 100%;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-light);
    transition: all 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
    box-shadow: 0 4px 15px var(--shadow-lg);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
    background: var(--white);
    padding: 10px;
}

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

.service-card h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 10px;
}

/* ============================================
   Why Choose Us
   ============================================ */
.why-choose-us {
    background: var(--gray-light);
}

.stats-highlight {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 50px auto 60px;
    max-width: 1200px;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--primary-blue);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
    line-height: 1;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.stat-label {
    font-size: 16px;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
}

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

.feature-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 32px;
    color: var(--white);
}

.feature-item h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   How We Work
   ============================================ */
.how-we-work {
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 30px 20px;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 20px auto 20px;
    background: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background: var(--primary-blue);
    color: var(--white);
}

.step-icon i {
    font-size: 36px;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.process-step:hover .step-icon i {
    color: var(--white);
}

.process-step h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   Industries Served
   ============================================ */
.industries-served {
    background: var(--gray-light);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.industry-card {
    background: var(--white);
    padding: 0;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-lg);
    border: 2px solid var(--primary-blue);
}

.industry-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
    background: var(--gray-light);
    padding: 10px;
}

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

.industry-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    padding: 20px;
    margin: 0;
}

/* ============================================
   Trust Indicators
   ============================================ */
.trust-indicators {
    background: var(--primary-blue);
    color: var(--white);
    padding: 60px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.trust-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.trust-label {
    font-size: 18px;
    opacity: 0.9;
}

/* ============================================
   Brand Partners
   ============================================ */
.brand-partners {
    background: var(--white);
    padding: 60px 0;
    border-top: 1px solid var(--gray-medium);
    border-bottom: 1px solid var(--gray-medium);
}

.partners-title {
    text-align: center;
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 40px;
    font-weight: 600;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.partner-logo {
    text-align: center;
    padding: 20px;
    background: var(--gray-light);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 18px;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-5px);
}

/* ============================================
   Partners Section (About Page)
   ============================================ */
.partners-section {
    background: var(--gray-light);
    padding: 80px 0;
}

.partners-grid-detailed {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: auto;
}

.partner-item {
    text-align: center;
    padding: 25px 30px;
    background: var(--white);
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex: 0 0 auto;
    white-space: nowrap;
    min-width: fit-content;
}

.partner-item:hover {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ============================================
   Our Clients
   ============================================ */
.our-clients {
    background: var(--gray-light);
    padding: 80px 0;
}

.clients-slider-wrapper {
    overflow: hidden;
    position: relative;
    padding: 60px 0;
}

.clients-slider {
    display: flex;
    gap: 50px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.clients-slider:hover {
    animation-play-state: paused;
}

.client-logo {
    min-width: 280px;
    height: 160px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px var(--shadow);
    padding: 30px;
    overflow: hidden;
}

.client-logo img {
    width: 100%;
    height: 100%;
    max-width: 250px;
    max-height: 120px;
    object-fit: contain;
    object-position: center;
}

.clients-grid-static {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.client-logo-static {
    min-height: 160px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px var(--shadow);
    padding: 30px;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.client-logo-static img {
    width: 100%;
    height: 100%;
    max-width: 250px;
    max-height: 120px;
    object-fit: contain;
    object-position: center;
}

.client-logo-static:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px var(--shadow-lg);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   Location SEO Section
   ============================================ */
.location-seo {
    background: var(--white);
    padding: 60px 0;
    border-top: 1px solid var(--gray-medium);
}

.location-seo p {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px;
}

.location-seo strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* ============================================
   Page Header
   ============================================ */
.page-header {
    background: var(--primary-blue);
    color: var(--white);
    padding: 100px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-header p {
        font-size: 18px;
    }
}

/* ============================================
   Services Detail Page
   ============================================ */
.services-detail {
    padding: 60px 0;
}

.service-detail-card {
    background: var(--white);
    border: 1px solid var(--gray-medium);
    border-radius: 10px;
    padding: 50px 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    box-shadow: 0 8px 25px var(--shadow-lg);
    border-color: var(--primary-blue);
}

.service-detail-image {
    width: 100%;
    max-width: 400px;
    height: 300px;
    margin: 0 auto 30px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-light);
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
}

.service-detail-card:hover .service-detail-image {
    box-shadow: 0 8px 25px var(--shadow-lg);
    transform: translateY(-5px);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background: var(--white);
    padding: 15px;
}

.service-detail-card h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.service-description {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.info-item h4 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item h4 i {
    color: var(--primary-blue);
}

.info-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.info-item ul {
    list-style: none;
    padding-left: 0;
}

.info-item ul li {
    color: var(--text-light);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.info-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
}

@media (max-width: 768px) {
    .service-detail-card {
        padding: 30px 20px;
    }
    
    .service-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   About Page
   ============================================ */
.about-content {
    padding: 60px 0;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-section {
    margin-bottom: 0;
}

.about-section h2 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-weight: 700;
}

.about-section p {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-intro {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 25px;
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: var(--primary-blue);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.value-icon i {
    font-size: 32px;
    color: var(--white);
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 0;
}

.core-values-section {
    margin-top: 40px;
}

.core-values-section h3 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 35px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.core-values-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.core-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 20px;
}

.core-value-item {
    background: var(--white);
    border: 1px solid var(--gray-medium);
    border-left: 4px solid var(--primary-blue);
    border-radius: 8px;
    padding: 25px 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.core-value-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(4, 52, 91, 0.15);
    border-left-color: var(--gold);
}

.value-bullet {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
    line-height: 1;
}

.value-content {
    flex: 1;
}

.value-content strong {
    display: block;
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.value-content p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.why-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-lg);
}

.why-item i {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.why-item h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.why-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.md-message {
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--gray-medium) 100%);
    padding: 60px 50px;
    border-radius: 15px;
    margin-top: 0;
    border-left: 5px solid var(--primary-blue);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
    position: sticky;
    top: 100px;
}

.md-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.md-avatar {
    width: 280px;
    height: 280px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 4px solid var(--white);
    background: var(--white);
}

.md-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.md-info {
    margin-bottom: 30px;
}

.md-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.md-title {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 500;
}

.md-quote {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-blue);
    line-height: 1.6;
    margin: 30px 0;
    padding: 0;
    border: none;
    font-style: italic;
    quotes: '"' '"';
}

.md-quote::before {
    content: open-quote;
    font-size: 40px;
    color: var(--gold);
    line-height: 0;
    vertical-align: -0.4em;
    margin-right: 5px;
}

.md-quote::after {
    content: close-quote;
    font-size: 40px;
    color: var(--gold);
    line-height: 0;
    vertical-align: -0.4em;
    margin-left: 5px;
}

.md-content p {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: left;
}

/* ============================================
   Industries Detail Page
   ============================================ */
.industries-detail {
    padding: 60px 0;
}

.industry-detail-card {
    background: var(--white);
    border: 1px solid var(--gray-medium);
    border-radius: 10px;
    padding: 50px 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.industry-detail-card:hover {
    box-shadow: 0 8px 25px var(--shadow-lg);
    border-color: var(--primary-blue);
}

.industry-image-large {
    width: 100%;
    max-width: 500px;
    height: 350px;
    margin: 0 auto 30px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-light);
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
}

.industry-detail-card:hover .industry-image-large {
    box-shadow: 0 8px 25px var(--shadow-lg);
    transform: translateY(-5px);
}

.industry-image-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
    background: var(--gray-light);
    padding: 15px;
}

.industry-detail-card:hover .industry-image-large img {
    transform: scale(1.05);
}

.industry-detail-card h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.industry-description {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: left;
}

.industry-solutions {
    text-align: left;
    margin-bottom: 30px;
}

.industry-solutions h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.industry-solutions ul {
    list-style: none;
    padding-left: 0;
}

.industry-solutions ul li {
    color: var(--text-light);
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.8;
    font-size: 16px;
}

.industry-solutions ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 20px;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-section {
    padding: 60px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.contact-info-section p,
.contact-form-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 40px;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: 20px;
}

.contact-text {
    flex: 1;
    min-width: 0;
}

.contact-text h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 8px;
    line-height: 1.4;
}

.contact-text p {
    color: var(--text-dark);
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.6;
}

.contact-text a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.business-hours {
    background: var(--gray-light);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.business-hours h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.business-hours p {
    color: var(--text-dark);
    margin-bottom: 0;
    font-size: 16px;
}

.contact-form {
    background: var(--gray-light);
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 16px;
}

.required {
    color: #e53e3e;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray-medium);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background: #c6f6d5;
    color: #22543d;
    display: block;
}

.form-message.error {
    background: #fed7d7;
    color: #742a2a;
    display: block;
}

.map-section {
    padding: 60px 0;
    background: var(--gray-light);
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
    margin-bottom: 20px;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}

.map-note {
    text-align: center;
    color: var(--text-dark);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.map-note i {
    color: var(--primary-blue);
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .md-message {
        position: static;
    }
    
    .core-value-item {
        padding: 20px 25px;
        gap: 15px;
    }
    
    .value-content strong {
        font-size: 18px;
    }
    
    .value-content p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .core-values-section h3 {
        font-size: 24px;
    }
    
    .core-value-item {
        padding: 18px 20px;
        flex-direction: column;
        gap: 12px;
    }
    
    .value-bullet {
        font-size: 20px;
    }
    
    .value-content strong {
        font-size: 17px;
        margin-bottom: 8px;
    }
    
    .value-content p {
        font-size: 14px;
    }
    
    .partners-grid-detailed {
        gap: 15px;
        padding: 0 10px;
    }
    
    .partner-item {
        padding: 20px 20px;
        font-size: 16px;
    }
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer-logo-text {
    color: #ffd697 !important;
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section h3.footer-logo-text {
    color: #ffd697;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-note {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-note i {
    color: var(--white);
    margin-top: 3px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-info li i {
    color: var(--white);
    margin-top: 2px;
    min-width: 20px;
    width: 20px;
    flex-shrink: 0;
    font-size: 16px;
    text-align: center;
}

.contact-info li a {
    flex: 1;
    word-wrap: break-word;
}

.contact-info li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info li a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ============================================
   WhatsApp Float Button
   ============================================ */
.call-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 160px;
    right: 20px;
    background: var(--white);
    color: var(--primary-blue);
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-blue);
}

.call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: var(--primary-blue);
    color: var(--white);
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 90px;
    right: 20px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 768px) {
    .call-float {
        width: 50px;
        height: 50px;
        font-size: 22px;
        bottom: 140px;
        right: 15px;
        z-index: 999;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 80px;
        right: 15px;
        z-index: 999;
    }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade in on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .services-grid,
    .features-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .stats-highlight {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 40px auto 50px;
        padding: 0 15px;
        max-width: 100%;
    }
    
    @media (max-width: 480px) {
        .stats-highlight {
            grid-template-columns: 1fr;
        }
    }
    
    .stat-item {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stat-label {
        font-size: 14px;
    }
}
