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

/* Performance optimizations */
*,
*::before,
*::after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Optimize rendering for animations */
.hero-text,
.hero-image,
.hero-stats,
.btn,
.service-card,
.water-drop,
.services::before,
.services::after {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

html {
    scroll-behavior: smooth;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

html::-webkit-scrollbar {
    display: none; /* WebKit browsers (Chrome, Safari, Edge) */
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

body::-webkit-scrollbar {
    display: none; /* WebKit browsers (Chrome, Safari, Edge) */
}

/* Additional fallback for any scrollable elements */
* {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

*::-webkit-scrollbar {
    display: none; /* WebKit browsers (Chrome, Safari, Edge) */
}

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

/* Color Variables */
:root {
    --primary-blue: #0066cc;
    --dark-blue: #004d99;
    --light-blue: #3399ff;
    --water-blue: #00aaff;
    --navy: #1a1a2e;
    --delft-blue: #1e3a8a;
    --greyish-navy: #374151;
    --charcoal: #ffffff;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --green: #32cd32;
    --light-green: #66dd00;
    --gradient-green: linear-gradient(135deg, #32cd32 0%, #66dd00 100%);
    --gradient-blue: linear-gradient(135deg, #0066cc 0%, #00aaff 100%);
    --gradient-dark: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    --water-gradient: linear-gradient(45deg, #0066cc, #00aaff, #3399ff);
}

/* Animations */
@keyframes glow-pulse {
    0% {
        box-shadow: 
            0 0 20px rgba(50, 205, 50, 0.6),
            0 0 40px rgba(50, 205, 50, 0.4),
            0 15px 35px rgba(50, 205, 50, 0.3);
    }
    100% {
        box-shadow: 
            0 0 25px rgba(50, 205, 50, 0.9),
            0 0 50px rgba(50, 205, 50, 0.7),
            0 15px 35px rgba(50, 205, 50, 0.5);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-30px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(30px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes waterDrop {
    0% {
        transform: translate3d(0, -100px, 0) scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate3d(0, 100vh, 0) scale(1);
        opacity: 0;
    }
}

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

@keyframes ripple {
    0% {
        transform: scale3d(0, 0, 1);
        opacity: 1;
    }
    100% {
        transform: scale3d(4, 4, 1);
        opacity: 0;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
    transform: translateY(0);
    opacity: 1;
    height: 70px;
}

.navbar.hero-nav {
    background: transparent;
    backdrop-filter: none;
}

/* Mobile nav-menu in hero mode */
@media (max-width: 768px) {
    .navbar.hero-nav .nav-menu {
        display: flex;
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(128, 128, 128, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        z-index: 999;
    }
}

/* Desktop nav-menu in hero mode - hidden */
@media (min-width: 769px) {
    .navbar.hero-nav .nav-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar.hero-nav .nav-menu.active {
        left: 0;
    }
}

.navbar.hero-nav .nav-logo {
    display: block !important;
}

.navbar.hero-nav .nav-call-button {
    display: block !important;
}

.navbar.hero-nav .nav-toggle {
    display: flex !important;
}


.navbar.visible {
    background: var(--greyish-navy) !important;
    backdrop-filter: blur(10px) !important;
}

/* Desktop nav-menu when navbar is visible */
@media (min-width: 769px) {
    .navbar.visible .nav-menu {
        display: flex !important;
        position: static !important;
        left: auto !important;
        top: auto !important;
        flex-direction: row !important;
        background: transparent !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
        width: auto !important;
        text-align: left !important;
        padding: 0 !important;
        gap: 2rem;
    }
}

/* Mobile nav-menu when navbar is visible */
@media (max-width: 768px) {
    .navbar.visible .nav-menu {
        display: flex !important;
        position: fixed !important;
        left: -100% !important;
        top: 70px !important;
        flex-direction: column !important;
        background: rgba(128, 128, 128, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3) !important;
        width: 100% !important;
        text-align: center !important;
        padding: 2rem 0 !important;
        z-index: 999 !important;
    }
    
    .navbar.visible .nav-menu.active {
        left: 0 !important;
    }
}

.navbar.visible .nav-logo {
    display: block !important;
}

.navbar.visible .nav-call-button {
    display: block !important;
}

.navbar.visible .nav-toggle {
    display: flex !important;
}


.navbar.visible .call-btn {
    border-color: var(--light-green);
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(127, 255, 0, 0.3);
}

.navbar.visible .call-btn:hover {
    border-color: var(--green);
    color: var(--dark-blue);
    box-shadow: 0 6px 20px rgba(127, 255, 0, 0.4);
}

.navbar.visible .nav-toggle {
    display: flex !important;
}

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

.nav-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
}
@media (min-width: 769px) {
    .nav-logo-img {
        height: 160px;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-link:hover {
    color: var(--light-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-green);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 22px;
    height: 3px;
    background: var(--light-green);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-right-group {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-right: 0.4rem;
}

.nav-call-button {
    margin: 0;
}

.call-btn {
    background: transparent;
    color: var(--light-green);
    padding: 10px 12px;
    border-radius: 50%;
    border: 2px solid var(--navy);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(26, 26, 46, 0.3);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.call-btn:hover {
    border-color: var(--light-green);
    color: var(--green);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(127, 255, 0, 0.4);
}

.call-btn i {
    font-size: 1.1rem;
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="3" fill="url(%23a)"/><circle cx="400" cy="100" r="2" fill="url(%23a)"/><circle cx="600" cy="300" r="4" fill="url(%23a)"/><circle cx="800" cy="150" r="2" fill="url(%23a)"/><circle cx="300" cy="400" r="3" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 10px 20px 0;
    min-height: 100vh;
}

.hero-text {
    opacity: 0;
    animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
    text-align: center;
    width: 100%;
    will-change: transform, opacity;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20rem;
    line-height: 1.2;
    text-align: center;
}

.hero-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-green);
    margin: 1rem auto;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2rem;
    max-width: 500px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    width: 100%;
    align-items: center;
}

.btn-hero-call {
    background: var(--light-green);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(127, 255, 0, 0.3);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-width: 160px;
    justify-content: center;
}

.btn-hero-call:hover {
    background: var(--green);
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 12px 35px rgba(127, 255, 0, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-hero-call i {
    font-size: 1rem;
}

.hero-image {
    position: relative;
    opacity: 0;
    animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
    will-change: transform, opacity;
}

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

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.7;
    filter: brightness(0.8);
    z-index: -1;
    display: block !important;
    visibility: visible !important;
}

/* NUCLEAR OPTION: Force video visible on ALL desktop screens and zoom levels */
@media (min-width: 769px) {
    .hero-video,
    #heroVideo,
    video#heroVideo {
        display: block !important;
        visibility: visible !important;
        opacity: 0.7 !important;
        z-index: -1 !important;
        width: 100vw !important;
        height: 100vh !important;
        min-width: 100% !important;
        min-height: 100% !important;
        max-width: none !important;
        max-height: none !important;
        object-fit: cover !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        pointer-events: none !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
    
    .hero-video-background {
        display: block !important;
        visibility: visible !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        z-index: -2 !important;
        overflow: hidden !important;
    }
    
    /* Make sure hero section doesn't hide the video */
    .hero {
        position: relative !important;
    }
}

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

.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 4;
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 10px;
}

.video-loading i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--light-green);
}

.video-loading p {
    margin: 0;
    font-size: 1.1rem;
}

.water-drop {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--transparent);
    border-radius: 50%;
    animation: waterDrop 3s linear infinite;
}

.water-drop:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.water-drop:nth-child(2) {
    left: 50%;
    animation-delay: 1s;
}

.water-drop:nth-child(3) {
    left: 80%;
    animation-delay: 2s;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
    will-change: transform, opacity;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--water-blue);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
    color: #b3b3b3;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}



/* Enhanced effects for both desktop hover and mobile touch */
.btn.btn-primary:hover,
.btn.btn-primary:active,
.btn.btn-primary:focus {
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease;
    will-change: transform, box-shadow;
}

/* Mobile-specific touch effects - optimized */
@media (hover: none) and (pointer: coarse) {
    .btn.btn-primary:active,
    .btn.btn-primary:focus {
        transform: translate3d(0, -5px, 0) scale3d(1.1, 1.1, 1);
        box-shadow: 0 12px 30px rgba(50, 205, 50, 0.6);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
        filter: brightness(1.05);
        will-change: transform, box-shadow, filter;
    }
    
    .btn-primary {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
}

/* Simplified button effects */
.btn-primary {
    background: var(--gradient-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease;
    transform: translate3d(0, 0, 0);
    will-change: transform, box-shadow;
}




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

.btn-secondary:hover {
    background: var(--water-blue);
    color: var(--white);
    transform: translate3d(0, -2px, 0);
    transition: transform 0.25s ease;
}

.btn-full {
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease;
    will-change: transform, box-shadow;
}

.btn-full:hover {
    transform: translate3d(0, -2px, 0) scale3d(1.02, 1.02, 1);
    box-shadow: 0 8px 25px rgba(50, 205, 50, 0.4);
}


.btn.btn-hero-large {
    font-size: 1.5rem;
    padding: 11px 40px;
    min-width: 240px;
    border-radius: 12px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    will-change: transform, box-shadow;
}

.btn.btn-hero-large:hover,
.btn.btn-hero-large:active,
.btn.btn-hero-large:focus {
    transform: translate3d(0, -4px, 0) scale3d(1.05, 1.05, 1);
    box-shadow: 
        0 0 20px rgba(50, 205, 50, 0.8),
        0 0 40px rgba(50, 205, 50, 0.6),
        0 15px 35px rgba(50, 205, 50, 0.4);
    filter: brightness(1.1);
    animation: glow-pulse 2s ease-in-out infinite alternate;
}


.btn-green-bubble {
    background: var(--gradient-green);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.3);
    transition: all 0.3s ease;
    margin: 0 10px;
}

.btn-green-bubble:hover {
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 8px 25px rgba(50, 205, 50, 0.4);
    color: var(--white);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-buttons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    padding-left: 20px;
}

.contact .section-header {
    text-align: left;
}

@media (max-width: 768px) {
    .contact-buttons {
        flex-direction: column;
        gap: 15px;
        padding-left: 0;
        justify-content: center;
    }
    
    .btn-green-bubble {
        margin: 0;
        width: 200px;
        text-align: center;
    }
    
    .contact .section-header {
        text-align: center;
    }
}

/* Map Modal Styles */
.map-modal-content {
    max-width: 800px;
    width: 90%;
}

.service-areas-info {
    margin-top: 20px;
    text-align: center;
}

.service-areas-info p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 15px;
}

.service-areas-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.service-areas-list li {
    background: var(--gradient-green);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(50, 205, 50, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-areas-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.3);
    background: linear-gradient(135deg, #32cd32, #228b22);
}

.service-areas-list li a {
    color: var(--white);
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.service-areas-list li a:hover {
    color: var(--white);
    text-decoration: none;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border-radius: 12px;
}

.close-map-modal {
    color: var(--gray);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-map-modal:hover {
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    .map-modal-content {
        width: 95%;
        margin: 20px auto;
    }
    
    .service-areas-list {
        flex-direction: column;
        align-items: center;
    }
    
    .service-areas-list li {
        width: 200px;
        text-align: center;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

/* Business Hours Alignment */
.business-hours {
    list-style: none;
    padding: 0;
}

.business-hours li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.business-hours .day {
    display: inline-block;
    width: 100px;
    text-align: left;
}

.business-hours .time {
    display: inline-block;
    text-align: right;
    flex: 1;
}

/* Footer Brand Section Positioning */
.footer-section:first-child {
    margin-top: -15px;
}

/* Checkbox Group Styles */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--light-green);
    cursor: pointer;
}

.checkbox-item label {
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.checkbox-item input[type="checkbox"]:checked + label {
    color: var(--light-green);
    font-weight: 600;
}

@media (max-width: 768px) {
    .checkbox-group {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--water-blue);
    position: relative;
    overflow: hidden;
}

.services::before,
.services::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100px;
    background: transparent;
    pointer-events: none;
}

.services::before {
    top: 0;
    left: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    border-radius: 0 0 50% 50%;
    transform: scale3d(2.5, 1, 1);
    animation: waterWave1 12s ease-in-out infinite;
    will-change: transform;
}

.services::after {
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    border-radius: 50% 50% 0 0;
    transform: scale3d(2, 1, 1);
    animation: waterWave2 15s ease-in-out infinite reverse;
    will-change: transform;
}

.services .water-wave {
    position: absolute;
    top: 50%;
    left: -100%;
    width: 300%;
    height: 60px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.06) 25%, 
        rgba(255,255,255,0.12) 50%, 
        rgba(255,255,255,0.06) 75%, 
        transparent 100%);
    border-radius: 50px;
    animation: flowingWave 15s linear infinite;
    pointer-events: none;
}

@keyframes waterWave1 {
    0%, 100% {
        transform: scale3d(2.5, 1, 1) translate3d(-5%, 0, 0);
        opacity: 0.6;
    }
    50% {
        transform: scale3d(2.2, 1, 1) translate3d(5%, 0, 0);
        opacity: 0.8;
    }
}

@keyframes waterWave2 {
    0%, 100% {
        transform: scale3d(2, 1, 1) translate3d(8%, 0, 0);
        opacity: 0.4;
    }
    50% {
        transform: scale3d(1.8, 1, 1) translate3d(-8%, 0, 0);
        opacity: 0.6;
    }
}

@keyframes flowingWave {
    0% {
        transform: translate3d(-100%, 0, 0) rotate(-2deg);
    }
    100% {
        transform: translate3d(100%, 0, 0) rotate(2deg);
    }
}

@media (min-width: 769px) {
    .services {
        padding: 120px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

@media (min-width: 769px) {
    .section-header {
        margin-bottom: 5rem;
    }
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    width: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-blue);
    transition: all 0.3s ease;
    z-index: 1;
    opacity: 0.05;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.service-features span {
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Service Card Layout with Button Below Image */
.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.service-title-box {
    background: white;
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.service-title-box h3 {
    margin: 0;
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 8px 8px 0 0;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    image-rendering: auto;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    filter: contrast(1.05) saturate(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 102, 204, 0.75), rgba(0, 170, 255, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    text-align: center;
    padding: 1rem;
}

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

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

.service-card:hover,
.service-card:active,
.service-card.active {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.2);
}

.service-card:active {
    transform: translateY(-3px) scale(0.98);
}

/* Mobile tap feedback */
@media (max-width: 768px) {
    .service-card {
        -webkit-tap-highlight-color: rgba(0, 102, 204, 0.1);
        tap-highlight-color: rgba(0, 102, 204, 0.1);
    }
    
    .service-card:active {
        transform: translateY(-2px) scale(0.97);
        box-shadow: 0 10px 25px rgba(0, 102, 204, 0.25);
    }
    
    .service-card:active .service-overlay {
        opacity: 1;
    }
}

.service-overlay h3 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-overlay p {
    color: white;
    font-size: 0.9rem;
    margin: 0.5rem 0 0 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-card-footer {
    padding: 0 1.2rem 0;
    text-align: center;
    background: var(--white);
    margin-top: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-learn-more {
    background: var(--gradient-green);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.3);
}

.btn-learn-more:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(50, 205, 50, 0.4);
    background: linear-gradient(135deg, #28a745 0%, #32cd32 100%);
}

/* Service Detail Pages */
.service-details {
    padding: 100px 0;
    background: var(--light-gray);
    display: none;
}

.service-detail-header {
    text-align: center;
    margin-bottom: 3rem;
}

.back-to-services {
    background: var(--gray);
    color: var(--white);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.back-to-services:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.service-detail-image {
    position: sticky;
    top: 120px;
}

.detail-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-detail-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.importance-section,
.benefits-section,
.longevity-section,
.frequency-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-detail-info h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--light-green);
    display: inline-block;
}

.service-detail-info p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-detail-info ul {
    list-style: none;
    padding: 0;
}

.service-detail-info ul li {
    color: var(--gray);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-detail-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
    font-size: 1.2rem;
}

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

.frequency-item {
    background: rgba(0, 102, 204, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid var(--primary-blue);
}

.frequency-item h4 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.frequency-item p {
    color: var(--green);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.frequency-item small {
    color: var(--gray);
    font-size: 0.9rem;
}

.cta-section {
    text-align: center;
    padding: 3rem;
    background: var(--gradient-blue);
    border-radius: 20px;
    margin-top: 2rem;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    border-radius: 30px;
    background: var(--gradient-green);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(50, 205, 50, 0.3);
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(50, 205, 50, 0.4);
    background: linear-gradient(135deg, #28a745 0%, #32cd32 100%);
}

/* Responsive Design for Service Details */
@media (max-width: 1024px) {
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-detail-image {
        position: static;
    }
    
    .frequency-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-img {
        object-fit: cover;
        object-position: center 30%;
    }
    
    .service-overlay {
        padding: 1.5rem;
    }
    
    .service-overlay h3 {
        font-size: 1.2rem;
    }
    
    .service-card-footer {
        padding: 1rem;
    }
    
    .btn-learn-more {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .service-details {
        padding: 60px 0;
    }
    
    .importance-section,
    .benefits-section,
    .longevity-section,
    .frequency-section {
        padding: 1.5rem;
    }
    
    .service-detail-info h3 {
        font-size: 1.5rem;
    }
    
    .detail-img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .service-card {
        max-width: 320px;
        margin: 0 auto;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 102, 204, 0.2);
    }
    
    .service-image {
        height: 180px;
        border-radius: 15px 15px 0 0;
    }
    
    .service-img {
        object-fit: cover;
        object-position: center 30%;
    }
    
    .service-overlay {
        padding: 1rem;
        background: linear-gradient(transparent 20%, rgba(0, 0, 0, 0.8) 100%);
    }
    
    .service-overlay h3 {
        font-size: 1rem;
    }
    
    .service-card-footer {
        padding: 0.2rem 1.2rem 0.05rem;
        background: var(--white);
        border-radius: 0 0 15px 15px;
    }
    
    .btn-learn-more {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        font-weight: 600;
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .btn-learn-more:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
    }
    
    .see-more-container {
        margin-top: 2.5rem;
        padding: 1.5rem 0;
    }
    
    .see-more-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 10px;
    }
}

/* Service Detail Modals */
.service-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.service-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.service-modal-content {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    max-height: 90vh;
    width: 90%;
    overflow: hidden;
    animation: slideIn 0.3s ease;
}

.service-modal-header {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.close-service-modal {
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
    cursor: pointer;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-service-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.service-modal-body {
    padding: 2rem;
    max-height: calc(90vh - 120px);
    overflow-y: auto;
}

.service-modal-section {
    margin-bottom: 2rem;
}

.service-modal-section:last-of-type {
    margin-bottom: 0;
}

.service-modal-section h3 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-green);
    display: inline-block;
}

.service-modal-section p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 0;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-list li {
    color: var(--gray);
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(0, 102, 204, 0.1);
}

.process-list li:last-child {
    border-bottom: none;
}

.process-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0.5rem;
    background: var(--gradient-green);
    color: var(--white);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.process-list {
    counter-reset: step-counter;
}

.service-modal-cta {
    text-align: center;
    padding: 2rem 0 1rem;
    border-top: 2px solid var(--light-gray);
    margin-top: 2rem;
}

/* Modal Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Responsive for Service Modals */
@media (max-width: 768px) {
    .service-modal-content {
        width: 95%;
        max-height: 95vh;
        margin: 0 2.5%;
    }
    
    .service-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .service-modal-header h2 {
        font-size: 1.3rem;
    }
    
    .service-modal-body {
        padding: 1.5rem;
        max-height: calc(95vh - 100px);
    }
    
    .service-modal-section h3 {
        font-size: 1.1rem;
    }
    
    .close-service-modal {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}

/* See More Services Button - Updated */
.see-more-container {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem 0;
}

button.see-more-btn, .see-more-btn {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.3) 0%, rgba(233, 236, 239, 0.3) 100%) !important;
    border: 2px dashed rgba(206, 212, 218, 0.4) !important;
    color: var(--primary-blue) !important;
    padding: 1rem 2rem !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    min-width: 220px;
    font-family: inherit;
    font-size: 1rem !important;
}

.see-more-btn:hover {
    background: linear-gradient(135deg, rgba(233, 236, 239, 0.5) 0%, rgba(222, 226, 230, 0.5) 100%) !important;
    border-color: var(--primary-blue) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
}

.see-more-btn i {
    font-size: 1.2rem;
    color: var(--primary-blue) !important;
    margin-bottom: 0.25rem;
}

.see-more-btn span {
    font-weight: 600;
    color: #495057 !important;
    font-size: 0.95rem;
}

.see-more-btn small {
    font-size: 0.75rem;
    color: #6c757d !important;
    font-weight: 400;
    line-height: 1.2;
}

/* Extra Services Modal */
.extra-services-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.extra-services-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.extra-services-content {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    max-height: 90vh;
    width: 90%;
    overflow: hidden;
    position: relative;
}

.extra-services-header {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.extra-services-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.close-extra-services {
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-extra-services:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.extra-services-body {
    padding: 2rem;
    max-height: calc(90vh - 120px);
    overflow-y: auto;
}

.extra-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.extra-service-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.extra-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.extra-service-image {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.extra-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.extra-service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 1rem;
}

.extra-service-overlay h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.extra-service-footer {
    padding: 1rem;
    text-align: center;
}

@media (max-width: 768px) {
    .extra-services-content {
        width: 95%;
        max-height: 95vh;
        margin: 0 2.5%;
    }
    
    .extra-services-header {
        padding: 1rem 1.5rem;
    }
    
    .extra-services-header h2 {
        font-size: 1.3rem;
    }
    
    .extra-services-body {
        padding: 1.5rem;
        max-height: calc(95vh - 100px);
    }
    
    .extra-services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .close-extra-services {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}

/* About Section */
.about-us-label {
    margin-bottom: 1rem;
}

.about-us-label h3 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(0, 102, 204, 0.1);
    border-left: 4px solid var(--primary-blue);
    border-radius: 4px;
    margin-bottom: 0;
    text-align: center;
}

.about-description {
    margin-bottom: 2rem;
}

.about-description p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.7;
}

.about-description p:last-child {
    margin-bottom: 0;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
    }
}
.about {
    padding: 100px 0;
    background: #d5ead5;
}

@media (min-width: 769px) {
    .about {
        padding: 120px 0;
    }
}

.about .section-header h2 {
    color: var(--gray);
}

.about .section-header p {
    color: var(--gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    opacity: 0;
    animation: fadeInLeft 1s ease forwards;
}

.about-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.3rem;
}

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

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--gray);
    font-size: 0.9rem;
}

.about-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInRight 1s ease 0.3s forwards;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

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

.about-video {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInRight 1s ease 0.3s forwards;
    object-fit: cover;
    position: relative;
}

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

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-overlay {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(108, 117, 125, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px 50px;
    border-radius: 15px;
    text-align: center;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    min-width: 300px;
}

.video-overlay p {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.about-button-container {
    text-align: center;
    margin-top: 2rem;
}

.btn-about-custom {
    background: #32cd32;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-about-custom:hover {
    background: #28a428;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
    
.image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--gradient-blue);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Gallery Section */
.gallery {
    padding: 50px 0;
    background: linear-gradient(to bottom, #d5ead5 0%, var(--light-gray) 100%);
}

@media (min-width: 769px) {
    .gallery {
        padding: 120px 0;
    }
}

.gallery .section-header h2 {
    color: var(--gray);
}

.gallery .section-header p {
    color: var(--gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }


.gallery-placeholder {
    width: 100%;
    height: 250px;
    background: var(--gradient-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.gallery-placeholder p {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

.gallery-title {
    width: 100%;
    height: 60px;
    background: #00ccff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    position: relative;
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, transparent, rgba(0, 102, 204, 0.3));
}

.gallery-image-container {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}


.before-after-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    pointer-events: none;
}

.before-label,
.after-label {
    position: absolute;
    background: rgba(0, 102, 204, 0.95);
    color: white;
    padding: 8px 18px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    z-index: 3;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 75px;
    text-align: center;
}

.before-label {
    top: 12px;
    left: 12px;
}

.after-label {
    bottom: 12px;
    right: 12px;
}

/* Gallery Mobile Responsive */
@media (max-width: 768px) {
    .gallery-image-container {
        height: 200px;
    }
    
    .before-label,
    .after-label {
        font-size: 0.7rem;
        padding: 6px 14px;
        letter-spacing: 1.5px;
        font-weight: 600;
        min-width: 60px;
        text-align: center;
        background: rgba(0, 102, 204, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .before-label {
        top: 10px;
        left: 10px;
    }
    
    .after-label {
        bottom: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-image-container {
        height: 180px;
    }
    
    .before-label,
    .after-label {
        font-size: 0.6rem;
        padding: 5px 12px;
        letter-spacing: 1px;
        font-weight: 600;
        min-width: 50px;
        text-align: center;
        background: rgba(0, 102, 204, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .before-label {
        top: 8px;
        left: 8px;
    }
    
    .after-label {
        bottom: 8px;
        right: 8px;
    }
}

/* Desktop - Smaller service cards and images */
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .service-image {
        height: 170px;
    }
    
    .service-title-box {
        padding: 0.75rem;
    }
    
    .service-title-box h3 {
        font-size: 1rem;
    }
}

/* Desktop - Wider spaced labels */
@media (min-width: 1024px) {
    .before-label,
    .after-label {
        font-size: 0.8rem;
        padding: 8px 20px;
        border-radius: 15px;
        min-width: 80px;
        font-weight: 600;
        letter-spacing: 2.5px;
    }
    
    .before-label {
        top: 10px;
        left: 10px;
    }
    
    .after-label {
        bottom: 10px;
        right: 10px;
    }
}


/* Clickable Gallery Images */
.clickable-image {
    cursor: pointer;
    transition: transform 0.2s ease;
}


/* Full-Screen Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.image-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    margin: auto;
}

.close-image-modal {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.close-image-modal:hover {
    background: rgba(0, 0, 0, 0.8);
}

.modal-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.modal-image {
    width: 100%;
    height: auto;
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-before-after-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    pointer-events: none;
}

.modal-before-label,
.modal-after-label {
    position: absolute;
    background: rgba(0, 102, 204, 1);
    color: white;
    padding: 30px 50px;
    border-radius: 45px;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 3px;
    z-index: 3;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    border: 4px solid rgba(255, 255, 255, 0.5);
    min-width: 250px;
    min-height: 90px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-before-label {
    top: 20px;
    left: 20px;
}

.modal-after-label {
    top: 20px;
    right: 20px;
}

/* Hide all blue tabs in full screen on all devices */
.modal-before-label,
.modal-after-label {
    display: none !important;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Contact Section */
.contact {
    padding: 50px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

@media (min-width: 769px) {
    .contact {
        padding: 120px 0;
    }
}

.contact::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"><defs><radialGradient id="b" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%2300aaff" stop-opacity="0.1"/><stop offset="100%" stop-color="%2300aaff" stop-opacity="0"/></radialGradient></defs><circle cx="100" cy="100" r="2" fill="url(%23b)"/><circle cx="300" cy="200" r="3" fill="url(%23b)"/><circle cx="500" cy="50" r="2" fill="url(%23b)"/><circle cx="700" cy="300" r="4" fill="url(%23b)"/><circle cx="900" cy="150" r="2" fill="url(%23b)"/></svg>');
    opacity: 0.3;
}

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

.contact-info {
    opacity: 0;
    animation: fadeInLeft 1s ease forwards;
}

.contact-info .section-header h2 {
    color: white;
}

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

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }

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

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

.contact-text h4 {
    color: var(--black);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-text p {
    color: var(--light-green);
    font-size: 1rem;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: fadeInRight 1s ease 0.3s forwards;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--light-green);
    box-shadow: 0 0 0 3px rgba(102, 221, 0, 0.15);
}

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

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--gray);
    padding: 50px 0 20px;
}

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

.footer-section h3 {
    color: var(--water-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #b3b3b3;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
    color: #b3b3b3;
}

.footer-section ul li a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--water-blue);
    text-decoration: underline;
}

/* Specific styling for contact info links */
.footer-section ul li a[href^="tel:"],
.footer-section ul li a[href^="mailto:"],
.footer-section ul li a[href*="maps.google"] {
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-section ul li a[href^="tel:"]:hover,
.footer-section ul li a[href^="mailto:"]:hover,
.footer-section ul li a[href*="maps.google"]:hover {
    color: var(--light-green);
    text-decoration: none;
    transform: translateX(5px);
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--water-blue);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-blue);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.4);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
    color: #b3b3b3;
}

/* Desktop Enhancements */
@media (min-width: 769px) {
    .container {
        max-width: 1400px;
        padding: 0 40px;
    }
    
    .hero-content {
        max-width: 1000px;
        padding: 20px 40px 0;
    }
    
    .hero-title {
        font-size: 4.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .service-card {
        padding: 3rem 2rem;
    }
    
    .about-content {
        gap: 6rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .contact-content {
        gap: 6rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .footer-content {
        max-width: 1200px;
        margin: 0 auto 2rem;
        grid-template-columns: repeat(4, 1fr);
    }
    
    .nav-container {
        max-width: 1400px;
        padding: 0 40px;
    }
    
    .nav-menu {
        gap: 3rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .section-header p {
        font-size: 1.3rem;
    }
    
    .hero-buttons {
        margin-top: 2rem;
    }
    
    .btn-hero-large {
        font-size: 1.8rem !important;
        padding: 18px 50px !important;
        min-width: 280px !important;
    }
    
    .about-image {
        height: 400px;
    }
    
    .about-video {
        height: 450px;
    }
    
    .feature-item {
        margin-bottom: 2.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-content h4 {
        font-size: 1.4rem;
    }
    
    .feature-content p {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 3rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-text h4 {
        font-size: 1.3rem;
    }
    
    .contact-text p {
        font-size: 1.1rem;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .services-grid {
        gap: 4rem;
    }
    
    .service-card {
        padding: 3.5rem 2.5rem;
    }
    
    .about-content {
        gap: 8rem;
    }
    
    .contact-content {
        gap: 8rem;
    }
    
    .about-video {
        height: 500px;
    }
}

/* Responsive Design */
.nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(128, 128, 128, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
    z-index: 999;
}

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

@media (min-width: 769px) {
    .navbar.visible .nav-menu {
        position: static;
        flex-direction: row;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        width: auto;
        padding: 0;
        left: auto;
        top: auto;
    }
    
    .navbar.visible .nav-toggle {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-call-button {
        margin: 0;
    }
    
    .call-btn {
        padding: 8px 10px;
        border-width: 2px;
    }
    
    .call-btn i {
        font-size: 1rem;
    }
    
    .btn-hero-call {
        font-size: 1rem;
        padding: 12px 20px;
        min-width: 140px;
    }

    .hero-content {
        text-align: center;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    /* About section mobile optimizations */
    .about {
        padding: 50px 0;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-description {
        margin-bottom: 1rem;
    }

    .about-description p {
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .about-features {
        margin: 1rem 0;
    }

    .feature-item {
        margin-bottom: 1rem;
    }

    .feature-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }

    .feature-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .about-button-container {
        margin-top: 1rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-card,
    .contact-form {
        padding: 1.5rem;
    }


    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: loading 1.5s infinite;
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 55%;
    max-width: 480px;
    max-height: 70vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.modal-content::-webkit-scrollbar {
    display: none; /* WebKit browsers (Chrome, Safari, Edge) */
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem 1rem;
    border-bottom: 1px solid #e9ecef;
}

.modal-header h2 {
    color: var(--gray);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray);
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-blue);
    transform: rotate(90deg);
}

.modal-body {
    padding: 1.5rem 2rem 2rem;
}

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

.modal-body .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.modal-body .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray);
    font-weight: 500;
}

.modal-body .form-group input,
.modal-body .form-group select,
.modal-body .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.modal-body .form-group input:focus,
.modal-body .form-group select:focus,
.modal-body .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.modal-body .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.modal-body .btn-full {
    width: 100%;
    margin-top: 1rem;
}

/* Modal Animation */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.7);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes modalFadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.7);
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 70%;
        max-width: 400px;
        max-height: 75vh;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-body .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 80%;
        max-width: 350px;
        max-height: 80vh;
    }
    
    .modal-header,
    .modal-body {
        padding: 1rem;
    }
    
    /* Mobile-specific contact link styling */
    .footer-section ul li a[href^="tel:"],
    .footer-section ul li a[href^="mailto:"],
    .footer-section ul li a[href*="maps.google"] {
        font-size: 0.9rem;
        padding: 2px 0;
        display: inline-block;
    }
}

/* Reviews Section */
.reviews {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #e6f3ff 0%, #ccebff 25%, #b3e0ff 50%, #99d6ff 75%, #80ccff 100%);
    overflow: hidden;
}

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

.reviews .section-header h2 {
    color: #1a1a2e;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 102, 204, 0.3);
}

.reviews .section-header p {
    color: #2d4a7a;
    font-size: 1.1rem;
    font-weight: 500;
}

.water-droplets {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.water-droplets::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 110% 90% at 20% 30%, rgba(255, 255, 255, 0.4) 2.5px, rgba(255, 255, 255, 0.15) 3.5px, rgba(255, 255, 255, 0.05) 4.5px, transparent 5.5px),
        radial-gradient(ellipse 95% 105% at 60% 70%, rgba(255, 255, 255, 0.35) 2px, rgba(255, 255, 255, 0.12) 3px, rgba(255, 255, 255, 0.04) 4px, transparent 5px),
        radial-gradient(ellipse 120% 85% at 80% 20%, rgba(255, 255, 255, 0.45) 3.5px, rgba(255, 255, 255, 0.18) 4.5px, rgba(255, 255, 255, 0.06) 5.5px, transparent 6.5px),
        radial-gradient(ellipse 90% 110% at 30% 80%, rgba(255, 255, 255, 0.28) 1.5px, rgba(255, 255, 255, 0.1) 2.5px, rgba(255, 255, 255, 0.03) 3.5px, transparent 4.5px),
        radial-gradient(ellipse 105% 95% at 70% 40%, rgba(255, 255, 255, 0.38) 2.8px, rgba(255, 255, 255, 0.14) 3.8px, rgba(255, 255, 255, 0.05) 4.8px, transparent 5.8px),
        radial-gradient(ellipse 100% 100% at 40% 60%, rgba(255, 255, 255, 0.25) 2.2px, rgba(255, 255, 255, 0.08) 3.2px, rgba(255, 255, 255, 0.03) 4.2px, transparent 5.2px),
        radial-gradient(ellipse 85% 115% at 90% 80%, rgba(255, 255, 255, 0.32) 1.8px, rgba(255, 255, 255, 0.11) 2.8px, rgba(255, 255, 255, 0.04) 3.8px, transparent 4.8px),
        radial-gradient(ellipse 115% 90% at 10% 90%, rgba(255, 255, 255, 0.3) 2.5px, rgba(255, 255, 255, 0.09) 3.5px, rgba(255, 255, 255, 0.03) 4.5px, transparent 5.5px),
        radial-gradient(ellipse 95% 105% at 50% 10%, rgba(255, 255, 255, 0.26) 2.2px, rgba(255, 255, 255, 0.1) 3.2px, rgba(255, 255, 255, 0.04) 4.2px, transparent 5.2px),
        radial-gradient(ellipse 110% 95% at 85% 50%, rgba(255, 255, 255, 0.4) 3.2px, rgba(255, 255, 255, 0.15) 4.2px, rgba(255, 255, 255, 0.05) 5.2px, transparent 6.2px),
        radial-gradient(ellipse 90% 110% at 15% 50%, rgba(255, 255, 255, 0.31) 1.8px, rgba(255, 255, 255, 0.12) 2.8px, rgba(255, 255, 255, 0.04) 3.8px, transparent 4.8px),
        radial-gradient(ellipse 105% 95% at 65% 25%, rgba(255, 255, 255, 0.35) 2.5px, rgba(255, 255, 255, 0.11) 3.5px, rgba(255, 255, 255, 0.04) 4.5px, transparent 5.5px),
        radial-gradient(ellipse 100% 100% at 35% 75%, rgba(255, 255, 255, 0.27) 2.2px, rgba(255, 255, 255, 0.09) 3.2px, rgba(255, 255, 255, 0.03) 4.2px, transparent 5.2px),
        radial-gradient(ellipse 95% 105% at 75% 85%, rgba(255, 255, 255, 0.37) 2.8px, rgba(255, 255, 255, 0.13) 3.8px, rgba(255, 255, 255, 0.05) 4.8px, transparent 5.8px),
        radial-gradient(ellipse 110% 90% at 25% 15%, rgba(255, 255, 255, 0.33) 1.8px, rgba(255, 255, 255, 0.12) 2.8px, rgba(255, 255, 255, 0.04) 3.8px, transparent 4.8px);
    animation: waterDropletField 8s ease-in-out infinite;
}

.water-droplets::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 115% 95% at 15% 60%, rgba(0, 170, 255, 0.4) 3.5px, rgba(0, 170, 255, 0.15) 4.5px, rgba(0, 170, 255, 0.05) 5.5px, transparent 6.5px),
        radial-gradient(ellipse 90% 110% at 75% 15%, rgba(0, 170, 255, 0.37) 2.8px, rgba(0, 170, 255, 0.12) 3.8px, rgba(0, 170, 255, 0.04) 4.8px, transparent 5.8px),
        radial-gradient(ellipse 105% 95% at 35% 25%, rgba(0, 170, 255, 0.33) 2.2px, rgba(0, 170, 255, 0.1) 3.2px, rgba(0, 170, 255, 0.03) 4.2px, transparent 5.2px),
        radial-gradient(ellipse 95% 105% at 65% 85%, rgba(0, 170, 255, 0.39) 3.2px, rgba(0, 170, 255, 0.14) 4.2px, rgba(0, 170, 255, 0.05) 5.2px, transparent 6.2px),
        radial-gradient(ellipse 100% 100% at 25% 50%, rgba(0, 170, 255, 0.35) 1.8px, rgba(0, 170, 255, 0.11) 2.8px, rgba(0, 170, 255, 0.04) 3.8px, transparent 4.8px),
        radial-gradient(ellipse 110% 90% at 95% 30%, rgba(0, 170, 255, 0.31) 2.5px, rgba(0, 170, 255, 0.08) 3.5px, rgba(0, 170, 255, 0.03) 4.5px, transparent 5.5px),
        radial-gradient(ellipse 85% 115% at 45% 90%, rgba(0, 170, 255, 0.36) 2.2px, rgba(0, 170, 255, 0.12) 3.2px, rgba(0, 170, 255, 0.04) 4.2px, transparent 5.2px),
        radial-gradient(ellipse 105% 95% at 85% 65%, rgba(0, 170, 255, 0.34) 2.8px, rgba(0, 170, 255, 0.1) 3.8px, rgba(0, 170, 255, 0.03) 4.8px, transparent 5.8px),
        radial-gradient(ellipse 95% 105% at 55% 35%, rgba(0, 170, 255, 0.32) 1.8px, rgba(0, 170, 255, 0.09) 2.8px, rgba(0, 170, 255, 0.03) 3.8px, transparent 4.8px),
        radial-gradient(ellipse 120% 85% at 5% 20%, rgba(0, 170, 255, 0.38) 3.2px, rgba(0, 170, 255, 0.13) 4.2px, rgba(0, 170, 255, 0.05) 5.2px, transparent 6.2px);
    animation: waterDropletField 10s ease-in-out infinite reverse;
}

.droplet {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: dropletFloat 6s ease-in-out infinite;
}

.droplet::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 20%;
    width: 30%;
    height: 30%;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    filter: blur(1px);
}

.droplet-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.droplet-2 {
    width: 12px;
    height: 12px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.droplet-3 {
    width: 6px;
    height: 6px;
    top: 40%;
    left: 25%;
    animation-delay: 4s;
}

.droplet-4 {
    width: 10px;
    height: 10px;
    top: 75%;
    left: 70%;
    animation-delay: 1s;
}

.droplet-5 {
    width: 14px;
    height: 14px;
    top: 30%;
    left: 60%;
    animation-delay: 3s;
}

.ripple-effect {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: ripple 6s infinite;
}

.ripple-1 {
    width: 40px;
    height: 40px;
    top: 45%;
    left: 30%;
    animation-delay: 0s;
}

.ripple-2 {
    width: 60px;
    height: 60px;
    top: 65%;
    left: 75%;
    animation-delay: 2s;
}

.ripple-3 {
    width: 30px;
    height: 30px;
    top: 20%;
    left: 50%;
    animation-delay: 4s;
}

.splash-effect {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(0, 170, 255, 0.6) 30%,
        rgba(0, 170, 255, 0.3) 60%,
        transparent 100%
    );
    animation: splash 4s infinite;
}

.splash-effect::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(
        ellipse,
        transparent 20%,
        rgba(255, 255, 255, 0.2) 25%,
        rgba(0, 170, 255, 0.15) 40%,
        transparent 70%
    );
    border-radius: 50%;
    animation: splashSpread 4s infinite;
}

.splash-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 1px, transparent 2px),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.25) 1.5px, transparent 2px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.2) 1px, transparent 2px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.3) 1px, transparent 2px),
        radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.25) 1.5px, transparent 2px);
    animation: splashParticles 4s infinite;
}

.splash-1 {
    top: 35%;
    left: 25%;
    animation-delay: 0s;
}

.splash-2 {
    top: 70%;
    left: 70%;
    animation-delay: 1.5s;
}

.splash-3 {
    top: 55%;
    left: 15%;
    animation-delay: 3s;
}

.splash-4 {
    top: 20%;
    left: 80%;
    animation-delay: 2s;
}

.water-spray {
    position: absolute;
    width: 60px;
    height: 60px;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255, 255, 255, 0.1) 30deg,
        rgba(0, 170, 255, 0.2) 60deg,
        rgba(255, 255, 255, 0.15) 90deg,
        transparent 120deg,
        rgba(0, 170, 255, 0.1) 150deg,
        transparent 180deg
    );
    border-radius: 50%;
    animation: waterSpray 6s infinite;
    filter: blur(1px);
}

.spray-1 {
    top: 40%;
    left: 60%;
    animation-delay: 0s;
}

.spray-2 {
    top: 75%;
    left: 30%;
    animation-delay: 2s;
}

.spray-3 {
    top: 15%;
    left: 45%;
    animation-delay: 4s;
}

@keyframes waterDropletField {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    25% {
        opacity: 0.8;
        transform: scale(1.05);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.95);
    }
    75% {
        opacity: 0.9;
        transform: scale(1.1);
    }
}

@keyframes realisticDropletFloat {
    0% {
        transform: translateY(0px) scale(1) rotate(0deg);
        opacity: 0.7;
        border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    }
    15% {
        transform: translateY(-8px) scale(1.05) rotate(2deg);
        opacity: 0.8;
        border-radius: 48% 52% 55% 45% / 65% 58% 42% 35%;
    }
    25% {
        transform: translateY(-12px) scale(0.95) rotate(-1deg);
        opacity: 0.9;
        border-radius: 45% 55% 48% 52% / 70% 55% 45% 30%;
    }
    40% {
        transform: translateY(-18px) scale(1.1) rotate(3deg);
        opacity: 0.95;
        border-radius: 52% 48% 50% 50% / 62% 68% 32% 38%;
    }
    50% {
        transform: translateY(-22px) scale(0.9) rotate(0deg);
        opacity: 1;
        border-radius: 50% 50% 45% 55% / 68% 62% 38% 32%;
    }
    65% {
        transform: translateY(-16px) scale(1.08) rotate(-2deg);
        opacity: 0.9;
        border-radius: 55% 45% 52% 48% / 58% 65% 35% 42%;
    }
    80% {
        transform: translateY(-8px) scale(1.02) rotate(1deg);
        opacity: 0.8;
        border-radius: 48% 52% 50% 50% / 62% 58% 42% 38%;
    }
    100% {
        transform: translateY(0px) scale(1) rotate(0deg);
        opacity: 0.7;
        border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    }
}

@keyframes dropletFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes ripple {
    0% {
        transform: scale3d(0, 0, 1);
        opacity: 1;
    }
    100% {
        transform: scale3d(4, 4, 1);
        opacity: 0;
    }
}

@keyframes splash {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    15% {
        width: 40px;
        height: 40px;
        opacity: 0.9;
    }
    50% {
        width: 80px;
        height: 80px;
        opacity: 0.6;
    }
    100% {
        width: 120px;
        height: 120px;
        opacity: 0;
    }
}

@keyframes splashSpread {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    20% {
        transform: scale(0.5);
        opacity: 0.8;
    }
    60% {
        transform: scale(1.2);
        opacity: 0.4;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes splashParticles {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    30% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    70% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

@keyframes waterSpray {
    0% {
        transform: rotate(0deg) scale(0);
        opacity: 0;
    }
    25% {
        transform: rotate(90deg) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 0.6;
    }
    75% {
        transform: rotate(270deg) scale(0.8);
        opacity: 0.4;
    }
    100% {
        transform: rotate(360deg) scale(0);
        opacity: 0;
    }
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.review-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 
        0 15px 35px rgba(0, 102, 204, 0.2),
        0 5px 15px rgba(0, 170, 255, 0.3),
        0 0 30px rgba(0, 102, 204, 0.4);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 170, 255, 0.3);
    position: relative;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(0, 170, 255, 0.3) 0%, 
        rgba(0, 102, 204, 0.4) 25%, 
        rgba(51, 153, 255, 0.3) 50%, 
        rgba(0, 170, 255, 0.4) 75%, 
        rgba(0, 102, 204, 0.3) 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.5;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 50px rgba(0, 102, 204, 0.3),
        0 10px 25px rgba(0, 170, 255, 0.4),
        0 0 50px rgba(0, 102, 204, 0.6);
    background: rgba(255, 255, 255, 1);
}

.review-card:hover::before {
    opacity: 0.8;
}

.review-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    justify-content: center;
}

.review-stars i {
    color: #ffd700;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
    font-style: italic;
    text-align: center;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 5px;
    text-align: center;
}

.author-info span {
    color: var(--gray);
    font-size: 0.9rem;
    text-align: center;
}

/* Review CTA Button */
.review-cta {
    margin-top: 40px;
    text-align: center;
    position: relative;
    z-index: 3;
}

.btn-review {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--gradient-blue);
    border: none;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
}

.btn.btn-review:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.4) !important;
}

.btn-review:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.btn-review i {
    margin-right: 8px;
    color: #ffd700;
}

/* Review Modal */
#reviewModal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

#reviewModal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.review-modal-content {
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    margin: auto;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.review-modal-content .modal-header {
    background: var(--gradient-blue);
    color: white;
    padding: 20px 30px;
    border-radius: 15px 15px 0 0;
    position: relative;
}

.review-modal-content .modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    color: white;
}

.close-review-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.close-review-modal:hover {
    opacity: 0.7;
}

.review-modal-content .modal-body {
    padding: 30px;
    background: white;
    border-radius: 0 0 15px 15px;
}

.review-modal-content .modal-body p {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-size: 1rem;
    font-weight: 500;
}

.review-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.review-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

.review-form input,
.review-form textarea,
.review-form select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(0, 102, 204, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.review-form input:focus,
.review-form textarea:focus,
.review-form select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 15px rgba(0, 102, 204, 0.2);
    background: white;
}

.review-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Star Rating System */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
    margin-top: 5px;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating .star {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
    padding: 0;
    border: none;
    background: none;
    margin: 0;
}

.star-rating .star:hover,
.star-rating .star:hover ~ .star {
    color: #ffd700;
    transform: scale(1.1);
}

.star-rating input[type="radio"]:checked ~ .star {
    color: #ffd700;
}

.review-form .btn-full {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Reviews Mobile Responsive */
@media (max-width: 768px) {
    .reviews {
        padding: 60px 0;
        background: linear-gradient(135deg, #e6f3ff 0%, #ccebff 30%, #b3e0ff 60%, #99d6ff 100%);
    }
    
    .reviews .section-header h2 {
        font-size: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-card {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
    
    .btn-review {
        padding: 12px 25px;
        font-size: 1rem;
        min-height: 44px;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .reviews {
        padding: 50px 0;
    }
    
    .reviews .section-header h2 {
        font-size: 1.8rem;
    }
    
    .review-card {
        padding: 20px 15px;
    }
    
    .review-stars i {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .btn-review {
        padding: 12px 24px;
        font-size: 0.95rem;
        min-height: 48px;
        min-width: 140px;
    }
    
    .review-modal-content {
        max-width: 90%;
        margin: 10px auto;
        max-height: 85vh;
    }
    
    .review-modal-content .modal-header {
        padding: 15px 20px;
    }
    
    .review-modal-content .modal-header h2 {
        font-size: 1.4rem;
    }
    
    .review-modal-content .modal-body {
        padding: 15px 20px;
    }
    
    .star-rating .star {
        font-size: 1.8rem;
    }
}

/* More Reviews Section */
.more-reviews {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy) 0%, #16213e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.more-reviews::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 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"><animate attributeName="opacity" values="0.1;0.3;0.1" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="40" r="1.5" fill="%23ffffff" opacity="0.1"><animate attributeName="opacity" values="0.1;0.2;0.1" dur="4s" repeatCount="indefinite"/></circle><circle cx="60" cy="80" r="2.5" fill="%23ffffff" opacity="0.1"><animate attributeName="opacity" values="0.1;0.4;0.1" dur="2s" repeatCount="indefinite"/></circle></svg>');
    pointer-events: none;
}

.more-reviews .section-header h2 {
    color: white;
}

.more-reviews .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

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

.more-reviews .review-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s ease;
}

.more-reviews .review-card.featured {
    border: 2px solid var(--water-blue);
    transform: scale(1.02);
    background: rgba(0, 170, 255, 0.1);
}

.more-reviews .review-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--water-blue);
}

.more-reviews .review-card.featured:hover {
    transform: translateY(-8px) scale(1.05);
}


.more-reviews .review-text {
    color: rgba(255, 255, 255, 0.9);
}


.more-reviews .author-info h4 {
    color: white;
}

.more-reviews .author-info span {
    color: rgba(255, 255, 255, 0.7);
}

.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.reviews-stats .stat-item h3 {
    font-size: 48px;
    font-weight: 700;
    color: var(--water-blue);
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 170, 255, 0.3);
}

.reviews-stats .stat-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Responsive More Reviews */
@media (max-width: 768px) {
    .more-reviews {
        padding: 60px 0;
    }
    
    .more-reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .more-reviews .review-card.featured {
        transform: none;
    }
    
    .reviews-stats {
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
    }
    
    .reviews-stats .stat-item h3 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .more-reviews-grid {
        gap: 15px;
    }
    
    .reviews-stats {
        gap: 25px;
        margin-top: 30px;
    }
    
    .reviews-stats .stat-item h3 {
        font-size: 32px;
    }
    
    .reviews-stats .stat-item p {
        font-size: 14px;
    }
}

/* Surface Pro 7 Portrait Mode Adjustments */
@media screen and (min-width: 900px) and (max-width: 920px) and (min-height: 1350px) and (max-height: 1380px) {
    .service-image {
        height: 180px !important;
    }
    
    .service-img {
        object-fit: cover !important;
        object-position: center 25% !important;
    }
    
    .gallery-image-container {
        height: 220px !important;
    }
    
    .gallery-img {
        object-fit: cover !important;
        object-position: center 20% !important;
    }
    
    .before-label {
        top: 15px !important;
        left: 15px !important;
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
    }
    
    .after-label {
        bottom: 15px !important;
        right: 15px !important;
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
    }
    
    /* Layout Changes - "Why Choose Restored Exteriors" and "Our Servicing Areas" */
    .about-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .contact-info {
        order: 2 !important;
    }
    
    .contact-form {
        order: 1 !important;
    }
    
    /* Navigation fixes for Surface Pro 7 */
    .nav-menu {
        gap: 1.2rem !important;
    }
    
    .nav-link {
        font-size: 0.9rem !important;
        font-weight: 500 !important;
    }
    
    .nav-call-button {
        margin-left: 0.5rem !important;
    }
    
    .call-btn {
        padding: 8px 10px !important;
    }
    
    .call-btn i {
        font-size: 1rem !important;
    }
}

/* Service Auto-Select Highlight */
.service-highlighted {
    background: linear-gradient(45deg, rgba(0, 102, 204, 0.1), rgba(0, 170, 255, 0.1)) !important;
    border: 2px solid var(--primary-blue) !important;
    border-radius: 8px !important;
    padding: 8px !important;
    animation: serviceHighlight 0.6s ease-in-out !important;
    transform: scale(1.02) !important;
}

@keyframes serviceHighlight {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(0, 102, 204, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(0, 102, 204, 0.6);
    }
    100% {
        transform: scale(1.02);
        box-shadow: 0 0 10px rgba(0, 102, 204, 0.3);
    }
}

/* Premium Quote Modal Styles */
.premium-quote-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-quote-modal.active {
    display: flex;
    opacity: 1;
}

.premium-modal-backdrop {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.premium-modal-container {
    background: linear-gradient(145deg, #ffffff 0%, #f8fffe 100%);
    border-radius: 25px;
    box-shadow: 0 50px 100px rgba(0, 102, 204, 0.3);
    width: 100%;
    max-width: 900px;
    max-height: 95vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.premium-quote-modal.active .premium-modal-container {
    transform: scale(1);
}

.premium-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.premium-close-btn:hover {
    background: #fff;
    color: var(--primary-blue);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.2);
}

.premium-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--water-blue) 100%);
    padding: 3rem 2rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.premium-header::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"><defs><radialGradient id="sparkle" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.3"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="100" cy="100" r="2" fill="url(%23sparkle)"/><circle cx="300" cy="200" r="1.5" fill="url(%23sparkle)"/><circle cx="800" cy="150" r="2.5" fill="url(%23sparkle)"/><circle cx="600" cy="300" r="1" fill="url(%23sparkle)"/></svg>');
    opacity: 0.5;
}

.premium-header-content {
    position: relative;
    z-index: 2;
}

.premium-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    animation: sparkle 2s ease-in-out infinite alternate;
}

@keyframes sparkle {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(5deg); }
}

.premium-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.premium-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2rem 0;
    font-weight: 300;
}

.premium-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.premium-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
}

.form-section h3 {
    color: var(--navy);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
}

.form-section h3:before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--primary-blue);
    margin-right: 10px;
    border-radius: 2px;
}

.premium-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.premium-input-group {
    position: relative;
}

.premium-input-group.full-width {
    grid-column: 1 / -1;
}

.premium-input-group label {
    display: block;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-input-group input,
.premium-input-group textarea {
    width: 100%;
    padding: 1rem 0 0.5rem 0;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    color: var(--navy);
    outline: none;
    transition: all 0.3s ease;
}

.input-underline {
    height: 2px;
    background: #e9ecef;
    position: relative;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.input-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-blue), var(--water-blue));
    transition: width 0.3s ease;
}

.premium-input-group input:focus + .input-underline::after,
.premium-input-group textarea:focus + .input-underline::after {
    width: 100%;
}

.premium-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.premium-service-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.premium-service-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.premium-service-card label {
    display: block;
    padding: 2rem 1.5rem;
    background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e9ecef;
    border-radius: 15px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.premium-service-card:hover label::before {
    left: 100%;
}

.premium-service-card:hover label {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-blue);
}

.premium-service-card input:checked + label {
    background: linear-gradient(145deg, var(--primary-blue) 0%, var(--water-blue) 100%);
    color: white;
    border-color: var(--primary-blue);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.3);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.premium-service-card input:checked + label .service-icon {
    transform: scale(1.2);
}

.service-name {
    display: block;
    font-weight: 600;
    font-size: 1rem;
}

.service-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.premium-service-card input:checked + label .service-check {
    opacity: 1;
    transform: scale(1);
    background: white;
    color: var(--primary-blue);
}

/* See More Services Button */
.see-more-services {
    text-align: center;
    margin: 1.5rem 0;
}


.see-more-btn:hover {
    background: linear-gradient(135deg, rgba(233, 236, 239, 0.5) 0%, rgba(222, 226, 230, 0.5) 100%) !important;
    border-color: var(--primary-blue) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
}



/* Contact Form See More Button */
.contact-see-more-container {
    text-align: left;
    margin-top: 0.5rem;
    margin-left: 0;
}

.contact-see-more-btn {
    background: transparent !important;
    border: none !important;
    color: var(--primary-blue) !important;
    padding: 0.2rem 0.3rem !important;
    border-radius: 3px !important;
    font-weight: 400 !important;
    font-size: 0.9rem !important;
    cursor: pointer;
    display: inline-flex !important;
    flex-direction: row;
    align-items: center;
    gap: 0.2rem;
    min-width: auto;
    transition: all 0.3s ease;
    text-decoration: underline;
}

.contact-see-more-btn:hover {
    background: rgba(0, 102, 204, 0.1) !important;
    text-decoration: none;
}

.contact-see-more-btn i {
    font-size: 0.8rem;
    color: var(--primary-blue) !important;
}

.contact-see-more-btn span {
    font-weight: 400;
    color: var(--primary-blue) !important;
    font-size: 0.9rem;
}

.contact-see-more-btn small {
    display: none;
}

/* Footer See More Button */
.footer-see-more-container {
    text-align: left;
    margin-top: 0.5rem;
    margin-left: 0;
}

.footer-see-more-btn {
    background: rgba(179, 179, 179, 0.1);
    border: 1px solid #b3b3b3;
    color: #b3b3b3;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-weight: 400;
    font-size: 0.75rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.footer-see-more-btn:hover {
    background: rgba(179, 179, 179, 0.2);
    border-color: var(--water-blue);
    color: var(--water-blue);
    transform: translateY(-1px);
}

.footer-see-more-btn i {
    font-size: 0.7rem;
}

.modal-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
    margin-top: 2rem;
}

.premium-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.premium-btn-next,
.premium-btn-submit {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--water-blue) 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.premium-btn-next:hover,
.premium-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.premium-btn-back {
    background: transparent;
    color: #666;
    border: 2px solid #e9ecef;
}

.premium-btn-back:hover {
    background: #f8f9fa;
    border-color: #ddd;
}

/* Removed progress bar styles - not needed for single page layout */

/* Mobile Responsive - Optimized for Mobile */
@media (max-width: 768px) {
    .premium-modal-backdrop {
        padding: 10px;
    }
    
    .premium-modal-container {
        margin: 0;
        max-height: 95vh;
        border-radius: 20px;
        width: 100%;
    }
    
    .premium-close-btn {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .premium-header {
        padding: 2rem 1rem 1.5rem;
        border-radius: 20px 20px 0 0;
        flex-shrink: 0;
    }
    
    .premium-title {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
    
    .premium-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .premium-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .premium-features {
        gap: 0.8rem;
    }
    
    .feature-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
        border-radius: 20px;
    }
    
    .premium-body {
        padding: 1.5rem 1rem;
        flex: 1;
        min-height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .form-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .form-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .form-section h3:before {
        width: 3px;
        height: 16px;
        margin-right: 8px;
    }
    
    .premium-form-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .premium-input-group label {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
        letter-spacing: 0.3px;
    }
    
    .premium-input-group input,
    .premium-input-group textarea {
        font-size: 1rem;
        padding: 0.8rem 0 0.4rem 0;
    }
    
    .premium-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .premium-service-card label {
        padding: 1.2rem 0.8rem;
        border-radius: 12px;
    }
    
    .service-icon {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }
    
    .service-name {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    .service-check {
        width: 20px;
        height: 20px;
        top: 8px;
        right: 8px;
        font-size: 0.7rem;
    }
    
    
    .modal-footer {
        padding: 1rem 1rem 1rem 1rem;
        margin-top: 1rem;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        border-radius: 0 0 20px 20px;
    }
    
    .premium-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 12px;
    }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
    .premium-services-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-service-card label {
        padding: 1rem;
        display: flex;
        align-items: center;
        text-align: left;
    }
    
    .service-icon {
        font-size: 1.3rem;
        margin-bottom: 0;
        margin-right: 0.8rem;
        flex-shrink: 0;
    }
    
    .service-name {
        font-size: 0.9rem;
        flex-grow: 1;
    }
    
    .service-check {
        position: relative;
        top: auto;
        right: auto;
        margin-left: 0.5rem;
    }
    
    .premium-modal-container {
        max-height: 90vh;
    }
    
    .premium-body {
        padding: 1rem 0.8rem;
    }
    
    .modal-footer {
        padding: 0.8rem;
    }
}
}