/* Home Page Specific Styles - Complete Migration from styles.css */

/* Hero Section - Enhanced Design with Better Spacing */
.hero,
.home-hero {
    background: transparent;
    padding: 20px 0 20px 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero,
    .home-hero {
        padding: 30px 0 10px 0;
    }
}

@media (max-width: 480px) {
    .hero,
    .home-hero {
        padding: 20px 0 5px 0;
    }
}

.hero::before,
.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><circle cx="60" cy="60" r="3" fill="%232D8783" opacity="0.06"/><circle cx="340" cy="80" r="2" fill="%231ED3CA" opacity="0.08"/><circle cx="80" cy="320" r="2.5" fill="%232D8783" opacity="0.06"/><circle cx="320" cy="340" r="3.5" fill="%231ED3CA" opacity="0.07"/><path d="M200,80 C220,90 220,110 200,120 C180,110 180,90 200,80" fill="%232D8783" opacity="0.04"/><rect x="100" y="200" width="8" height="6" rx="3" fill="%231ED3CA" opacity="0.05"/><rect x="280" y="180" width="6" height="4" rx="2" fill="%232D8783" opacity="0.04"/></svg>');
    background-size: 400px 400px;
    animation: floatSlow 45s infinite linear;
    pointer-events: none;
}

@keyframes floatSlow {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(1deg); }
    50% { transform: translate(-10px, 10px) rotate(-1deg); }
    75% { transform: translate(15px, -15px) rotate(0.5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    padding-right: 20px;
}

.hero-text h1, .contact-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-top: 20px;
}

.hero-text h1 .highlight {
    color: var(--primary-teal);
    position: relative;
    background: linear-gradient(135deg, var(--primary-teal), var(--light-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-teal), var(--light-teal));
    border-radius: 2px;
    opacity: 0.3;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-grey) !important;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 550px;
}

/* Ensure hero subtitle is dark grey on home page */
.hero .hero-subtitle {
    color: var(--text-grey) !important;
}

/* Continuous animation for hero CTA on mobile */
@media (max-width: 768px) {
    @keyframes mobileCtaPulse {
        0% {
            transform: translateY(0) scale(1);
            box-shadow: 0 15px 40px rgba(45, 135, 131, 0.25);
        }
        100% {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 20px 50px rgba(45, 135, 131, 0.35);
        }
    }

    @keyframes mobileCtaShimmer {
        0% {
            left: -100%;
        }
        100% {
            left: 100%;
        }
    }
}

.hero-image {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(45, 135, 131, 0.12);
    transition: all 0.4s ease;
    position: relative;
    padding-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, transparent, rgba(45, 135, 131, 0.02));
    border-radius: 25px;
    z-index: 1;
    pointer-events: none;
}

.hero-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1021 / 770;
    object-fit: cover;
    border-radius: 25px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    display: block;
}

.hero-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 80px rgba(45, 135, 131, 0.18);
}

.hero-image:hover .hero-img {
    transform: scale(1.03);
}

/* Hero Disclaimer Styles */
.disclaimer-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-teal), var(--light-teal));
    margin: 80px auto 20px auto;
    border-radius: 2px;
    opacity: 0.6;
}

.hero-disclaimer {
    margin-top: 0;
    text-align: center;
    opacity: 0.8;
}

.hero-disclaimer p {
    font-size: 16px;
    color: var(--text-grey);
    line-height: 1.5;
    max-width: 1200px;
    margin: 0 auto;
    font-weight: 400;
    letter-spacing: 0.2px;
    white-space: normal;
    padding: 0 20px;
}

.disclaimer-icon {
    color: var(--primary-color);
    font-size: 14px;
    margin-right: 6px;
    opacity: 0.8;
    font-weight: 500;
}

/* Allow wrapping on tablets and mobile */
@media (max-width: 1024px) {
    .hero-disclaimer p {
        white-space: normal;
        max-width: 95%;
        text-align: justify;
    }
}

@media (max-width: 768px) {
    .disclaimer-divider {
        margin: 30px auto 15px auto;
    }
}

@media (max-width: 480px) {
    .disclaimer-divider {
        margin: 20px auto 10px auto;
    }
}

/* Services Section - Modern Grid Design */
.services {
    padding: 150px 50px 120px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 600"><circle cx="100" cy="100" r="2" fill="%232D8783" opacity="0.06"/><circle cx="500" cy="120" r="1.5" fill="%231ED3CA" opacity="0.08"/><circle cx="120" cy="480" r="2.5" fill="%232D8783" opacity="0.06"/><circle cx="480" cy="500" r="2" fill="%231ED3CA" opacity="0.07"/><path d="M300,120 C320,130 320,150 300,160 C280,150 280,130 300,120" fill="%232D8783" opacity="0.04"/><rect x="150" y="300" width="10" height="8" rx="4" fill="%231ED3CA" opacity="0.05"/><rect x="420" y="280" width="8" height="6" rx="3" fill="%232D8783" opacity="0.04"/><polygon points="300,200 310,220 290,220" fill="%231ED3CA" opacity="0.03"/></svg>');
    background-size: 600px 600px;
    animation: floatSlow 50s infinite linear;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
}

.section-header h2::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--light-teal));
    border-radius: 2px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 4px;
    background: var(--light-teal);
    border-radius: 2px;
}

.section-header p {
    font-size: 20px;
    color: var(--text-grey);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.services .services-grid,
.home-services .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* Responsive grid for tablets */
@media (max-width: 900px) {
    .services .services-grid,
    .home-services .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Home page and city page service cards */
.services .service-card,
.home-services .service-card,
.city-services .service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 45px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(45, 135, 131, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(45, 135, 131, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.services .service-card::before,
.home-services .service-card::before,
.city-services .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-teal), var(--light-teal));
    transition: all 0.4s ease;
}

.services .service-card::after,
.home-services .service-card::after,
.city-services .service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(45, 135, 131, 0.03) 0%, transparent 70%);
    transition: all 0.4s ease;
    transform: scale(0);
    pointer-events: none;
}

.services .service-card:hover::before,
.home-services .service-card:hover::before,
.city-services .service-card:hover::before {
    height: 8px;
    background: linear-gradient(90deg, var(--light-teal), var(--primary-teal));
}

.services .service-card:hover::after,
.home-services .service-card:hover::after,
.city-services .service-card:hover::after {
    transform: scale(1);
}

.services .service-card:hover,
.home-services .service-card:hover,
.city-services .service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(45, 135, 131, 0.15);
    border-color: rgba(45, 135, 131, 0.2);
    background: rgba(255, 255, 255, 1);
}

.services .service-icon,
.home-services .service-icon,
.city-services .service-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
    transition: all 0.4s ease;
    position: relative;
}

.services .service-icon::before,
.home-services .service-icon::before,
.city-services .service-icon::before {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(45, 135, 131, 0.05), rgba(30, 211, 202, 0.05));
    transition: all 0.4s ease;
    transform: scale(0);
}

.services .service-card:hover .service-icon::before,
.home-services .service-card:hover .service-icon::before,
.city-services .service-card:hover .service-icon::before {
    transform: scale(1);
}

.services .service-image,
.home-services .service-image,
.city-services .service-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 181, 168, 0.15);
    position: relative;
    z-index: 2;
}

.services .service-card:hover .service-icon,
.home-services .service-card:hover .service-icon,
.city-services .service-card:hover .service-icon {
    transform: scale(1.05);
}

.services .service-card:hover .service-image,
.home-services .service-card:hover .service-image,
.city-services .service-card:hover .service-image {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 181, 168, 0.25);
    border-radius: 30px;
}

.services .service-card h3,
.home-services .service-card h3,
.city-services .service-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: var(--h3-size);
    font-weight: 600;
    line-height: 1.3;
}

.services .service-card p,
.home-services .service-card p,
.city-services .service-card p {
    color: var(--text-grey);
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 25px;
}

/* Service Link Button - Modern Design for Home and City Pages */
.services .service-link,
.home-services .service-link,
.city-services .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    color: var(--text-white);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(45, 135, 131, 0.25);
    position: relative;
    overflow: hidden;
    margin-top: auto;
    width: fit-content;
    align-self: center;
}

.services .service-link::before,
.home-services .service-link::before,
.city-services .service-link::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: all 0.5s ease;
}

.services .service-link::after,
.home-services .service-link::after,
.city-services .service-link::after {
    content: '→';
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.services .service-link:hover,
.home-services .service-link:hover,
.city-services .service-link:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(45, 135, 131, 0.4);
    background: linear-gradient(135deg, var(--light-teal) 0%, #00e5d0 100%);
}

.services .service-link:hover::before,
.home-services .service-link:hover::before,
.city-services .service-link:hover::before {
    left: 100%;
}

.services .service-link:hover::after,
.home-services .service-link:hover::after,
.city-services .service-link:hover::after {
    transform: translateX(4px);
}

.services .service-link:active,
.home-services .service-link:active,
.city-services .service-link:active {
    transform: translateY(-1px) scale(0.98);
}

/* Service Actions Container */
.services .service-actions,
.home-services .service-actions,
.city-services .service-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

/* Disabled Service Link - Coming Soon */
.services .service-link.disabled,
.home-services .service-link.disabled,
.city-services .service-link.disabled {
    background: linear-gradient(135deg, #9e9e9e 0%, #757575 100%);
    cursor: not-allowed;
    opacity: 0.7;
    pointer-events: none;
}

.services .service-link.disabled::after,
.home-services .service-link.disabled::after,
.city-services .service-link.disabled::after {
    content: '⏳';
    font-size: 16px;
}

.services .service-link.disabled:hover,
.home-services .service-link.disabled:hover,
.city-services .service-link.disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(158, 158, 158, 0.25);
    background: linear-gradient(135deg, #9e9e9e 0%, #757575 100%);
}

/* Mobile responsive adjustments for service links */
@media (max-width: 768px) {
    .services .service-link,
    .home-services .service-link,
    .city-services .service-link {
        padding: 10px 20px;
        font-size: 13px;
        border-radius: 25px;
    }
    
    .service-card {
        min-height: 380px;
        padding: 35px 25px;
    }
    
    .service-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .service-link {
        align-self: center;
        width: fit-content;
    }
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

.view-all-services {
    background: var(--primary-teal);
    color: var(--text-white);
    padding: 18px 40px;
    text-decoration: none;
    border-radius: var(--border-radius-xl);
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(45, 135, 131, 0.3);
    border: none;
}

.view-all-services:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(45, 135, 131, 0.4);
    background: var(--light-teal);
}

/* Why Choose Us - Premium Interactive Design */
.why-choose-us {
    padding: 150px 50px 120px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 800"><circle cx="150" cy="150" r="3" fill="%232D8783" opacity="0.08"/><circle cx="650" cy="180" r="2" fill="%231ED3CA" opacity="0.1"/><circle cx="180" cy="620" r="3.5" fill="%232D8783" opacity="0.07"/><circle cx="620" cy="650" r="2.5" fill="%231ED3CA" opacity="0.09"/><path d="M400,180 C430,200 430,230 400,250 C370,230 370,200 400,180" fill="%232D8783" opacity="0.05"/><rect x="250" y="400" width="12" height="10" rx="5" fill="%231ED3CA" opacity="0.06"/><rect x="520" y="380" width="10" height="8" rx="4" fill="%232D8783" opacity="0.05"/><polygon points="400,300 415,330 385,330" fill="%231ED3CA" opacity="0.04"/><ellipse cx="200" cy="350" rx="8" ry="4" fill="%232D8783" opacity="0.03"/></svg>');
    background-size: 800px 800px;
    animation: floatSlow 60s infinite linear;
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 25px;
    row-gap: 20px;
    position: relative;
    z-index: 2;
    grid-template-rows: auto auto;
}

/* Special layout for 7 cards: 4 top, 3 bottom - All Compact */
.benefits-grid .benefit-card:nth-child(1) { grid-column: 1 / 4; grid-row: 1; padding: 35px 25px; }
.benefits-grid .benefit-card:nth-child(2) { grid-column: 4 / 7; grid-row: 1; padding: 35px 25px; }
.benefits-grid .benefit-card:nth-child(3) { grid-column: 7 / 10; grid-row: 1; padding: 35px 25px; }
.benefits-grid .benefit-card:nth-child(4) { grid-column: 10 / 13; grid-row: 1; padding: 35px 25px; }

/* Bottom 3 cards - each takes 4 columns (4x3=12) - More Compact */
.benefits-grid .benefit-card:nth-child(5) { 
    grid-column: 1 / 5; 
    grid-row: 2; 
    padding: 25px 20px;
}
.benefits-grid .benefit-card:nth-child(6) { 
    grid-column: 5 / 9; 
    grid-row: 2; 
    padding: 25px 20px;
}
.benefits-grid .benefit-card:nth-child(7) { 
    grid-column: 9 / 13; 
    grid-row: 2; 
    padding: 25px 20px;
}

/* Responsive adjustments for benefits grid */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        grid-template-rows: auto;
    }
    
    /* Reset custom positioning on smaller screens */
    .benefits-grid .benefit-card:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
        margin-left: 0;
        margin-right: 0;
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        grid-template-rows: auto;
    }
    
    /* Reset custom positioning on mobile - More compact */
    .benefits-grid .benefit-card:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
        margin-left: 0;
        margin-right: 0;
        padding: 25px 20px;
    }
    
    /* Smaller icons on mobile */
    .benefit-icon svg {
        width: 35px;
        height: 35px;
    }
    
    /* Adjust header layout on mobile */
    .benefit-header {
        gap: 12px;
        margin-bottom: 15px;
    }
    
    /* Reduced spacing on mobile */
    .benefit-card h3 {
        font-size: 1.05rem;
    }
}

.benefit-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 40px 30px;
    border-radius: 30px;
    text-align: left;
    box-shadow: 0 25px 70px rgba(45, 135, 131, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(45, 135, 131, 0.1);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 135, 131, 0.02), rgba(30, 211, 202, 0.02));
    border-radius: 30px;
    opacity: 0;
    transition: all 0.5s ease;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-teal), var(--light-teal), var(--primary-teal));
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: all 0.5s ease;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover::after {
    opacity: 1;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: 200px 0; }
}

.benefit-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 100px rgba(45, 135, 131, 0.15);
    border-color: rgba(45, 135, 131, 0.2);
    background: rgba(255, 255, 255, 1);
}

/* New benefit header layout - icon and heading on same line */
.benefit-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.benefit-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.5s ease;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
    color: #ffffff;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-card:hover .benefit-icon svg {
    color: #ffffff;
    transform: rotate(10deg) scale(1.1);
    filter: drop-shadow(0 4px 15px rgba(255, 255, 255, 0.4));
}

/* Icon specific styling */
.icon-calendar svg,
.icon-shield svg,
.icon-clock svg,
.icon-dollar svg {
    stroke-width: 1.8;
    fill: none;
}

.benefit-card h3 {
    color: var(--text-dark);
    margin: 0;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    font-weight: 700;
    line-height: 1.3;
    transition: all 0.3s ease;
    flex: 1;
}

.benefit-card:hover h3 {
    color: var(--primary-teal);
    transform: translateY(-2px);
}

.benefit-card p {
    color: var(--text-grey);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.benefit-card:hover p {
    color: var(--text-dark);
    transform: translateY(-1px);
}

/* Colorful Theme-Consistent Benefit Cards */
.benefit-card.warranty-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.benefit-card.speed-card {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(245, 158, 11, 0.15);
}

.benefit-card.quality-card {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(34, 197, 94, 0.15);
}

.benefit-card.expert-card {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(168, 85, 247, 0.15);
}

.benefit-card.pricing-card {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.benefit-card.support-card {
    background: linear-gradient(135deg, rgba(45, 135, 131, 0.05), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(45, 135, 131, 0.15);
}

.benefit-card.guarantee-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(16, 185, 129, 0.15);
}

/* Colorful top accent bars */
.benefit-card.warranty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.benefit-card.speed-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.benefit-card.quality-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #22c55e, #4ade80);
}

.benefit-card.expert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #a855f7, #c084fc);
}

.benefit-card.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.benefit-card.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-teal), var(--light-teal));
}

.benefit-card.guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #34d399);
}

/* All icons use theme colors with subtle variations */
.benefit-card.warranty-card .benefit-icon {
    background: linear-gradient(135deg, var(--primary-teal), var(--light-teal));
    color: white;
    box-shadow: 0 6px 20px rgba(45, 135, 131, 0.2);
}

.benefit-card.speed-card .benefit-icon {
    background: linear-gradient(135deg, #2D8783, #1ED3CA);
    color: white;
    box-shadow: 0 6px 20px rgba(45, 135, 131, 0.2);
}

.benefit-card.quality-card .benefit-icon {
    background: linear-gradient(135deg, var(--primary-teal), var(--light-teal));
    color: white;
    box-shadow: 0 6px 20px rgba(45, 135, 131, 0.2);
}

.benefit-card.expert-card .benefit-icon {
    background: linear-gradient(135deg, #2D8783, #1ED3CA);
    color: white;
    box-shadow: 0 6px 20px rgba(45, 135, 131, 0.2);
}

.benefit-card.pricing-card .benefit-icon {
    background: linear-gradient(135deg, var(--primary-teal), var(--light-teal));
    color: white;
    box-shadow: 0 6px 20px rgba(45, 135, 131, 0.2);
}

.benefit-card.support-card .benefit-icon {
    background: linear-gradient(135deg, #2D8783, #1ED3CA);
    color: white;
    box-shadow: 0 6px 20px rgba(45, 135, 131, 0.2);
}

.benefit-card.guarantee-card .benefit-icon {
    background: linear-gradient(135deg, var(--primary-teal), var(--light-teal));
    color: white;
    box-shadow: 0 6px 20px rgba(45, 135, 131, 0.2);
}

/* Consistent hover effects */
.benefit-card.warranty-card:hover,
.benefit-card.speed-card:hover,
.benefit-card.quality-card:hover,
.benefit-card.expert-card:hover,
.benefit-card.pricing-card:hover,
.benefit-card.support-card:hover,
.benefit-card.guarantee-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-teal);
    box-shadow: 0 15px 40px rgba(45, 135, 131, 0.15);
}

.guarantee-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--primary-teal), var(--light-teal));
    color: white;
    padding: 3px 6px;
    border-radius: 8px;
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(45, 135, 131, 0.3);
}

.warranty-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: white;
    padding: 3px 6px;
    border-radius: 8px;
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
}

/* Experience Section - Premium Modern Design */
.experience {
    padding: 150px 50px 120px;
    background: linear-gradient(135deg, #e8f8f5 0%, #f0fff4 35%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900 900"><circle cx="200" cy="200" r="4" fill="%232D8783" opacity="0.06"/><circle cx="700" cy="250" r="3" fill="%231ED3CA" opacity="0.08"/><circle cx="250" cy="650" r="4.5" fill="%232D8783" opacity="0.07"/><circle cx="650" cy="700" r="3.5" fill="%231ED3CA" opacity="0.09"/><path d="M450,250 C480,270 480,300 450,320 C420,300 420,270 450,250" fill="%232D8783" opacity="0.04"/><rect x="300" y="450" width="15" height="12" rx="6" fill="%231ED3CA" opacity="0.05"/><rect x="570" y="430" width="12" height="10" rx="5" fill="%232D8783" opacity="0.04"/><polygon points="450,350 470,385 430,385" fill="%231ED3CA" opacity="0.03"/><ellipse cx="250" cy="400" rx="10" ry="6" fill="%232D8783" opacity="0.04"/></svg>');
    background-size: 900px 900px;
    animation: floatSlow 70s infinite linear;
    pointer-events: none;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.experience-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 55px 45px;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(45, 135, 131, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(45, 135, 131, 0.12);
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-teal), var(--light-teal));
    transition: all 0.4s ease;
}

.experience-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(45, 135, 131, 0.02) 0%, transparent 70%);
    transition: all 0.4s ease;
    transform: scale(0);
}

.experience-card:hover::before {
    height: 8px;
    background: linear-gradient(90deg, var(--light-teal), var(--primary-teal));
}

.experience-card:hover::after {
    transform: scale(1);
}

.experience-card:hover {
    transform: translateY(-15px) scale(1.01);
    box-shadow: 0 40px 100px rgba(45, 135, 131, 0.15);
    border-color: rgba(45, 135, 131, 0.2);
    background: rgba(255, 255, 255, 1);
}

/* Highlight Card (Experience) */
.highlight-card {
    border-left: 6px solid #2d8783;
}

.experience-header {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.experience-badge {
    background: linear-gradient(45deg, #2d8783, #4dd0e1);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: calc(0.9rem - 1px);
    letter-spacing: 1px;
}

.experience-header h3 {
    font-size: calc(1.8rem - 1px);
    color: #333;
    font-weight: 700;
    margin: 0;
}

.experience-card p {
    color: #666;
    line-height: 1.8;
    font-size: calc(1.1rem - 1px);
    margin-bottom: 30px;
}

.experience-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

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

.stat-number {
    display: block;
    font-size: calc(2.5rem - 1px);
    font-weight: 900;
    color: #2d8783;
    margin-bottom: 5px;
}

.stat-label {
    color: #00695c;
    font-weight: 600;
    font-size: calc(0.9rem - 1px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Care Card */
.care-card {
    border-left: 6px solid #ff6b35;
}

.care-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.care-icon svg {
    width: 24px;
    height: 24px;
}

.care-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 500;
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: #2d8783;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .experience-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        text-align: left;
    }
}

/* About Company - Consistent Section Design */
.about-company {
    padding: 150px 50px 120px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fdfd 50%, #e8f8f5 100%);
    position: relative;
    overflow: hidden;
}

.about-company::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 600"><circle cx="100" cy="100" r="2" fill="%232D8783" opacity="0.06"/><circle cx="500" cy="120" r="1.5" fill="%231ED3CA" opacity="0.08"/><circle cx="120" cy="480" r="2.5" fill="%232D8783" opacity="0.06"/><circle cx="480" cy="500" r="2" fill="%231ED3CA" opacity="0.07"/><path d="M300,120 C320,130 320,150 300,160 C280,150 280,130 300,120" fill="%232D8783" opacity="0.04"/><rect x="150" y="300" width="10" height="8" rx="4" fill="%231ED3CA" opacity="0.05"/><rect x="420" y="280" width="8" height="6" rx="3" fill="%232D8783" opacity="0.04"/></svg>');
    background-size: 600px 600px;
    animation: floatSlow 50s infinite linear;
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h3 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 700;
}

.about-text p {
    font-size: 18px;
    color: var(--text-grey);
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-text h4 {
    font-size: 20px;
    color: var(--primary-teal);
    margin-bottom: 15px;
    font-weight: 600;
}

.brand-story {
    background: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    margin-top: 25px;
    border: 1px solid rgba(45, 135, 131, 0.1);
    box-shadow: 0 10px 30px rgba(45, 135, 131, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.brand-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-teal);
    border-radius: 2px;
}

.brand-story:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 135, 131, 0.12);
}

.company-details {
    font-style: italic;
    color: var(--primary-teal);
    font-weight: 500;
    margin-top: 15px;
    padding: 15px;
    background: rgba(45, 135, 131, 0.05);
    border-radius: var(--border-radius-sm);
    margin-bottom: 0 !important;
    font-size: 16px;
}

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

.about-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 40px rgba(45, 135, 131, 0.15);
    transition: all 0.4s ease;
}

.about-img:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(45, 135, 131, 0.2);
}

.company-highlight {
    background: var(--background-light);
    padding: 25px;
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--primary-teal);
    margin: 25px 0;
    box-shadow: 0 8px 25px rgba(45, 135, 131, 0.1);
}

.brand-relationship {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.brand-relationship:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 181, 168, 0.2);
}

.brand-item {
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f0fdfc 0%, #e6fffa 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.brand-item:hover {
    transform: translateX(15px);
}

.company-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--small-gap);
    margin-top: var(--content-gap);
}

.detail-card {
    background: white;
    padding: 35px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(45, 135, 131, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(45, 135, 131, 0.1);
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(45, 135, 131, 0.12);
}

.detail-card h4 {
    color: var(--primary-teal);
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.detail-card p {
    color: var(--text-grey);
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive for Home Page */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
        order: 2; /* Move text below image on mobile */
    }
    
    .hero-image {
        order: 1; /* Move image above text on mobile */
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-img {
        max-width: 100%;
        width: 100%;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .home-hero {
        padding: 40px 0 60px 0; /* Changed top padding to 40px */
    }
    
    .services,
    .why-choose-us,
    .experience,
    .about-company {
        padding: 80px 25px 60px;
    }
    
    .home-hero .hero-content {
        gap: 0px; /* Remove gap between photo and heading */
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 25px;
        max-width: 100%;
    }
    
    .home-hero .hero-text {
        padding-right: 0;
    }
    
    .home-hero .hero-text h1 {
        margin-top: 25px; /* Increased margin-top for better spacing */
        margin-bottom: 20px;
    }
    
    .home-hero .hero-subtitle,
    .hero .hero-subtitle {
        max-width: 100% !important; /* Remove width constraint on mobile with higher specificity */
        padding: 0 !important; /* Remove padding from about.css */
    }
    
    .home-hero .hero-image {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .home-hero .hero-img {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 20px;
    }
    
    .services .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .experience-grid {
        gap: 30px;
    }
    
    .experience-card {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .home-hero {
        padding: 40px 0 40px 0; /* Changed top padding to 40px */
    }
    
    .services,
    .why-choose-us,
    .experience,
    .about-company {
        padding: 60px 20px 40px;
    }
    
    .home-hero .hero-content {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .home-hero .hero-text h1 {
        margin-top: 35px; /* Increased margin-top for max-width: 480px */
    }
    
    .home-hero .hero-image {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .home-hero .hero-img {
        width: 100%;
        max-width: 100%;
        border-radius: 15px;
    }
    
    .section-header h2 {
        margin-bottom: 20px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .home-hero .hero-subtitle,
    .hero .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
        max-width: 100% !important; /* Remove width constraint on mobile with higher specificity */
        padding: 0 !important; /* Remove padding from about.css */
    }
    
    .hero-disclaimer p {
        font-size: 14px;
    }
}

/* Testimonials - Premium Modern Design */
.testimonials {
    padding: 150px 50px 120px;
    background: linear-gradient(135deg, #e8f8f5 0%, #f0fdfc 35%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 1200"><circle cx="300" cy="300" r="7" fill="%232D8783" opacity="0.04"/><circle cx="900" cy="360" r="6" fill="%231ED3CA" opacity="0.05"/><circle cx="360" cy="840" r="7.5" fill="%232D8783" opacity="0.04"/><circle cx="840" cy="900" r="6.5" fill="%231ED3CA" opacity="0.06"/><path d="M600,360 C640,380 640,420 600,440 C560,420 560,380 600,360" fill="%232D8783" opacity="0.02"/><rect x="450" y="600" width="22" height="18" rx="9" fill="%231ED3CA" opacity="0.03"/><polygon points="600,500 635,550 565,550" fill="%231ED3CA" opacity="0.02"/><path d="M300,600 Q350,550 400,600 Q350,650 300,600" fill="%232D8783" opacity="0.02"/></svg>');
    background-size: 1200px 1200px;
    animation: floatSlow 100s infinite linear;
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 45px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 50px 45px;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(45, 135, 131, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(45, 135, 131, 0.12);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-teal), var(--light-teal));
    transition: all 0.4s ease;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(45, 135, 131, 0.02) 0%, transparent 70%);
    transition: all 0.4s ease;
    transform: scale(0);
}

.testimonial-card:hover::before {
    height: 8px;
    background: linear-gradient(90deg, var(--light-teal), var(--primary-teal));
}

.testimonial-card:hover::after {
    transform: scale(1);
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 100px rgba(45, 135, 131, 0.15);
    border-color: rgba(45, 135, 131, 0.2);
    background: rgba(255, 255, 255, 1);
}

.testimonial-text {
    margin-bottom: 30px;
    position: relative;
}

.testimonial-text p {
    font-size: calc(1.2rem - 1px);
    color: #666;
    line-height: 1.9;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-text::before {
    content: '"';
    font-size: calc(4rem - 1px);
    color: #2d8783;
    position: absolute;
    top: -15px;
    left: -15px;
    opacity: 0.2;
    font-family: serif;
    z-index: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #2d8783, #4dd0e1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: calc(1.8rem - 1px);
    box-shadow: 0 8px 25px rgba(0, 181, 168, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 181, 168, 0.4);
}

.author-info {
    flex: 1;
}

.author-name {
    color: #333;
    font-size: calc(1.2rem - 1px);
    font-weight: 700;
    margin-bottom: 5px;
}

.author-info span {
    color: #2d8783;
    font-size: calc(1rem - 1px);
    font-weight: 500;
}

.testimonial-rating {
    color: #ffd700;
    font-size: calc(1.4rem - 1px);
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-teal) 0%, #1a6b67 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><circle cx="80" cy="80" r="3" fill="%23ffffff" opacity="0.05"/><circle cx="320" cy="100" r="2.5" fill="%231ED3CA" opacity="0.08"/><circle cx="100" cy="300" r="3.5" fill="%23ffffff" opacity="0.06"/><circle cx="300" cy="320" r="3" fill="%231ED3CA" opacity="0.07"/></svg>');
    background-size: 400px 400px;
    animation: floatSlow 40s infinite linear;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Additional Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .services {
        padding: 80px 25px 60px;
    }
    
    .services .services-grid,
    .home-services .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .services .service-card,
    .home-services .service-card,
    .city-services .service-card {
        padding: 35px 25px;
        min-height: auto;
    }
    
    .services .service-image,
    .home-services .service-image,
    .city-services .service-image {
        width: 120px;
        height: 120px;
    }
    
    .services .service-icon,
    .home-services .service-icon,
    .city-services .service-icon {
        height: 120px;
    }
    
    .testimonials {
        padding: 80px 25px 60px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-card {
        padding: 35px 25px;
    }
    
    .testimonial-text p {
        font-size: 1.1rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .cta {
        padding: 60px 25px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 60px 20px 40px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-text::before {
        font-size: 3rem;
        top: -10px;
        left: -10px;
    }
    
    .cta {
        padding: 50px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

/* Pricing Preview Section */
.pricing-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fdfd 0%, #ffffff 50%, #e8f8f5 100%);
    position: relative;
    overflow: hidden;
}

.pricing-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="6" fill="%232D8783" opacity="0.04"/><circle cx="800" cy="300" r="5" fill="%231ED3CA" opacity="0.05"/><circle cx="300" cy="700" r="7" fill="%232D8783" opacity="0.04"/><circle cx="700" cy="800" r="6" fill="%231ED3CA" opacity="0.06"/></svg>');
    background-size: 1000px 1000px;
    animation: floatSlow 60s infinite linear;
    pointer-events: none;
}

.pricing-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.pricing-preview-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 15px 40px rgba(45, 135, 131, 0.1);
    border: 1px solid rgba(45, 135, 131, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.pricing-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--light-teal));
    transition: height 0.3s ease;
}

.pricing-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(45, 135, 131, 0.15);
    border-color: rgba(45, 135, 131, 0.2);
}

.pricing-preview-card:hover::before {
    height: 6px;
}

.pricing-preview-card.featured {
    border: 2px solid var(--primary-teal);
    transform: scale(1.02);
    background: rgba(45, 135, 131, 0.02);
}

.pricing-preview-card.featured::before {
    height: 6px;
    background: linear-gradient(90deg, var(--light-teal), var(--primary-teal));
}

.pricing-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.pricing-preview-card h3 {
    color: var(--primary-teal);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-preview-card .price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.pricing-preview-card .original-price {
    font-size: 1.1rem;
    color: var(--text-grey);
    text-decoration: line-through;
    font-weight: 500;
}

.pricing-preview-card .discounted-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-teal);
}

.pricing-preview-card p {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.savings-badge {
    background: linear-gradient(135deg, #ff6b35, #ff4081);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.service-prices {
    margin-bottom: 20px;
}

.service-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(45, 135, 131, 0.1);
}

.service-price-row:last-child {
    border-bottom: none;
}

.service-price-row span:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

.service-price-row .price {
    font-weight: 600;
    color: var(--primary-teal);
}

.service-price-row .price small {
    color: var(--text-grey);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 5px;
}

.pricing-note {
    color: var(--text-grey);
    font-size: 0.85rem;
    font-style: italic;
}

.pricing-preview-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.view-full-pricing {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-teal), var(--light-teal));
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(45, 135, 131, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.view-full-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 135, 131, 0.4);
}

.pricing-disclaimer {
    color: var(--text-grey);
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

/* Mobile Responsive for Pricing Preview */
@media (max-width: 768px) {
    .pricing-preview {
        padding: 80px 0;
    }
    
    .pricing-preview-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pricing-preview-card {
        padding: 25px 20px;
    }
    
    .pricing-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .pricing-preview-card h3 {
        font-size: 1.3rem;
    }
    
    .pricing-preview-card .discounted-price {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .pricing-preview {
        padding: 60px 0;
    }
    
    .pricing-preview-card {
        padding: 20px 15px;
    }
    
    .pricing-icon {
        font-size: 2rem;
    }
    
    .pricing-preview-card h3 {
        font-size: 1.2rem;
    }
    
    .view-full-pricing {
        padding: 15px 30px;
        font-size: 1rem;
    }
}