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

/* H1 Styling */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #55AFD5;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: transparent;
}

/* Global Background */
.global-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.global-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #55AFD5, transparent),
        radial-gradient(2px 2px at 40px 70px, #7bc5e0, transparent),
        radial-gradient(1px 1px at 90px 40px, #a0d5e8, transparent),
        radial-gradient(1px 1px at 130px 80px, #55AFD5, transparent),
        radial-gradient(2px 2px at 160px 30px, #7bc5e0, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: float 40s ease-in-out infinite;
}

.global-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(123, 197, 224, 0.1) 0%, 
        transparent 25%, 
        transparent 75%, 
        rgba(85, 175, 213, 0.1) 100%);
}

/* Prevent logo flickering - disable all animations and transitions */
header img, footer img, .logo, .site-logo, .nav-logo img, .footer-logo img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
}

/* Brute-force CSS override to stop any template toggling */
.logo, .site-logo, header .logo, footer .logo {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    animation: none !important;
}

header .logo:not(:first-of-type),
footer .logo:not(:first-of-type) {
    display: none !important;
}

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

/* Solar panel texture background (applied to all non-blog pages) */
body.solar-background .global-background {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #0d1b2a 100%);
}

body.solar-background .global-particles {
    background-image: 
        /* Main grid lines - horizontal (solar panel rows) */
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 149px,
            rgba(85, 175, 213, 0.06) 149px,
            rgba(85, 175, 213, 0.06) 150px
        ),
        /* Main grid lines - vertical (solar panel columns) */
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 149px,
            rgba(85, 175, 213, 0.06) 149px,
            rgba(85, 175, 213, 0.06) 150px
        ),
        /* Subtle diagonal texture for depth */
        repeating-linear-gradient(
            135deg,
            transparent,
            transparent 299px,
            rgba(123, 197, 224, 0.02) 299px,
            rgba(123, 197, 224, 0.02) 300px
        ),
        /* Cell divisions - very subtle inner grid */
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 74px,
            rgba(30, 58, 138, 0.03) 74px,
            rgba(30, 58, 138, 0.03) 75px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 74px,
            rgba(30, 58, 138, 0.03) 74px,
            rgba(30, 58, 138, 0.03) 75px
        );
    background-size: 
        150px 150px,
        150px 150px,
        300px 300px,
        75px 75px,
        75px 75px;
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
    animation: none;
}

body.solar-background .global-gradient {
    background: linear-gradient(
        45deg,
        rgba(13, 27, 42, 0.98) 0%,
        transparent 30%,
        transparent 70%,
        rgba(27, 38, 59, 0.98) 100%
    ),
    /* Very subtle panel cell highlights for texture */
    repeating-linear-gradient(
        0deg,
        transparent,
        transparent 149px,
        rgba(85, 175, 213, 0.015) 149px,
        rgba(85, 175, 213, 0.015) 150px
    ),
    repeating-linear-gradient(
        90deg,
        transparent,
        transparent 149px,
        rgba(85, 175, 213, 0.015) 149px,
        rgba(85, 175, 213, 0.015) 150px
    );
}

/* Disable all individual section gradients */
.services-gradient, .about-gradient, .reviews-gradient, .why-choose-gradient, .contact-gradient, .service-areas-gradient {
    display: none !important;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #0f172a;
}

/* Font display optimization */
@font-face {
    font-family: 'Inter';
    font-display: swap;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    background: transparent;
}

/* Water Drop Animation */
@keyframes waterDrop {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 0.8;
    }
}

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

/* Water Drop Styles */
.water-drop {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #55AFD5, #3a8fb8);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    animation: waterDrop 3s ease-in-out infinite;
}

.water-drop::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 5px;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #55AFD5, #3a8fb8);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.water-drop-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #55AFD5, #3a8fb8, #7bc5e0);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    animation: waterDrop 4s ease-in-out infinite, float 6s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(85, 175, 213, 0.3);
}

.water-drop-large::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #55AFD5, #3a8fb8);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    animation: waterDrop 3s ease-in-out infinite reverse;
}

.water-drop-about {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #55AFD5, #3a8fb8, #7bc5e0, #a0d5e8);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    animation: waterDrop 5s ease-in-out infinite, float 8s ease-in-out infinite;
    box-shadow: 0 15px 40px rgba(85, 175, 213, 0.2);
}

.water-drop-about::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #55AFD5, #3a8fb8);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    animation: waterDrop 4s ease-in-out infinite reverse;
}

/* Navigation */
.navbar {
    position: relative;
    top: 0;
    width: 100%;
    background: rgba(2, 22, 38, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 1px rgba(85, 175, 213, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    padding-left: 10px;
}

.nav-logo img {
    max-height: 45px;
    width: auto;
    height: auto;
    transition: all 0.3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-logo:hover {
    color: #55AFD5;
    /* transform: scale(1.05); - Disabled to prevent logo flickering */
}

.logo-icon {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 16px;
}

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

.nav-link {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #55AFD5;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #55AFD5;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, #70BEDD, #5A9FC5);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(112, 190, 221, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(112, 190, 221, 0.5);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.nav-dropdown .nav-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(15px);
    min-width: 280px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    border: 1px solid rgba(85, 175, 213, 0.2);
    z-index: 1001;
    top: 100%;
    left: 0;
    padding: 15px 0;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.nav-dropdown:hover .dropdown-content,
.nav-dropdown.hover-active .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Create a bridge area to prevent dropdown from closing when moving mouse */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
    pointer-events: auto;
    z-index: 1000;
}

/* Add a small delay before hiding the dropdown */
.nav-dropdown .dropdown-content {
    transition-delay: 0.1s;
}

.nav-dropdown:hover .dropdown-content,
.nav-dropdown.hover-active .dropdown-content {
    transition-delay: 0s;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(85, 175, 213, 0.1), transparent);
    transition: left 0.5s ease;
}

.dropdown-link:hover::before {
    left: 100%;
}

.dropdown-link:hover {
    background: rgba(85, 175, 213, 0.15);
    color: #55AFD5;
    border-left-color: #55AFD5;
    padding-left: 25px;
    transform: translateX(5px);
}

.dropdown-link i {
    font-size: 16px;
    color: #55AFD5;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.dropdown-link:hover i {
    color: #7bc5e0;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .nav-dropdown {
        position: static;
        width: 100%;
    }
    
    .nav-dropdown .nav-link {
        justify-content: space-between;
        width: 100%;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-dropdown .nav-link i {
        transform: rotate(0deg);
        transition: transform 0.3s ease;
    }
    
    .nav-dropdown.active .nav-link i {
        transform: rotate(180deg);
    }
    
    .dropdown-content {
        position: static;
        display: none;
        background: rgba(30, 41, 59, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: none;
        border-radius: 0;
        border: none;
        padding: 0;
        margin-top: 0;
        opacity: 1;
        transform: none;
        transition: none;
        width: 100%;
        min-width: auto;
    }
    
    .nav-dropdown.active .dropdown-content {
        display: block !important;
        opacity: 1;
        transform: translateY(0);
        position: static;
        background: rgba(15, 23, 42, 0.9);
        border: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        width: 100%;
        min-width: auto;
    }
    
    .dropdown-link {
        padding: 12px 40px;
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 14px;
        gap: 15px;
        display: flex;
        align-items: center;
        width: 100%;
        color: #e2e8f0;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .dropdown-link:hover {
        background: rgba(85, 175, 213, 0.1);
        color: #55AFD5;
        padding-left: 45px;
        border-left: none;
        border-bottom-color: #55AFD5;
    }
    
    .dropdown-link i {
        font-size: 14px;
    }
}

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

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: transparent;
    padding: 80px 0 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

.hero-background picture,
.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-particles {
    display: none;
}

.hero-gradient {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}


.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}


.hero-title {
    margin-bottom: 20px;
}

.hero-title-main {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-sub {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: #55AFD5;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: #e2e8f0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

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

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #55AFD5;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 18px 35px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #55AFD5, #3a8fb8);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(85, 175, 213, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(85, 175, 213, 0.5);
}

.btn-pulse {
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { 
        box-shadow: 0 8px 25px rgba(85, 175, 213, 0.3);
        transform: translateZ(0);
    }
    50% { 
        box-shadow: 0 8px 25px rgba(85, 175, 213, 0.6);
        transform: translateZ(0);
    }
}

/* Force GPU acceleration for animations */
.btn-primary:hover {
    will-change: transform;
    transform: translateZ(0);
}

.btn-secondary {
    background: transparent;
    color: #55AFD5;
    border: 2px solid #55AFD5;
}

.btn-secondary:hover {
    background: #55AFD5;
    color: #ffffff;
    transform: translateY(-3px);
}

.hero-guarantee {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.hero-guarantee i {
    color: #10b981;
    margin-top: 1px;
    flex-shrink: 0;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.solar-panel-illustration {
    position: relative;
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.panel-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.solar-panel {
    flex: 1;
    height: 60px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 8px;
    border: 2px solid #475569;
    position: relative;
    overflow: hidden;
}

.solar-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(85, 175, 213, 0.1) 50%, 
        transparent 70%);
    animation: none;
}

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

.cleaning-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(85, 175, 213, 0.3), 
        transparent);
    animation: none;
}

@keyframes cleaningSweep {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}


/* Section Headers */
.section-header {
    text-align: center;
    margin: 60px 0 40px 0;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.services-overview .section-header h2 {
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-overview .section-header p {
    color: #e2e8f0;
}

.section-header p {
    font-size: 16px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services-overview {
    padding: 60px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    margin: 0;
    border: none;
}

.services-background {
    display: none;
}

.services-particles {
    display: none;
}

.services-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(123, 197, 224, 0.1) 0%, 
        transparent 25%, 
        transparent 75%, 
        rgba(85, 175, 213, 0.1) 100%);
    animation: servicesGradientShift 12s ease-in-out infinite;
}

@keyframes servicesParticles {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-200px); }
}

@keyframes servicesGradientShift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: badgePulse 2s ease-in-out infinite;
}

.section-header h2 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: #e2e8f0;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 8px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 420px;
    width: 100%;
}

.service-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(85, 175, 213, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.service-card:hover .service-glow {
    opacity: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #55AFD5, #3a8fb8, #7bc5e0);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.service-card[data-service="solar"]:hover {
    box-shadow: 0 25px 60px rgba(85, 175, 213, 0.3);
}

.service-card[data-service="bird"]:hover {
    box-shadow: 0 25px 60px rgba(16, 185, 129, 0.3);
}

.service-card[data-service="pressure"]:hover {
    box-shadow: 0 25px 60px rgba(245, 158, 11, 0.3);
}

.service-card[data-service="gutter"]:hover {
    box-shadow: 0 25px 60px rgba(139, 92, 246, 0.3);
}

.service-card[data-service="window"]:hover {
    box-shadow: 0 25px 60px rgba(6, 182, 212, 0.3);
}

.service-card[data-service="concrete"]:hover {
    box-shadow: 0 25px 60px rgba(107, 114, 128, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #55AFD5, #3a8fb8);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #55AFD5, #3a8fb8);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-icon i {
    font-size: 20px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1) rotate(5deg);
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 15px;
}

.service-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-align: center;
    line-height: 1.3;
}

.service-content p {
    color: #e2e8f0;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 16px;
    text-align: center;
    flex-grow: 1;
}

.service-features {
    display: flex;
    gap: 8px;
    margin: 0 0 10px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-tag {
    background: linear-gradient(135deg, #55AFD5, #3a8fb8);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(85, 175, 213, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.feature-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(85, 175, 213, 0.4);
}

.service-link {
    background: linear-gradient(135deg, #55AFD5, #3a8fb8);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(85, 175, 213, 0.3);
    margin-top: auto;
    align-self: center;
    font-size: 14px;
}

.service-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(85, 175, 213, 0.5);
    gap: 12px;
}

/* About Section */
.about {
    padding: 60px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    margin: 0;
    border: none;
}

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

.about-particles {
    display: none;
}

.about-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(123, 197, 224, 0.1) 0%, 
        transparent 25%, 
        transparent 75%, 
        rgba(85, 175, 213, 0.1) 100%);
    animation: aboutGradientShift 12s ease-in-out infinite;
}

@keyframes aboutParticles {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-150px); }
}

@keyframes aboutGradientShift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
    margin-top: 100px;
}

.about-text {
    order: 1;
}

.about-visual {
    order: 2;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    animation: badgeFloat 3s ease-in-out infinite;
}

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

.about-text h2 {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-intro {
    font-size: 18px;
    color: #e2e8f0;
    margin-bottom: 25px;
    line-height: 1.7;
    font-weight: 500;
}

.about-text p {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

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

.about-stat .stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #55AFD5;
    line-height: 1;
    margin-bottom: 5px;
}

.about-stat .stat-label {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: stretch;
}

.feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    min-height: 90px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature:hover::before {
    left: 100%;
}

.feature:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(85, 175, 213, 0.5);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #55AFD5, #3a8fb8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(85, 175, 213, 0.3);
    margin-top: 0;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #55AFD5, #3a8fb8);
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature:hover .feature-icon::before {
    opacity: 1;
}

.feature-icon i {
    color: #ffffff;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.feature:hover .feature-icon i {
    transform: scale(1.1) rotate(5deg);
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.feature-content p {
    font-size: 14px;
    color: #e2e8f0;
    margin: 0;
    line-height: 1.4;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.about-hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-hero-image:hover {
    transform: scale(1.02);
}

/* Hide Before/After Section on All Devices */
.hide-mobile-before-after {
    display: none !important;
}

/* Reviews Section */
.reviews {
    padding: 60px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    margin: 0;
    border: none;
}

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

.reviews-particles {
    display: none;
}

.reviews-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(251, 191, 36, 0.05) 0%, 
        transparent 25%, 
        transparent 75%, 
        rgba(245, 158, 11, 0.05) 100%);
    animation: reviewsGradientShift 8s ease-in-out infinite;
}

@keyframes reviewsParticles {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-150px); }
}

@keyframes reviewsGradientShift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}


.reviews-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0 60px 0;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 20px;
}

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

.review-stat .stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #f59e0b;
    line-height: 1;
    margin-bottom: 5px;
}

.review-stat .stat-label {
    font-size: 14px;
    color: #e2e8f0;
    font-weight: 500;
}

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

.review-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.review-card.featured-review {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #ffffff;
    transform: scale(1.05);
}

.review-card.featured-review .review-text {
    color: #ffffff;
}

.review-card.featured-review .reviewer-details h4 {
    color: #ffffff;
}

.review-card.featured-review .reviewer-details span {
    color: rgba(255, 255, 255, 0.8);
}

.review-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.review-card:hover .review-glow {
    opacity: 1;
}


.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.review-card.featured-review:hover {
    transform: translateY(-10px) scale(1.08);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 5px;
}

.reviewer-info span {
    font-size: 14px;
    color: #94a3b8;
}


.review-text {
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
    flex: 1;
}

.review-source {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e2e8f0;
    font-size: 14px;
    margin-top: auto;
}

.review-source i {
    color: #55AFD5;
}

/* Enhanced reviewer styles */
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #55AFD5, #3a8fb8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
}

.reviewer-details h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.reviewer-details span {
    font-size: 14px;
    color: #e2e8f0;
    font-weight: 500;
}


/* Why Choose Us Section */
.why-choose-us {
    padding: 60px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    margin: 0;
    border: none;
}

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

.why-choose-particles {
    display: none;
}

.why-choose-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(16, 185, 129, 0.1) 0%, 
        transparent 25%, 
        transparent 75%, 
        rgba(5, 150, 105, 0.1) 100%);
    animation: whyChooseGradientShift 10s ease-in-out infinite;
}

@keyframes whyChooseParticles {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-200px); }
}

@keyframes whyChooseGradientShift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}


.trust-indicators {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #10b981;
    font-weight: 600;
}

.why-choose-us .section-header h2 {
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-choose-us .section-header p {
    color: #e2e8f0;
}

.reviews .section-header h2 {
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews .section-header p {
    color: #e2e8f0;
}

.contact .section-header h2 {
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact .section-header p {
    color: #e2e8f0;
}

.trust-item i {
    font-size: 18px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

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

.feature-item {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
    border: 1px solid rgba(85, 175, 213, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 350px;
}

.feature-item.premium {
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid rgba(85, 175, 213, 0.5);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(85, 175, 213, 0.05), rgba(123, 197, 224, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #55AFD5, #3a8fb8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    position: relative;
    transition: all 0.3s ease;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #55AFD5, #3a8fb8);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover .feature-icon::before {
    opacity: 1;
}

.feature-icon i {
    font-size: 20px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon i {
    transform: scale(1.2) rotate(10deg);
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-item p {
    color: #e2e8f0;
    line-height: 1.6;
    font-size: 14px;
    flex: 1;
}

.feature-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.feature-item:hover .feature-glow {
    opacity: 1;
}

.feature-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-content p {
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 16px;
}

.feature-stats {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: auto;
}

.feature-stats .stat {
    background: linear-gradient(135deg, #55AFD5, #3a8fb8);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(85, 175, 213, 0.3);
    transition: all 0.3s ease;
}

.feature-stats .stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(85, 175, 213, 0.4);
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: transparent !important;
    position: relative;
    overflow: hidden;
    margin: 0;
    border: none;
}

.contact-background {
    display: none;
}

.contact-particles {
    display: none;
}

.contact-gradient {
    display: none;
}


.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #55AFD5, #3a8fb8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    animation: floatElement 5s ease-in-out infinite;
    box-shadow: 0 8px 20px rgba(85, 175, 213, 0.3);
}

.float-element.element-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.float-element.element-2 {
    top: 30%;
    right: 20%;
    animation-delay: 1.25s;
}

.float-element.element-3 {
    bottom: 30%;
    left: 25%;
    animation-delay: 2.5s;
}

.float-element.element-4 {
    bottom: 20%;
    right: 15%;
    animation-delay: 3.75s;
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.contact-card {
    background: transparent;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.contact-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(85, 175, 213, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.contact-card:hover .contact-glow {
    opacity: 1;
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-card p {
    color: #e2e8f0;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info p {
    font-size: 16px;
    color: #e2e8f0;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

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

.contact-item i {
    color: #ffffff;
    font-size: 18px;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.contact-item a {
    color: #55AFD5;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    color: #55AFD5;
}

.contact-item p {
    color: #e2e8f0;
    margin: 0;
}

/* Enhanced contact styles */
.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3a8fb8, #3a8fb8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(85, 175, 213, 0.4);
    text-align: center;
    line-height: 1;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.contact-link {
    color: #55AFD5;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #55AFD5;
}

.contact-subtitle {
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-top: 5px;
}

.form-container {
    max-width: 720px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    color: #e2e8f0;
    font-size: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-large {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.discount-notice {
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 25px;
    border-radius: 20px;
    border-left: 5px solid #10b981;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 30px;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
    position: relative;
    overflow: hidden;
}

.discount-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 70%);
    animation: discountShine 3s ease-in-out infinite;
}

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


.discount-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.discount-content p {
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
    font-size: 16px;
}

.discount-notice i {
    color: #ffffff;
    font-size: 18px;
    margin-top: 2px;
}

.discount-notice p {
    color: #ffffff;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Homepage and Quote page forms - direct form children (not inside form-container) */
/* Service pages use .form-container, so this only targets homepage/quote */
.contact-form > form {
    background: transparent;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px;
    width: 100%;
    grid-template-columns: none !important;
    grid-auto-flow: row !important;
}

/* Ensure form inputs stay in single column - ONLY for homepage/quote forms (direct children) */
.contact-form > form > input,
.contact-form > form > select,
.contact-form > form > textarea {
    display: block !important;
    width: 100% !important;
    grid-column: 1 !important;
    grid-row: auto !important;
    flex: none !important;
    max-width: 100% !important;
}

.contact-form > form > div:not(.g-recaptcha) {
    display: block !important;
    width: 100% !important;
    grid-column: 1 !important;
    max-width: 100% !important;
}

.contact-form > form > .g-recaptcha {
    display: block !important;
    width: 100% !important;
    grid-column: 1 !important;
    max-width: 100% !important;
}

.contact-form > form > button {
    display: flex !important;
    width: 50% !important;
    margin: 10px auto 0 auto !important;
    grid-column: 1 !important;
    max-width: 100% !important;
}

/* Prevent service page form-container from affecting homepage/quote forms */
.contact-form > .form-container {
    /* Service pages only - don't affect */
}

#contact-form-root {
    min-height: 400px;
    display: block;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.25);
    color: #fff;
    font-size: 16px;
    outline: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input[type="text"]::placeholder,
.contact-form input[type="email"]::placeholder,
.contact-form input[type="tel"]::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(80, 180, 255, 0.9);
    box-shadow: 0 0 0 3px rgba(80, 180, 255, 0.15);
    background: rgba(0, 0, 0, 0.35);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px !important;
    background-size: 20px;
    padding-right: 45px;
}

.contact-form select option {
    background: #1e293b;
    color: #ffffff;
    padding: 10px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.contact-form .g-recaptcha {
    margin: 10px 0;
}

.contact-form .btn-primary {
    width: 50%;
    margin: 10px auto 0 auto;
    padding: 14px 18px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    background: #59b6ff;
    color: #ffffff;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form .btn-primary:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.contact-form .btn-primary:active {
    transform: translateY(0);
}

.contact-form #form-message {
    margin-top: 15px;
    padding: 15px;
    border-radius: 10px;
    display: none;
    font-size: 14px;
    line-height: 1.5;
}

.contact-form #form-message.success {
    background: #d1fae5;
    color: #10b981;
    border: 1px solid #10b981;
    display: block;
}

.contact-form #form-message.error {
    background: #fee2e2;
    color: #ef4444;
    border: 1px solid #ef4444;
    display: block;
}

.contact-form #form-message.info {
    background: #dbeafe;
    color: #55AFD5;
    border: 1px solid #55AFD5;
    display: block;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #55AFD5;
    box-shadow: 0 0 0 3px rgba(85, 175, 213, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2360a5fa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 45px;
}

.form-group select option {
    background: #1e293b;
    color: #ffffff;
    padding: 10px;
}

/* Shared Form Classes for Consistency */
.form-field {
    margin-bottom: 12px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.25);
    color: #fff;
    font-size: 16px;
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: rgba(80, 180, 255, 0.9);
    box-shadow: 0 0 0 3px rgba(80, 180, 255, 0.15);
}

.form-submit {
    width: 100%;
    padding: 14px 18px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    background: #59b6ff;
    color: #02243a;
}

.form-submit:hover {
    filter: brightness(1.05);
}

/* reCAPTCHA Styling */
/* reCAPTCHA v3 is invisible - no styling needed */

/* Blog Article Styling */
.blog-article {
    padding: 120px 0 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    min-height: 100vh;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #55AFD5;
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.publish-date,
.read-time {
    color: #94a3b8;
    font-size: 16px;
    font-weight: 500;
}

.article-image {
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.article-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.article-body {
    color: #e2e8f0;
    line-height: 1.8;
}

.article-body .lead {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(85, 175, 213, 0.1);
    border-left: 4px solid #55AFD5;
    border-radius: 8px;
}

.article-body h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #55AFD5;
}

.article-body h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 30px 0 15px 0;
}

.article-body h4 {
    font-size: 20px;
    font-weight: 600;
    color: #10b981;
    margin: 25px 0 10px 0;
}

.article-body p {
    margin-bottom: 20px;
    font-size: 16px;
}

.article-body ul,
.article-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-body li {
    margin-bottom: 10px;
    font-size: 16px;
}

.article-body strong {
    color: #ffffff;
    font-weight: 600;
}

.cost-breakdown,
.roi-calculation {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
}

.cost-breakdown h4,
.roi-calculation h4 {
    color: #10b981;
    margin-top: 0;
}

.cta-section {
    background: linear-gradient(135deg, #55AFD5, #3a8fb8);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(85, 175, 213, 0.3);
}

.cta-section h3 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-section p {
    color: #e2e8f0;
    font-size: 18px;
    margin-bottom: 25px;
}

.cta-section .btn {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.cta-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Mobile Responsive for Blog Articles */
@media (max-width: 768px) {
    .blog-article {
        padding: 100px 0 80px 0;
    }
    
    .article-content {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .article-header h1 {
        font-size: 32px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .article-image img {
        height: 250px;
    }
    
    .article-body h2 {
        font-size: 24px;
    }
    
    .article-body h3 {
        font-size: 20px;
    }
    
    .article-body h4 {
        font-size: 18px;
    }
    
    .cta-section {
        padding: 25px 20px;
    }
    
    .cta-section h3 {
        font-size: 24px;
    }
    
    .cta-section p {
        font-size: 16px;
    }
}

/* reCAPTCHA v3 mobile styling removed - invisible implementation */

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

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

.form-message.success {
    background: #d1fae5;
    color: #10b981;
    border: 1px solid #10b981;
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: #ef4444;
    border: 1px solid #ef4444;
    display: block;
}

.form-message.info {
    background: #dbeafe;
    color: #55AFD5;
    border: 1px solid #55AFD5;
    display: block;
}

/* Privacy Policy and Terms of Service Pages */
.privacy-policy, .terms-of-service {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.privacy-content, .terms-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px;
    border: 1px solid rgba(85, 175, 213, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.privacy-content h1, .terms-content h1 {
    font-size: 40px;
    font-weight: 700;
    color: #55AFD5;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.last-updated {
    text-align: center;
    color: #94a3b8;
    font-size: 16px;
    margin-bottom: 40px;
    font-style: italic;
}

.privacy-section, .terms-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(85, 175, 213, 0.1);
}

.privacy-section:last-child, .terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-section h2, .terms-section h2 {
    font-size: 20px;
    font-weight: 600;
    color: #55AFD5;
    margin-bottom: 20px;
    position: relative;
}

.privacy-section h2::after, .terms-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #55AFD5, #8b5cf6);
    border-radius: 2px;
}

.privacy-section p, .terms-section p {
    color: #e2e8f0;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

.privacy-section ul, .terms-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.privacy-section li, .terms-section li {
    color: #e2e8f0;
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 16px;
    position: relative;
}

.privacy-section li::before, .terms-section li::before {
    content: '•';
    color: #55AFD5;
    font-weight: bold;
    position: absolute;
    left: -20px;
}

.footer-legal {
    margin-top: 0;
}

.footer-legal h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.footer-legal ul {
    list-style: none;
    padding: 0;
}

.footer-legal li {
    margin-bottom: 8px;
    color: #94a3b8;
}

.footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-legal a:hover {
    color: #55AFD5;
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: rgba(2, 22, 38, 0.9);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-brand {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.footer-services {
    margin: 0;
    padding: 0;
}

.footer-areas {
    margin: 0;
    padding: 0;
}

.footer-legal {
    margin: 0;
    padding: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 20px 0;
}

.footer-logo img {
    height: 40px;
    width: auto;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-contact p {
    color: #94a3b8;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: #55AFD5;
    width: 16px;
}

.footer-services h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

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

.footer-services li {
    margin-bottom: 8px;
    color: #94a3b8;
}

.footer-services li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-services li a:hover {
    color: #55AFD5;
    transform: translateX(5px);
}

.footer-areas h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.footer-areas ul {
    list-style: none;
    padding: 0;
}

.footer-areas li {
    margin-bottom: 8px;
    color: #94a3b8;
}

.footer-areas a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-areas a:hover {
    color: #55AFD5;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Show only 3 reviews on mobile */
    .reviews-grid .review-card:nth-child(n+4) {
        display: none;
    }
    
    /* Hide trust badges on mobile */
    .hide-mobile-badges {
        display: none !important;
    }
    
    /* Make about stats horizontal on mobile */
    .about-stats {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-stat {
        flex: 1;
        min-width: 80px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-logo img {
        max-height: 45px;
        width: auto;
        height: auto;
    }
    
    .nav-logo {
        padding-left: 5px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(2, 22, 38, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 20px 0;
        gap: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu .nav-link {
        display: block;
        width: 100%;
        padding: 15px 20px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: #e2e8f0;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(85, 175, 213, 0.1);
        color: #55AFD5;
    }
    
    .nav-menu .nav-link.active {
        background: rgba(85, 175, 213, 0.2);
        color: #55AFD5;
        border-left: 3px solid #55AFD5;
    }
    
    .nav-menu .nav-cta {
        display: block;
        width: calc(100% - 40px);
        margin: 20px auto 0;
        text-align: center;
        padding: 15px 20px;
        border-radius: 8px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-buttons .btn {
        flex: 1;
        min-width: 140px;
        max-width: 200px;
        text-align: center;
        padding: 15px 25px;
        font-size: 14px;
    }
    
    .hero-buttons .btn-pulse {
        font-size: 0;
    }
    
    .hero-buttons .btn-pulse::after {
        content: "Call Now";
        font-size: 14px;
    }
    
    .hero-buttons .btn-pulse i {
        font-size: 14px;
        margin-right: 8px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: flex-start;
    }
    
    .footer-services {
        text-align: center;
    }
    
    .footer-areas {
        text-align: center;
    }
    
    .footer-legal {
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .contact-form {
        padding: 10px;
        margin: 0 10px;
    }
    
    .form-container {
        max-width: 100%;
    }
    
    .form-header h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .form-header p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 18px;
        font-size: 16px;
    }
    
    .btn-large {
        padding: 18px 30px;
        font-size: 16px;
        width: 100%;
    }

    .service-card {
        padding: 30px 20px;
    }
}

/* Services Page Styles */
.services-hero {
    background: transparent;
    color: #ffffff;
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero-content h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #55AFD5;
}

.services-hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.services-hero .hero-phone {
    justify-content: center;
    font-size: 18px;
}

/* Services Hero Background */
.services-background {
    display: none;
}

.services-particles {
    display: none;
}

@keyframes servicesParticles {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-200px); }
}

.services-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(85, 175, 213, 0.1) 0%, rgba(16, 185, 129, 0.1) 50%, rgba(245, 158, 11, 0.1) 100%);
    animation: servicesGradientShift 8s ease-in-out infinite;
}

@keyframes servicesGradientShift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Services Hero Content */
.services-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    animation: badgePulse 2s ease-in-out infinite;
}

.services-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.services-highlight {
    background: linear-gradient(135deg, #55AFD5, #3a8fb8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-description {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #e2e8f0;
}

.services-stats {
    display: flex;
    gap: 20px;
    margin: 30px auto;
    justify-content: center;
    max-width: 600px;
}

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

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #55AFD5;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #e2e8f0;
    font-weight: 500;
}

.services-buttons {
    display: flex;
    gap: 20px;
    margin: 30px auto;
    justify-content: center;
    max-width: 600px;
    flex-wrap: wrap;
}

.services-buttons .btn {
    padding: 18px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    min-width: 200px;
    justify-content: center;
}

.services-guarantee {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    color: #10b981;
    font-size: 14px;
    font-weight: 500;
    margin: 0 auto;
    max-width: 600px;
    line-height: 1.4;
}

.services-guarantee i {
    margin-top: 1px;
    flex-shrink: 0;
}

.services-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 300px;
    z-index: 2;
}

.services-illustration {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
    height: 100%;
}

.service-placeholder {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.service-placeholder:nth-child(1) { animation-delay: 0s; }
.service-placeholder:nth-child(2) { animation-delay: 1s; }
.service-placeholder:nth-child(3) { animation-delay: 2s; }
.service-placeholder:nth-child(4) { animation-delay: 3s; }
.service-placeholder:nth-child(5) { animation-delay: 4s; }
.service-placeholder:nth-child(6) { animation-delay: 5s; }

.services-detail {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.service-detail {
    margin-bottom: 60px;
    position: relative;
    overflow: visible;
    padding: 60px 20px;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(85, 175, 213, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(85, 175, 213, 0.1) inset;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto;
    max-width: 1200px;
    transition: all 0.4s ease;
}

.service-detail:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 40px rgba(85, 175, 213, 0.2);
    border-color: rgba(85, 175, 213, 0.4);
}

.service-detail:last-child {
    margin-bottom: 60px;
}

.service-detail::before {
    display: none;
}

.service-detail::after {
    display: none;
}

.service-detail-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0;
    position: relative;
    z-index: 2;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
    text-align: center;
    align-items: stretch;
    justify-items: center;
    width: 100%;
    max-width: 1000px;
}

/* FAQ Accordion Styles */
.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 30px 0;
    max-width: 1000px;
    width: 100%;
}

.faq-column {
    display: flex;
    flex-direction: column;
}

.faq-category-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: left;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(85, 175, 213, 0.3);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(85, 175, 213, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(85, 175, 213, 0.4);
    box-shadow: 0 4px 12px rgba(85, 175, 213, 0.2);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e2e8f0;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    color: #ffffff;
    background: rgba(85, 175, 213, 0.1);
}

.faq-question i.fa-question-circle {
    color: #55AFD5;
    font-size: 18px;
    flex-shrink: 0;
}

.faq-question span {
    flex: 1;
    line-height: 1.5;
}

.faq-chevron {
    color: #55AFD5;
    font-size: 14px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px 20px;
}

.faq-answer p {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
    padding-top: 15px;
}

@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .faq-category-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .faq-question {
        padding: 16px 18px;
        font-size: 15px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

/* Static Info Card Component (reusable card styling based on FAQ design) */
.info-card {
    background: rgba(123, 197, 224, 0.25);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(123, 197, 224, 0.4);
    transition: all 0.3s ease;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.info-card:hover {
    background: rgba(123, 197, 224, 0.35);
    border-color: rgba(123, 197, 224, 0.6);
    box-shadow: 0 4px 12px rgba(123, 197, 224, 0.3);
    transform: translateY(-2px);
}

.info-card-icon {
    color: #55AFD5;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.info-card-title {
    color: #e0f2fe;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

.info-card-description {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .info-card {
        padding: 16px 18px;
    }
    
    .info-card-title {
        font-size: 15px;
    }
    
    .info-card-description {
        font-size: 14px;
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 0 15px;
    }
    
    .service-card {
        min-height: 380px;
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    
    .service-content h3 {
        font-size: 18px;
    }
    
    .service-content p {
        font-size: 14px;
    }
    
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
}

.service-detail-content.reverse {
    direction: rtl;
}

.service-detail-content.reverse > * {
    direction: ltr;
}

.service-detail-text {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #55AFD5, #3a8fb8, #7bc5e0);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 40px rgba(85, 175, 213, 0.4), 0 0 30px rgba(85, 175, 213, 0.2);
    z-index: 2;
}

.service-icon-large::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #55AFD5, #3a8fb8);
    border-radius: 23px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-detail:hover .service-icon-large::before {
    opacity: 1;
}

.service-detail:hover .service-icon-large {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 20px 50px rgba(85, 175, 213, 0.6), 0 0 50px rgba(85, 175, 213, 0.4);
}

.service-icon-large i {
    font-size: 32px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
}

.service-detail:hover .service-icon-large i {
    transform: scale(1.1);
}

.service-detail-text h2 {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff, #e0f2fe, #7bc5e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 12px rgba(85, 175, 213, 0.4);
    position: relative;
    padding-bottom: 25px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.service-detail-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(135deg, #55AFD5, #7bc5e0, #55AFD5);
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(85, 175, 213, 0.5);
}

.service-intro {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 30px;
    line-height: 1.8;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.service-features,
.service-benefits {
    background: rgba(123, 197, 224, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(85, 175, 213, 0.3);
    border-radius: 25px;
    padding: 45px 40px;
    margin: 0;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(85, 175, 213, 0.1) inset;
}

.service-features::after,
.service-benefits::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(85, 175, 213, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
    pointer-events: none;
}

.service-features:hover,
.service-benefits:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4), 0 0 50px rgba(85, 175, 213, 0.3);
    border-color: rgba(85, 175, 213, 0.6);
    background: rgba(123, 197, 224, 0.25);
}

.service-features:hover::after,
.service-benefits:hover::after {
    opacity: 1;
}

.service-features::before,
.service-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-features:hover::before,
.service-benefits:hover::before {
    left: 100%;
}

.service-features h3,
.service-benefits h3 {
    color: #e0f2fe;
    font-size: 22px;
    margin: 0 0 35px 0;
    font-weight: 700;
    text-align: left;
    text-shadow: 0 2px 8px rgba(85, 175, 213, 0.4);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    height: auto;
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(85, 175, 213, 0.4);
    letter-spacing: 0.5px;
}


.service-features ul,
.service-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}


.service-features li,
.service-benefits li {
    position: relative;
    color: #e2e8f0;
    line-height: 1.8;
    text-align: left;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 14px 14px 14px 50px;
    border-left: 3px solid rgba(85, 175, 213, 0.3);
    width: 100%;
    box-sizing: border-box;
    z-index: 2;
}

.service-features li:hover,
.service-benefits li:hover {
    background: rgba(85, 175, 213, 0.1);
    border-left-color: rgba(85, 175, 213, 0.6);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(85, 175, 213, 0.2);
}

.service-features li span,
.service-benefits li span {
    display: block;
    width: 100%;
}

.service-features li:last-child,
.service-benefits li:last-child {
    margin-bottom: 0;
}

.service-features li:hover,
.service-benefits li:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.service-features li::before,
.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 12px;
    top: 14px;
    transform: none;
    color: #10b981;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    border: 2px solid #10b981;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.service-features li:hover::before,
.service-benefits li:hover::before {
    color: #34d399;
    transform: scale(1.15) rotate(5deg);
    background: rgba(16, 185, 129, 0.4);
    border-color: #34d399;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.5);
}

.service-features p {
    padding: 8px 0;
    color: #e2e8f0;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}


.service-cta {
    display: flex;
    gap: 20px;
    margin: 15px auto 0;
    justify-content: center;
    align-items: center;
    max-width: 700px;
    flex-wrap: wrap;
    padding: 15px;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.service-cta .btn {
    position: relative;
    overflow: hidden;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-cta .btn-primary {
    background: linear-gradient(135deg, #55AFD5, #3a8fb8);
    border: none;
    padding: 18px 35px;
    font-size: 16px;
    animation: ctaPulse 2s infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(85, 175, 213, 0.4); }
    50% { box-shadow: 0 15px 40px rgba(85, 175, 213, 0.6); }
}

.service-cta .btn-primary::before {
    content: '';
    margin-right: 0;
    animation: none;
}

@keyframes fire {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-5deg); }
    75% { transform: scale(1.1) rotate(5deg); }
}

.service-cta .btn-secondary {
    background: transparent;
    border: 2px solid #55AFD5;
    color: #55AFD5;
    padding: 16px 33px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.service-cta .btn-secondary:hover {
    background: #55AFD5;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(123, 197, 224, 0.4);
}

.service-cta .btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.service-detail-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
}

.service-image-placeholder {
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #55AFD5, #3a8fb8);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(85, 175, 213, 0.3);
}

.service-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.service-detail:hover .service-image-placeholder::before {
    left: 100%;
}

.service-detail:hover .service-image-placeholder {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 50px rgba(85, 175, 213, 0.4);
}

.service-detail:hover {
    transform: none;
    box-shadow: none;
}

/* Urgency and Social Proof Elements */
.service-urgency {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    animation: urgencyPulse 2s infinite;
}

@keyframes urgencyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.service-urgency::before {
    content: '⚡';
    margin-right: 8px;
    animation: flash 1s infinite;
}

@keyframes flash {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}

.service-stats {
    display: flex;
    gap: 25px;
    margin: 40px 0;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-stat {
    text-align: center;
    padding: 30px 35px;
    background: linear-gradient(135deg, rgba(85, 175, 213, 0.2), rgba(58, 143, 184, 0.15));
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 2px solid rgba(85, 175, 213, 0.4);
    min-width: 160px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(85, 175, 213, 0.1) inset;
}

.service-stat::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(85, 175, 213, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
}

.service-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-stat:hover::before {
    left: 100%;
}

.service-stat:hover {
    transform: translateY(-12px) scale(1.08);
    background: linear-gradient(135deg, rgba(85, 175, 213, 0.35), rgba(58, 143, 184, 0.25));
    box-shadow: 0 25px 60px rgba(85, 175, 213, 0.5), 0 0 40px rgba(85, 175, 213, 0.3);
    border-color: rgba(85, 175, 213, 0.7);
}

.service-stat:hover::after {
    opacity: 1;
}

.service-stat .stat-number {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(85, 175, 213, 0.6);
    position: relative;
    z-index: 2;
    margin-bottom: 8px;
    line-height: 1;
}

.service-stat .stat-label {
    font-size: 15px;
    color: #cbd5e1;
    font-weight: 600;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

.service-guarantee {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    padding: 25px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
    max-width: 700px;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
    border: 2px solid rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.service-guarantee:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 45px rgba(16, 185, 129, 0.5);
    border-color: rgba(16, 185, 129, 0.5);
}

.service-guarantee::before {
    content: '';
    margin-right: 0;
}

.service-stat.money-saved {
    background: linear-gradient(135deg, rgba(85, 175, 213, 0.15), rgba(58, 143, 184, 0.1));
    border: 2px solid rgba(85, 175, 213, 0.3);
    color: #ffffff;
    padding: 25px;
    border-radius: 20px;
    font-weight: 700;
    text-align: center;
    margin: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(85, 175, 213, 0.4);
    transition: all 0.3s ease;
    min-width: 140px;
    flex: 1;
    max-width: 200px;
}

.service-stat.money-saved:hover {
    transform: translateY(-8px) scale(1.05);
    background: linear-gradient(135deg, rgba(85, 175, 213, 0.25), rgba(58, 143, 184, 0.2));
    box-shadow: 0 15px 35px rgba(85, 175, 213, 0.4);
    border-color: rgba(85, 175, 213, 0.5);
}

.service-stat.money-saved::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-stat.money-saved:hover::before {
    left: 100%;
}


@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

.service-image-placeholder i {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-image-placeholder span {
    font-size: 18px;
    font-weight: 600;
}

.service-areas {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.service-areas-particles {
    display: none;
}

.service-areas-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(123, 197, 224, 0.1) 0%, 
        transparent 25%, 
        transparent 75%, 
        rgba(85, 175, 213, 0.1) 100%);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 8px;
}

.area-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.area-card i {
    font-size: 32px;
    color: #55AFD5;
    margin-bottom: 20px;
}

.area-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.area-card p {
    color: #e2e8f0;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #55AFD5, #3a8fb8);
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.cta-section .btn-primary {
    background: white;
    color: #55AFD5;
}

.cta-section .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.cta-section .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: #55AFD5;
}

.cta-section .discount-notice {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.cta-section .discount-notice i {
    color: #fbbf24;
}

/* Active Navigation Link */
.nav-link.active {
    color: #55AFD5;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #55AFD5;
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 32px;
    }
    
    .services-title {
        font-size: 32px;
    }
    
    .services-stats {
        display: flex;
        flex-direction: column;
        gap: 4px;
        margin: 20px auto;
        justify-content: center;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .services-stat {
        width: 100%;
        padding: 15px 20px;
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        justify-content: space-between;
        text-align: left !important;
        background: rgba(30, 41, 59, 0.8);
        border: 1px solid rgba(85, 175, 213, 0.3);
        border-radius: 12px;
        backdrop-filter: blur(10px);
    }
    
    .stat-number {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 0;
        color: #55AFD5;
    }
    
    .stat-label {
        font-size: 14px;
        font-weight: 500;
        color: #94a3b8;
        text-align: right;
    }
    
    .service-stat.money-saved {
        width: 100% !important;
        padding: 15px 20px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        text-align: left !important;
        background: rgba(30, 41, 59, 0.8) !important;
        border: 1px solid rgba(85, 175, 213, 0.3) !important;
        border-radius: 12px !important;
        backdrop-filter: blur(10px) !important;
        margin-bottom: 0 !important;
        min-width: auto !important;
        max-width: none !important;
        flex: none !important;
    }
    
    .service-stat.money-saved .stat-number {
        font-size: 20px !important;
        font-weight: 700 !important;
        margin-bottom: 0 !important;
        color: #55AFD5 !important;
    }
    
    .service-stat.money-saved .stat-label {
        font-size: 14px !important;
        font-weight: 500 !important;
        color: #94a3b8 !important;
        text-align: right !important;
    }
    
    
    .services-buttons {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .services-buttons .btn {
        flex: 1;
        min-width: 140px;
        max-width: 200px;
        text-align: center;
        padding: 15px 25px;
        font-size: 14px;
    }
    
    .services-visual {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: 200px;
        margin-top: 40px;
    }
    
    .service-detail {
        padding: 30px 0;
        margin: 0 0 10px 0;
        border-bottom: 1px solid rgba(85, 175, 213, 0.1);
    }
    
    .service-detail:last-child {
        border-bottom: none;
    }
    
    .service-detail-content {
        padding: 10px;
        margin: 0 15px;
        border-radius: 15px;
    }
    
    .service-detail-content.reverse {
        direction: ltr;
    }
    
    .service-detail-text h2 {
        font-size: 28px;
        margin-bottom: 25px;
        line-height: 1.2;
    }
    
    .service-intro {
        font-size: 16px;
        padding: 15px;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 25px 0;
    }
    
    .service-features,
    .service-benefits {
        padding: 10px;
        margin: 0 10px;
    }
    
    .service-features h3,
    .service-benefits h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .service-features li,
    .service-benefits li {
        font-size: 16px;
        padding: 10px 10px 10px 40px;
        margin-bottom: 6px;
        line-height: 1.5;
    }
    
    .service-cta {
        flex-direction: column;
        align-items: center;
        padding: 10px;
        margin: 30px auto 0;
        gap: 15px;
    }
    
    .service-stats {
        display: flex;
        flex-direction: column;
        gap: 4px;
        margin: 20px auto;
        justify-content: center;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .service-stat {
        width: 100%;
        padding: 15px 20px;
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        justify-content: space-between;
        text-align: left !important;
        background: rgba(30, 41, 59, 0.8);
        border: 1px solid rgba(85, 175, 213, 0.3);
        border-radius: 12px;
        backdrop-filter: blur(10px);
    }
    
    .service-stat .stat-number {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 0;
        color: #55AFD5;
    }
    
    .service-stat .stat-label {
        font-size: 14px;
        font-weight: 500;
        color: #94a3b8;
        text-align: right;
    }
    
    
    .service-image-placeholder {
        width: 100%;
        max-width: 400px;
        height: 250px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 24px;
    }
    
    .services-stats {
        display: flex;
        flex-direction: column;
        gap: 4px;
        margin: 15px auto;
        justify-content: center;
        padding: 0 10px;
    }
    
    .services-stat {
        width: 100%;
        padding: 15px 20px;
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        justify-content: space-between;
        text-align: left !important;
        background: rgba(30, 41, 59, 0.8);
        border: 1px solid rgba(85, 175, 213, 0.3);
        border-radius: 12px;
        backdrop-filter: blur(10px);
    }
    
    .stat-number {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 0;
        color: #55AFD5;
    }
    
    .stat-label {
        font-size: 14px;
        font-weight: 500;
        color: #94a3b8;
        text-align: right;
    }
    
    .service-stat.money-saved {
        width: 100% !important;
        padding: 15px 20px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        text-align: left !important;
        background: rgba(30, 41, 59, 0.8) !important;
        border: 1px solid rgba(85, 175, 213, 0.3) !important;
        border-radius: 12px !important;
        backdrop-filter: blur(10px) !important;
        margin-bottom: 0 !important;
        min-width: auto !important;
        max-width: none !important;
        flex: none !important;
    }
    
    .service-stat.money-saved .stat-number {
        font-size: 20px !important;
        font-weight: 700 !important;
        margin-bottom: 0 !important;
        color: #55AFD5 !important;
    }
    
    .service-stat.money-saved .stat-label {
        font-size: 14px !important;
        font-weight: 500 !important;
        color: #94a3b8 !important;
        text-align: right !important;
    }
    
    .service-detail {
        padding: 25px 0;
        border-bottom: 1px solid rgba(85, 175, 213, 0.1);
    }
    
    .service-detail:last-child {
        border-bottom: none;
    }
    
    .service-detail-content {
        padding: 10px;
        margin: 0 10px;
    }
    
    .service-detail-text h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .service-intro {
        font-size: 16px;
        padding: 15px;
        margin-bottom: 25px;
    }
    
    .service-features,
    .service-benefits {
        padding: 25px 20px;
    }
    
    .service-features h3,
    .service-benefits h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .service-features li,
    .service-benefits li {
        font-size: 16px;
        padding: 10px 10px 10px 40px;
        margin-bottom: 4px;
    }
    
    .service-cta {
        padding: 25px 15px;
        margin: 30px auto 0;
    }
    
    .service-stats {
        display: flex;
        flex-direction: column;
        gap: 4px;
        margin: 20px auto;
        justify-content: center;
        padding: 0 10px;
    }
    
    .service-stat {
        width: 100%;
        padding: 15px 20px;
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        justify-content: space-between;
        text-align: left !important;
        background: rgba(30, 41, 59, 0.8);
        border: 1px solid rgba(85, 175, 213, 0.3);
        border-radius: 12px;
        backdrop-filter: blur(10px);
    }
    
    .service-stat .stat-number {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 0;
        color: #55AFD5;
    }
    
    .service-stat .stat-label {
        font-size: 14px;
        font-weight: 500;
        color: #94a3b8;
        text-align: right;
    }
    
    .service-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-large i {
        font-size: 18px;
    }
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(135deg, #3a8fb8, #55AFD5);
    color: #ffffff;
    padding: 120px 0 80px;
    text-align: center;
}

.blog-hero-content h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #55AFD5;
}

.blog-hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stat i {
    font-size: 24px;
    color: #55AFD5;
}

.stat span {
    font-weight: 600;
    font-size: 16px;
}

.blog-posts {
    padding: 80px 0;
    background: white;
}

.blog-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
    padding: 40px;
    background: #f8fafc;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-post.featured {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid #55AFD5;
}

.blog-post:nth-child(even) {
    direction: rtl;
}

.blog-post:nth-child(even) > * {
    direction: ltr;
}

.blog-post-content {
    max-width: 600px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
}

.blog-meta i {
    color: #55AFD5;
}

.blog-post h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 25px;
    line-height: 1.6;
}

.blog-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin: 30px 0 15px 0;
}

.blog-content p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.blog-content li {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 8px;
}

.blog-cta {
    background: linear-gradient(135deg, #55AFD5, #3a8fb8);
    color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    text-align: center;
}

.blog-cta h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-cta p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.blog-cta .btn {
    margin: 0 10px;
}

.blog-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-image-placeholder {
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #55AFD5, #3a8fb8);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 10px 30px rgba(85, 175, 213, 0.3);
}

.blog-image-placeholder i {
    font-size: 48px;
    margin-bottom: 20px;
}

.blog-image-placeholder span {
    font-size: 18px;
    font-weight: 600;
}

.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.newsletter-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.newsletter-content p {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto 20px auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 30px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #55AFD5;
    box-shadow: 0 0 0 3px rgba(85, 175, 213, 0.1);
}

.newsletter-disclaimer {
    font-size: 14px;
    color: #94a3b8;
    margin: 0;
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .blog-hero-content h1 {
        font-size: 32px;
    }
    
    .blog-stats {
        gap: 20px;
    }
    
    .blog-post {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .blog-post:nth-child(even) {
        direction: ltr;
    }
    
    .blog-post h2 {
        font-size: 20px;
    }
    
    .blog-meta {
        gap: 15px;
    }
    
    .blog-image-placeholder {
        width: 100%;
        max-width: 400px;
        height: 250px;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .blog-hero-content h1 {
        font-size: 24px;
    }
    
    .blog-post h2 {
        font-size: 18px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-brand p {
        font-size: 14px;
    }
    
    .footer-services h4,
    .footer-legal h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-services li,
    .footer-legal li {
        margin-bottom: 6px;
    }
    
    .footer-contact p {
        font-size: 14px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}


/* Guarantee Section */
.guarantee-section {
    padding: 60px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

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

.guarantee-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
    animation: pulse 2s infinite;
}

.guarantee-icon i {
    font-size: 32px;
    color: #ffffff;
}

.guarantee-content h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.guarantee-content p {
    color: #e2e8f0;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 40px;
}

.guarantee-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(85, 175, 213, 0.3);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.guarantee-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(85, 175, 213, 0.6);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.guarantee-feature i {
    color: #10b981;
    font-size: 18px;
}

.guarantee-feature span {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 50px rgba(16, 185, 129, 0.5);
    }
}

/* Tablet Responsive for Guarantee Section */
@media (max-width: 1200px) {
    .guarantee-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

@media (max-width: 900px) {
    .guarantee-features {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .guarantee-content h2 {
        font-size: 24px;
    }
    
    .guarantee-content p {
        font-size: 16px;
    }
    
    .guarantee-features {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .guarantee-feature {
        padding: 20px;
    }
    
    .guarantee-icon {
        width: 80px;
        height: 80px;
    }
    
    .guarantee-icon i {
        font-size: 24px;
    }
}

/* Related Services Section */
.related-services {
    padding: 80px 0;
    background: transparent;
    position: relative;
}

.related-services .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.related-services .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #55AFD5;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.related-services .section-header p {
    font-size: 1.2rem;
    color: #e2e8f0;
    max-width: 600px;
    margin: 0 auto;
}

.related-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 8px;
}

.related-services .service-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(85, 175, 213, 0.3);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.related-services .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(85, 175, 213, 0.1), transparent);
    transition: left 0.5s ease;
}

.related-services .service-card:hover::before {
    left: 100%;
}

.related-services .service-card:hover {
    transform: translateY(-10px);
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(85, 175, 213, 0.5);
    box-shadow: 0 20px 40px rgba(85, 175, 213, 0.2);
}

.related-services .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #55AFD5, #3a8fb8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.related-services .service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(85, 175, 213, 0.4);
}

.related-services .service-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.related-services .service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.related-services .service-card p {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.related-services .service-card .btn {
    background: linear-gradient(135deg, #55AFD5, #3a8fb8);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.related-services .service-card .btn:hover {
    background: linear-gradient(135deg, #3a8fb8, #55AFD5);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(85, 175, 213, 0.4);
}

/* Mobile Responsive for Related Services */
@media (max-width: 768px) {
    .related-services {
        padding: 60px 0;
    }
    
    .related-services .section-header h2 {
        font-size: 2rem;
    }
    
    .related-services .section-header p {
        font-size: 1rem;
    }
    
    .related-services .services-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .related-services .service-card {
        padding: 30px 20px;
    }
    
    .related-services .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .related-services .service-icon i {
        font-size: 1.5rem;
    }
}

/* Performance: Reduce animations on mobile devices */
@media (max-width: 768px) {
    /* Disable heavy decorative animations on mobile */
    .water-drop,
    .water-drop-large,
    .water-drop-about,
    .water-drop::before,
    .water-drop-large::before,
    .water-drop-about::before {
        animation: none !important;
    }
    
    .global-particles {
        animation: none !important;
    }
    
    /* Reduce animation duration for better performance */
    @keyframes waterDrop {
        0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
        50% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(0px); }
    }
    
    /* Reduce transition duration on mobile */
    .btn,
    .service-card,
    .review-card,
    .feature-item {
        transition-duration: 0.2s !important;
    }
    
    /* Disable heavy transform animations on hover for mobile */
    .service-card:hover,
    .review-card:hover,
    .feature-item:hover {
        transform: none !important;
    }
    
    /* Hide service areas section on mobile */
    .hide-mobile {
        display: none !important;
    }
}
