/* ===========================
   GLOBAL STYLES & RESET
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors - Enhanced */
    --primary-color: #0077be;
    --primary-dark: #005a8f;
    --primary-light: #4da3d6;
    --secondary-color: #00c9ff;
    --accent-color: #ffb703;
    --accent-dark: #f39c12;
    --success-color: #2ecc71;
    --info-color: #3498db;
    
    /* Neutral Colors - Refined */
    --dark: #0a0e27;
    --gray-dark: #2c3e50;
    --gray: #7f8c8d;
    --gray-light: #ecf0f1;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-lighter: #fafbfc;
    
    /* Text Colors */
    --text-dark: #0a0e27;
    --text-body: #34495e;
    --text-light: #7f8c8d;
    --text-muted: #95a5a6;
    
    /* Modern Gradients */
    --gradient-primary: linear-gradient(135deg, #0077be 0%, #00c9ff 100%);
    --gradient-secondary: linear-gradient(135deg, #00c9ff 0%, #0077be 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(0, 119, 190, 0.95), rgba(0, 201, 255, 0.85));
    --gradient-light: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    --gradient-accent: linear-gradient(135deg, #ffb703 0%, #f39c12 100%);
    
    /* Enhanced Shadows */
    --shadow-xs: 0 1px 2px rgba(14, 134, 215, 0.05);
    --shadow-sm: 0 2px 8px rgba(0, 119, 190, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 119, 190, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 119, 190, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 119, 190, 0.20);
    --shadow-2xl: 0 24px 64px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(0, 201, 255, 0.3);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-body);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.75rem, 5vw, 4rem); }
h2 { font-size: clamp(2.25rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.75rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }

p {
    margin-bottom: 1.25rem;
    line-height: 1.75;
    color: #000000;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-base);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Section Padding */
.section-padding {
    padding: clamp(40px, 8vw, 80px) 0;
}

.bg-light {
    background: linear-gradient(180deg, #fafbfc 0%, #f8f9fa 100%);
    position: relative;
}

.bg-light::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 119, 190, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 201, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Section Headers - Enhanced */
.section-header {
    margin-bottom: 80px;
    text-align: center;
}

.section-title {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 25px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(0, 119, 190, 0.3);
}

.text-center .section-title::after {
    left: 50%;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

.text-center {
    text-align: center;
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 119, 190, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 119, 190, 0.1);
}

.header.scrolled {
    box-shadow: 0 8px 30px rgba(0, 119, 190, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.navbar {
    padding: 1.2rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    /* 1. Add shadow effect to logo */
    box-shadow: 0 2px 8px rgba(0, 119, 190, 0.1);
    height: 60px;
    /* 2. Hide text on very small screens (logo only) */
    @media (max-width: 480px) {
        .logo-text {
            display: none;
        }
    }    transition: var(--transition-base);
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition-base);
}

.logo a:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.logo img {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: var(--transition-base);
    border-radius: 8px;
    /* Optional: Add shadow for better visibility */
    /* box-shadow: 0 2px 8px rgba(0, 119, 190, 0.1); */
}

.logo img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-secondary);
    line-height: 1.2;
    transition: var(--transition-base);
    white-space: nowrap;
}

.logo a:hover .logo-text {
    color: var(--secondary-color);
}

/* Logo responsiveness */
@media (max-width: 768px) {
    .logo img {
        height: 45px;
        max-width: 140px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
        max-width: 120px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    /* Optional: Hide text on very small screens to show logo only */
    /* .logo-text {
        display: none;
    } */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: #000000;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 10px 4px;
    position: relative;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    inset: -8px -12px;
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.08), rgba(0, 201, 255, 0.08));
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-menu a:hover::before {
    opacity: 1;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #0077BE;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.1), rgba(0, 201, 255, 0.1));
    border: 2px solid rgba(0, 119, 190, 0.2);
    border-radius: 8px;
    cursor: pointer;
    padding: 12px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.15), rgba(0, 201, 255, 0.15));
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    border: 2px solid transparent;
    text-align: center;
    justify-content: center;
}

/* Modern nav button styling */
.nav-menu .btn-primary {
    padding: 10px 24px;
    font-size: 0.95rem;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(215, 220, 222, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-menu .btn-primary:hover::before {
    opacity: 1;
}

.nav-menu .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 119, 190, 0.4);
}

.nav-menu .btn-primary::after {
    display: none;
}

.nav-menu .btn-primary * {
    position: relative;
    z-index: 1;
}

.btn-primary, .btn-hero-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover, .btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary, .btn-hero-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover, .btn-hero-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary-large, .btn-white-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-white-large {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-white-large:hover {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: 1;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/Ontime pools.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: backgroundWave 20s ease-in-out infinite;
}

@keyframes backgroundWave {
    0%, 100% {
        transform: scale(1) translateY(0);
    }
    25% {
        transform: scale(1.05) translateY(-10px);
    }
    50% {
        transform: scale(1.02) translateY(5px);
    }
    75% {
        transform: scale(1.08) translateY(-5px);
    }
}

.water-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(0, 201, 255, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 119, 190, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: waterFlow 10s ease-in-out infinite;
    z-index: 2;
}

@keyframes waterFlow {
    0%, 100% {
        opacity: 1;
        transform: translateX(0);
    }
    25% {
        opacity: 0.8;
        transform: translateX(10px);
    }
    50% {
        opacity: 0.6;
        transform: translateX(-10px);
    }
    75% {
        opacity: 0.9;
        transform: translateX(5px);
    }
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 150px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="rgba(255,255,255,0.15)"/></svg>') repeat-x;
    animation: wave 12s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
}

.wave1 {
    z-index: 3;
    opacity: 0.4;
    animation-duration: 12s;
    bottom: -5px;
}

.wave2 {
    z-index: 2;
    opacity: 0.3;
    animation-duration: 16s;
    animation-direction: reverse;
    bottom: -10px;
}

.wave3 {
    z-index: 1;
    opacity: 0.2;
    animation-duration: 20s;
    bottom: -15px;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 40px 0;
}

.hero-text {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto 60px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.95),
                 0 0 25px rgba(0, 0, 0, 0.8),
                 0 0 40px rgba(0, 0, 0, 0.6);
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 40px;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.95),
                 0 0 20px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 25px;
    border-radius: 10px;
    display: inline-block;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 30px;
    border-radius: 12px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 5px;
    color: #ffffff;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.95),
                 0 0 30px rgba(0, 0, 0, 0.8),
                 2px 2px 4px rgba(0, 0, 0, 1);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 1;
    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.95);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--white);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 20% {
        transform: translateX(-50%) translateY(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
}

/* Enhanced Hero Elements */
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.05) 35px, rgba(255,255,255,.05) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(0,201,255,.03) 35px, rgba(0,201,255,.03) 70px);
    z-index: 1;
    animation: patternShift 20s linear infinite;
}

@keyframes patternShift {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 70px 70px, -70px -70px;
    }
}

.floating-bubbles {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -50px;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), rgba(0, 201, 255, 0.15));
    border-radius: 50%;
    left: calc(var(--i) * 20%);
    box-shadow: 
        0 0 20px rgba(0, 201, 255, 0.3),
        inset 0 0 10px rgba(255, 255, 255, 0.2);
}

.bubble:nth-child(1) {
    animation: rise 10s ease-in infinite;
}

.bubble:nth-child(2) {
    animation: rise 12s ease-in infinite 2s;
}

.bubble:nth-child(3) {
    animation: rise 14s ease-in infinite 4s;
}

.bubble:nth-child(4) {
    animation: rise 16s ease-in infinite 1s;
}

.bubble:nth-child(5) {
    animation: rise 18s ease-in infinite 3s;
}

.bubble:nth-child(6) {
    animation: rise 13s ease-in infinite 5s;
}

.bubble:nth-child(7) {
    animation: rise 17s ease-in infinite 2.5s;
}

.bubble:nth-child(8) {
    animation: rise 15s ease-in infinite 4.5s;
}

@keyframes rise {
    0% {
        bottom: -50px;
        opacity: 0;
        transform: translateX(0) scale(1);
    }
    30% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.3;
        transform: translateX(20px) scale(1.1);
    }
    100% {
        bottom: 100%;
        opacity: 0;
        transform: translateX(-20px) scale(0.8);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.65);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--white);
    border: 1px solid rgba(0, 201, 255, 0.4);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.95);
}

.hero-badge i {
    color: var(--accent-color);
}

.gradient-text {
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.95rem;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(0, 201, 255, 0.3);
}

.hero-feature-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 15px 30px;
    border-radius: var(--radius-md);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-hero-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.hero-scroll-indicator span {
    display: block;
    color: var(--white);
    font-size: 0.85rem;
    margin-bottom: 10px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Enhanced Page Hero Sections */
.page-hero.enhanced-hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #0077be 0%, #0e1f2a 50%, #0077be 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.page-hero .hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 201, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 119, 190, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(255, 255, 255, 0.03) 60px, rgba(255, 255, 255, 0.03) 61px);
    z-index: 1;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.page-hero .hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(0, 201, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 119, 190, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: overlayPulse 8s ease-in-out infinite;
    z-index: 2;
}

@keyframes overlayPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 1000px;
    margin: 0 auto;
}

.hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 0.95rem;
    background: rgba(0, 0, 0, 0.25);
    padding: 10px 20px;
    border-radius: 25px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition-fast);
    font-weight: 500;
}

.hero-breadcrumb a:hover {
    color: var(--accent-color);
}

.hero-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.5);
}

.hero-breadcrumb span:last-child {
    color: var(--white);
    font-weight: 600;
}

.page-hero-content h1 {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5),
                 0 0 40px rgba(0, 201, 255, 0.3);
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    margin-bottom: 45px;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-features-inline {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.feature-badge i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.hero-stats-inline {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-badge i {
    font-size: 2rem;
    color: var(--accent-color);
}

.stat-badge div {
    text-align: left;
}

.stat-badge strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-badge span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-rating-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rating-display .stars-large {
    font-size: 2rem;
    color: var(--accent-color);
}

.rating-info {
    text-align: left;
}

.rating-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.rating-info span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge i {
    color: var(--success-color);
    font-size: 1.2rem;
}

.hero-contact-quick {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: var(--white);
    transition: all var(--transition-base);
}

.quick-contact-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.contact-details {
    text-align: left;
}

.contact-details .label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.contact-details strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 15px 30px;
    border-radius: var(--radius-md);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all var(--transition-base);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.response-time {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.response-time i {
    color: var(--accent-color);
}

/* ===========================
   TERMS OF SERVICE PAGE
   =========================== */
.terms-content {
    background: var(--bg-light);
}

.terms-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.terms-intro {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--bg-lighter);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-md);
}

.terms-intro p:first-child {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.terms-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-light);
}

.terms-section:last-of-type {
    border-bottom: none;
}

.terms-section h2 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.terms-section h2 i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.terms-section p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 15px;
}

.terms-section ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.terms-section ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-body);
    line-height: 1.6;
}

.terms-section ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.terms-section strong {
    color: var(--text-dark);
    font-weight: 600;
}

.terms-contact {
    margin-top: 50px;
    padding: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
}

.terms-contact h2 {
    color: var(--white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.terms-contact p {
    margin-bottom: 25px;
    opacity: 0.95;
}

.contact-methods {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-methods li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.contact-methods li::before {
    display: none;
}

.contact-methods i {
    font-size: 1.2rem;
    color: var(--accent-color);
    min-width: 25px;
}

.contact-methods a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.contact-methods a:hover {
    color: var(--accent-color);
}

.terms-acknowledgment {
    margin-top: 40px;
    padding: 25px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.terms-acknowledgment p {
    margin: 0;
    font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-wrapper {
        padding: 30px 20px;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .terms-contact {
        padding: 30px 20px;
    }
    
    .contact-methods {
        text-align: left;
    }
}

/* ===========================
   FEATURES SECTION
   =========================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.feature-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 119, 190, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(0, 119, 190, 0.15);
    border-color: rgba(0, 119, 190, 0.2);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 119, 190, 0.3);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    margin-bottom: 18px;
    color: var(--text-dark);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 119, 190, 0.08);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(0, 119, 190, 0.15);
    border-color: rgba(0, 119, 190, 0.2);
}

.service-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background: var(--gray-light);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
    filter: brightness(1) contrast(1.05);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.95), rgba(0, 201, 255, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-content {
    padding: 35px;
    text-align: center;
}

.service-icon {
    font-size: 2.75rem;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.service-content h3 {
    margin-bottom: 15px;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

.mt-40 {
    margin-top: 40px;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    background: var(--gradient-primary);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="rgba(255,255,255,0.05)"/></svg>') repeat-x;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.cta-section p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===========================
   TESTIMONIALS SECTION
   =========================== */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Rating breakdown styles */
.rating-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    width: 0;
    transition: width 1s ease-out;
}

.rating-fill[data-width="85"] { width: 85%; }
.rating-fill[data-width="12"] { width: 12%; }
.rating-fill[data-width="2"] { width: 2%; }
.rating-fill[data-width="1"] { width: 1%; }
.rating-fill[data-width="0"] { width: 0%; }

/* Privacy response time spacing */
.privacy-response-time {
    margin-top: 20px;
}

/* ===========================
   FOOTER
   =========================== */
.map-section iframe {
    border: 0;
    display: block;
}

.footer {
    background-color: var(--dark);
    color: var(--gray-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
}

.footer-logo h3 {
    color: var(--white);
    font-size: 1.2rem;
}

.footer-col p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--gray-light);
    transition: var(--transition-base);
}

.footer-col ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.social-links {
   display: flex;
   gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gray-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary-light);
    margin-top: 5px;
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid var(--gray-dark);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.footer-links a {
    color: var(--gray-light);
}

.footer-links a:hover {
    color: var(--primary-light);
}

/* ===========================
   BACK TO TOP BUTTON
   =========================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    z-index: 999;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.back-to-top.visible {
    display: flex;
}

/* ===========================
   WHATSAPP INTEGRATION
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5),
                0 0 0 0 rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    overflow: visible;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.3), rgba(18, 140, 126, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.whatsapp-float:hover::before {
    opacity: 1;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #20BA5A 0%, #128C7E 100%);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.7),
                0 0 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.whatsapp-float:hover i {
    transform: rotate(15deg) scale(1.1);
}

.whatsapp-text {
    position: absolute;
    right: 75px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: white;
    padding: 12px 18px;
    border-radius: 25px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    transform: translateX(0);
}

/* WhatsApp contact card styling */
.whatsapp-card .contact-card-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-link {
    color: #25D366 !important;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    color: #128C7E !important;
    text-shadow: 0 0 10px rgba(37, 211, 102, 0.3);
}

/* Animation for WhatsApp button */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5),
                    0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5),
                    0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5),
                    0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: whatsapp-pulse 2s infinite;
}

/* Mobile adjustments for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 90px;
        right: 20px;
    }
    
    .whatsapp-text {
        display: none;
    }
}

/* ===========================
   SERVICE PAGE ENHANCEMENTS
   =========================== */
.service-hero {
    position: relative;
    overflow: hidden;
    background-image: url('../images/pool-hero-5.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-hero .hero-pattern {
    z-index: 1;
}

.service-hero .hero-gradient-overlay {
    z-index: 2;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.75) 0%, 
        rgba(0, 32, 63, 0.8) 50%, 
        rgba(0, 0, 0, 0.75) 100%);
}

.service-hero .hero-gradient-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 201, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 150, 255, 0.15) 0%, transparent 50%);
    animation: waveFlow 8s ease-in-out infinite;
    z-index: 1;
}

.service-hero .page-hero-content {
    position: relative;
    z-index: 3;
}

.service-hero h1,
.service-hero .hero-description,
.service-hero .hero-breadcrumb,
.service-hero .hero-breadcrumb a,
.service-hero .stat-label,
.service-hero .stat-number {
    color: #ffffff;
    font-weight: 300;
}

.floating-elements {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.08);
    animation: floatComplex 25s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 201, 255, 0.3));
}

.float-icon:nth-child(1) {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.float-icon:nth-child(2) {
    top: 55%;
    right: 12%;
    animation-delay: 8s;
    font-size: 3.5rem;
}

.float-icon:nth-child(3) {
    bottom: 15%;
    left: 18%;
    animation-delay: 16s;
    font-size: 3rem;
}

@keyframes floatComplex {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(30px, -40px) rotate(10deg) scale(1.1);
    }
    50% {
        transform: translate(-20px, -70px) rotate(-10deg) scale(0.9);
    }
    75% {
        transform: translate(40px, -40px) rotate(10deg) scale(1.05);
    }
}

@keyframes waveFlow {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    33% {
        transform: translate(-30px, -20px) scale(1.1);
        opacity: 0.5;
    }
    66% {
        transform: translate(30px, 20px) scale(0.9);
        opacity: 0.4;
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
}

/* Gallery Hero Background */
.gallery-hero .hero-pattern {
    z-index: 1;
}

.gallery-hero .hero-gradient-overlay {
    z-index: 2;
    background: linear-gradient(135deg, 
        rgba(0, 119, 190, 0.85) 0%, 
        rgba(0, 32, 63, 0.9) 50%, 
        rgba(0, 0, 0, 0.85) 100%);
}

.gallery-hero .page-hero-content {
    position: relative;
    z-index: 3;
}

.gallery-hero h1 {
    color: #ffffff;
    font-weight: 600;
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: -0.5px;
}

.gallery-hero .hero-description {
    color: #ffffff;
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.gallery-hero .hero-breadcrumb,
.gallery-hero .hero-breadcrumb a {
    color: #ffffff;
    font-weight: 400;
    opacity: 0.9;
}

.gallery-hero .hero-breadcrumb a:hover {
    opacity: 1;
}

.gallery-hero .stat-badge {
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.gallery-hero .stat-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.gallery-hero .stat-badge strong {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
}

.gallery-hero .stat-badge span {
    color: #ffffff;
    font-weight: 400;
    opacity: 0.9;
}

.gallery-hero .stat-badge i {
    color: #00C9FF;
    font-size: 1.5rem;
}

/* Testimonial Hero Background */
.testimonial-hero .hero-pattern {
    z-index: 1;
}

.testimonial-hero .hero-gradient-overlay {
    z-index: 2;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.75) 0%, 
        rgba(0, 32, 63, 0.8) 50%, 
        rgba(0, 0, 0, 0.75) 100%);
}

.testimonial-hero .hero-gradient-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(0, 201, 255, 0.12) 0%, transparent 50%);
    animation: waveFlow 10s ease-in-out infinite;
    z-index: 1;
}

.testimonial-hero .page-hero-content {
    position: relative;
    z-index: 3;
}

.testimonial-hero h1,
.testimonial-hero .hero-description,
.testimonial-hero .hero-breadcrumb,
.testimonial-hero .hero-breadcrumb a {
    color: #ffffff;
    font-weight: 300;
}

.floating-quotes {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.quote-icon {
    position: absolute;
    font-size: 5rem;
    color: rgba(255, 215, 0, 0.1);
    animation: floatQuote 20s ease-in-out infinite;
}

.quote-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.quote-icon:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 7s;
    font-size: 4rem;
}

.quote-icon:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 14s;
    font-size: 3.5rem;
    color: rgba(0, 201, 255, 0.15);
}

@keyframes floatQuote {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        transform: translate(20px, -30px) rotate(5deg);
        opacity: 0.15;
    }
    50% {
        transform: translate(-15px, -50px) rotate(-5deg);
        opacity: 0.2;
    }
    75% {
        transform: translate(25px, -30px) rotate(5deg);
        opacity: 0.15;
    }
}

.hero-rating-showcase {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.rating-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 25px 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stars-large {
    display: flex;
    gap: 8px;
    font-size: 2rem;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.rating-info {
    text-align: center;
}

.rating-number {
    display: block;
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 5px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.rating-info span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 201, 255, 0.2);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(0, 201, 255, 0.3);
}

.trust-badge i {
    color: #00C9FF;
    font-size: 1.2rem;
}

.trust-badge span {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* Installation Image Slider */
.installation-slider-container,
.repair-slider-container,
.cleaning-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 119, 190, 0.15);
}

.installation-slider,
.repair-slider,
.cleaning-slider {
    position: relative;
    width: 100%;
    height: 600px;
    min-height: 500px;
}

.installation-slide,
.repair-slide,
.cleaning-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    flex-direction: column;
}

.installation-slide.active,
.repair-slide.active,
.cleaning-slide.active {
    opacity: 1;
    z-index: 1;
}

.installation-slide img,
.repair-slide img,
.cleaning-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #ffffff;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: rgba(0, 119, 190, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 15px;
}

.slider-btn.next {
    right: 15px;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.slider-dots .dot.active {
    background: #00C9FF;
    transform: scale(1.2);
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .installation-slider,
    .repair-slider,
    .cleaning-slider {
        max-height: 350px;
        aspect-ratio: 16 / 11;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
    
    .slide-caption {
        font-size: 0.95rem;
        padding: 15px;
    }
}

/* Contact Hero Background */
.contact-hero .hero-pattern {
    z-index: 1;
}

.contact-hero .hero-gradient-overlay {
    z-index: 2;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.78) 0%, 
        rgba(0, 32, 63, 0.85) 50%, 
        rgba(0, 0, 0, 0.78) 100%);
}

.contact-hero .hero-gradient-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 25% 30%, rgba(0, 201, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 70%, rgba(0, 150, 255, 0.15) 0%, transparent 50%);
    animation: waveFlow 9s ease-in-out infinite;
    z-index: 1;
}

.contact-hero .page-hero-content {
    position: relative;
    z-index: 3;
}

.contact-hero h1,
.contact-hero .hero-description,
.contact-hero .hero-breadcrumb,
.contact-hero .hero-breadcrumb a {
    color: #1a1a1a;
    font-weight: 300;
}

.floating-contact-icons {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.contact-float-icon {
    position: absolute;
    font-size: 4rem;
    color: rgba(0, 201, 255, 0.12);
    animation: floatContact 22s ease-in-out infinite;
}

.contact-float-icon:nth-child(1) {
    top: 15%;
    left: 12%;
    animation-delay: 0s;
}

.contact-float-icon:nth-child(2) {
    top: 25%;
    right: 10%;
    animation-delay: 5.5s;
    font-size: 3.5rem;
}

.contact-float-icon:nth-child(3) {
    bottom: 25%;
    right: 20%;
    animation-delay: 11s;
    font-size: 4.5rem;
    color: rgba(37, 211, 102, 0.12);
}

.contact-float-icon:nth-child(4) {
    bottom: 15%;
    left: 15%;
    animation-delay: 16.5s;
    font-size: 3.2rem;
}

@keyframes floatContact {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.12;
    }
    25% {
        transform: translate(25px, -35px) rotate(8deg) scale(1.15);
        opacity: 0.18;
    }
    50% {
        transform: translate(-18px, -60px) rotate(-8deg) scale(0.95);
        opacity: 0.15;
    }
    75% {
        transform: translate(30px, -35px) rotate(8deg) scale(1.08);
        opacity: 0.18;
    }
}

.hero-contact-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 18px 28px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
    color: #ffffff;
}

.quick-contact-item:hover {
    background: rgba(0, 201, 255, 0.25);
    border-color: rgba(0, 201, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 201, 255, 0.3);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 201, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #00C9FF;
    flex-shrink: 0;
}

.contact-icon.whatsapp {
    background: rgba(37, 211, 102, 0.3);
    color: #25D366;
}

.quick-contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-details .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3px;
}

.contact-details strong {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
}

.hero-stats-inline {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.stat-badge {
    text-align: center;
    padding: 25px 35px;
    background: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 2px solid rgba(0, 201, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 201, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-badge:hover::before {
    opacity: 1;
}

.stat-badge:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 201, 255, 0.6);
    box-shadow: 0 15px 40px rgba(0, 201, 255, 0.3);
}

.stat-badge .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8),
                 0 0 20px rgba(0, 201, 255, 0.5);
    margin-bottom: 8px;
    position: relative;
    background: linear-gradient(135deg, #ffffff, #00c9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-badge .stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    position: relative;
}

/* Service Detail Grid Layout */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse > * {
    direction: ltr;
}

.service-detail-image {
    position: relative;
}

.service-detail-image > img {
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: auto;
    display: block;
}

.service-detail-image .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 119, 190, 0.15);
    aspect-ratio: 4 / 3;
}

.service-detail-image .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.service-detail-image .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.9), rgba(0, 201, 255, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-detail-image .image-overlay i {
    font-size: 5rem;
    color: var(--white);
    transform: scale(0.5);
    transition: transform 0.4s ease;
}

.service-detail-image:hover .image-wrapper img {
    transform: scale(1.1);
}

.service-detail-image:hover .image-overlay {
    opacity: 1;
}

.service-detail-image:hover .image-overlay i {
    transform: scale(1);
}

.service-detail-content {
    padding: 20px 0;
}

.service-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(0, 119, 190, 0.3);
}

.service-detail-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-detail-content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-detail-content > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-features {
    margin: 30px 0;
}

.service-features h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.check-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 15px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-body);
    line-height: 1.6;
}

.check-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.maintenance-benefits {
    margin-top: 20px;
}

.maintenance-benefits h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.maintenance-benefits .service-features {
    margin: 20px 0;
}

.maintenance-benefits .service-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.maintenance-benefits .service-features li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.maintenance-benefits .service-features strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 992px) {
    .hero-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-detail-grid.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-base);
        align-items: flex-start;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .section-padding {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
}

/* ===========================
   SERVICE CTA STYLES
   =========================== */
.service-cta {
    margin-top: 30px;
    text-align: center;
}

.cta-info {
    margin-top: 15px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.cta-info i {
    margin-right: 8px;
    color: var(--info-color);
}

/* ===========================
   PRIVACY POLICY SECTION
   =========================== */
.privacy-policy-section {
    background: var(--bg-lighter);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    padding: 25px;
    margin: 30px 0;
}

.privacy-policy-text {
    margin-bottom: 20px;
}

.privacy-policy-text p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.privacy-policy-text strong {
    color: var(--text-dark);
    font-size: 1.05rem;
    display: block;
    margin-bottom: 10px;
}

.consent-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
    padding: 15px;
    background: var(--white);
    border-radius: var(--radius-sm);
}

.consent-options .checkbox-label {
    margin-bottom: 0;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: background-color var(--transition-fast);
}

.consent-options .checkbox-label:hover {
    background: var(--bg-light);
}

.consent-options .checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.consent-options .checkbox-label span {
    font-size: 0.95rem;
    color: var(--text-body);
}

.privacy-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 15px;
    padding: 12px;
    background: var(--white);
    border-left: 3px solid var(--info-color);
    border-radius: var(--radius-sm);
}

.privacy-note i {
    margin-right: 8px;
    color: var(--info-color);
}

.privacy-note a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.privacy-note a:hover {
    color: var(--primary-dark);
}

/* reCAPTCHA Styling */
.recaptcha-container {
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.recaptcha-container .g-recaptcha {
    display: inline-block;
    transform-origin: center;
}

.recaptcha-container .error-message {
    margin-top: 10px;
    color: var(--danger-color);
    font-size: 0.9rem;
}

/* Responsive reCAPTCHA scaling */
@media (max-width: 480px) {
    .recaptcha-container .g-recaptcha {
        transform: scale(0.9);
        transform-origin: center;
    }
}

@media (max-width: 380px) {
    .recaptcha-container .g-recaptcha {
        transform: scale(0.77);
        transform-origin: center;
    }
}

/* Responsive adjustments for privacy section */
@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 20px 15px;
    }
    
    .privacy-policy-text p {
        font-size: 0.9rem;
    }
}

/* ===========================
   SERVICE PAGE ENHANCEMENTS
   =========================== */

/* Trust Indicators */






/* Enhanced Micro-interactions */
.service-detail-content .btn {
    position: relative;
    overflow: hidden;
}

.service-detail-content .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.service-detail-content .btn:hover::after {
    width: 300px;
    height: 300px;
}

.additional-service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.additional-service-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-xl);
}

.additional-service-card i {
    transition: all 0.4s ease;
}

.additional-service-card:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--accent-color);
}

/* Guarantee Badge */
.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-md);
    margin: 20px 0;
}

.guarantee-badge i {
    font-size: 1.3rem;
}

/* Accessibility Enhancements */
.service-nav-link:focus,
.faq-question:focus,
.btn:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

/* Skip to content link for screen readers */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 0 0 8px 0;
    z-index: 9999;
}

.skip-to-content:focus {
    top: 0;
}

/* ===========================
   ABOUT SECTION (CONTACT PAGE)
   =========================== */

.about-section {
    position: relative;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.about-text .about-intro {
    margin-bottom: 30px;
}

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-text .lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 0;
}

.about-details p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 30px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
    padding: 30px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.stat-item {
    text-align: center;
    padding: 20px 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.about-values {
    margin-top: 30px;
}

.about-values h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about-section:hover .image-wrapper img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.image-badge i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.image-badge span {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.4;
    display: block;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive About Section */
@media (max-width: 992px) {
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .image-badge {
        bottom: 20px;
        right: 20px;
        padding: 20px;
    }
    
    .image-badge i {
        font-size: 1.5rem;
    }
    
    .image-badge span {
        font-size: 0.8rem;
    }
}

/* Responsive Adjustments for UX Enhancements */
@media (max-width: 992px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        grid-template-columns: 1fr;
    }
    
    .comparison-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }
    
    .faq-answer.active {
        padding: 18px 20px;
    }
    
    .comparison-card {
        padding: 30px 20px;
    }
    
    .trust-badge {
        flex-direction: column;
        text-align: center;
    }
}

/* ===========================
   GALLERY SLIDESHOW STYLES
   =========================== */

.gallery-slideshow-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--dark);
}

.gallery-slide {
    display: none;
    width: 100%;
    animation: fadeSlide 0.6s ease-in-out;
}

.gallery-slide.active {
    display: block;
}

.gallery-slide img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Navigation Buttons */
.slide-prev,
.slide-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 119, 190, 0.85);
    color: var(--white);
    border: none;
    padding: 20px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all var(--transition-base);
    z-index: 100;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-prev {
    left: 30px;
}

.slide-next {
    right: 30px;
}

.slide-prev:hover,
.slide-next:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

/* Slide Indicators (Dots) */
.slide-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: var(--white);
    width: 40px;
    border-radius: 10px;
}

/* Responsive Gallery */
@media (max-width: 992px) {
    .gallery-slide img {
        height: 550px;
    }
    
    .slide-prev,
    .slide-next {
        width: 50px;
        height: 50px;
        padding: 15px;
        font-size: 1.2rem;
    }
    
    .slide-prev {
        left: 20px;
    }
    
    .slide-next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .gallery-slide img {
        height: 400px;
    }
    
    .slide-prev,
    .slide-next {
        width: 45px;
        height: 45px;
        padding: 12px;
        font-size: 1.1rem;
    }
    
    .slide-prev {
        left: 15px;
    }
    
    .slide-next {
        right: 15px;
    }
    
    .slide-dots {
        bottom: 20px;
        gap: 8px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 30px;
    }
}

@media (max-width: 480px) {
    .gallery-slide img {
        height: 300px;
    }
    
    .slide-prev,
    .slide-next {
        width: 40px;
        height: 40px;
        padding: 10px;
        font-size: 1rem;
    }
    
    .slide-prev {
        left: 10px;
    }
    
    .slide-next {
        right: 10px;
    }
}




