/* ==========================================
   ULTRA-PREMIUM CLEANING WEBSITE CSS
   Modern, Fully Animated, Production-Ready
   ========================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #FFBF00;
    --gold-light: #CFB53B;
    --lavender: #E0B0FF;
    --rust: #CC5500;
    --cream: #FDFBD4;
    --terracotta: #D47E30;
    --brown: #8D5A2B;
    --mocha: #825E34;
    --blush: #F2C7C7;
    --white: #FFFFFF;
    --mint: #D5F3D8;
    --rose: #FFB7C5;
    --dark: #1a1a1a;
    --gray: #666;
    --light-gray: #f5f5f5;
    
    --gradient-primary: linear-gradient(135deg, #FFBF00 0%, #D47E30 100%);
    --gradient-secondary: linear-gradient(135deg, #E0B0FF 0%, #FFB7C5 100%);
    --gradient-hero: linear-gradient(135deg, rgba(255,191,0,0.95) 0%, rgba(212,126,48,0.95) 50%, rgba(204,85,0,0.95) 100%);
    
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.16);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

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

.section-padding {
    padding: 100px 0;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--terracotta) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: white;
}

.spinner {
    width: 60px;
    height: 60px;
    position: relative;
    margin: 0 auto 30px;
}

.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: white;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    animation: bounce 2s infinite ease-in-out;
}

.double-bounce2 {
    animation-delay: -1s;
}

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

.preloader-text {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    animation: pulse 1.5s infinite;
}

.preloader-tagline {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== PARTICLES ===== */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* ===== FLOATING SHAPES ===== */
.floating-shapes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(60px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    top: 5%;
    left: -10%;
    animation: float1 25s infinite ease-in-out;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: var(--gradient-secondary);
    top: 50%;
    right: -10%;
    animation: float2 30s infinite ease-in-out;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--rust), var(--terracotta));
    bottom: 10%;
    left: 20%;
    animation: float3 35s infinite ease-in-out;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: var(--gradient-secondary);
    top: 20%;
    right: 25%;
    animation: float1 28s infinite ease-in-out reverse;
}

.shape-5 {
    width: 280px;
    height: 280px;
    background: var(--gradient-primary);
    bottom: 30%;
    right: 10%;
    animation: float2 32s infinite ease-in-out reverse;
}

.shape-6 {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, var(--lavender), var(--blush));
    top: 60%;
    left: 5%;
    animation: float3 27s infinite ease-in-out;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, -50px) rotate(120deg); }
    66% { transform: translate(-30px, 30px) rotate(240deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 40px) scale(1.1); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(30px, 50px) rotate(-90deg) scale(0.9); }
    66% { transform: translate(-50px, -30px) rotate(-180deg) scale(1.1); }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.top-bar {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

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

.social-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: white;
    color: var(--gold);
    transform: translateY(-3px) scale(1.1);
}

.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--dark);
}

.logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

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

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.2);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 30px rgba(255,191,0,0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255,191,0,0.4);
}

.btn-secondary {
    background: white;
    color: var(--dark);
    border: 2px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255,191,0,0.3);
}

.btn-large {
    padding: 20px 45px;
    font-size: 17px;
}

.btn-glow {
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(255,191,0,0.4), 0 8px 30px rgba(255,191,0,0.3);
    }
    50% {
        box-shadow: 0 0 50px rgba(255,191,0,0.6), 0 12px 40px rgba(255,191,0,0.4);
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 100px;
    padding: 100px 0;
}

.hero-bg-animation {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    background-size: 300% 300%;
    animation: gradient-shift 20s ease infinite;
    z-index: -2;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    animation: float-badge 4s ease-in-out infinite;
}

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

.hero-badge i {
    font-size: 20px;
    color: var(--gold);
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 30px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.title-word {
    display: inline-block;
    margin: 0 10px;
    animation: title-appear 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) backwards;
}

.title-word:nth-child(1) { animation-delay: 0.1s; }
.title-word:nth-child(2) { animation-delay: 0.3s; }
.title-word:nth-child(3) { animation-delay: 0.5s; }

@keyframes title-appear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.subtitle-line {
    display: block;
    font-size: 48px;
    margin-top: 15px;
    animation: title-appear 0.8s 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) backwards;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 45px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
}

.stat-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 8px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    animation: bounce-vertical 2s infinite;
}

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

.mouse {
    width: 28px;
    height: 48px;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 25px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 12px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(25px);
    }
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-badge {
    display: inline-block;
    padding: 10px 28px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(255,191,0,0.3);
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 25px;
    color: var(--dark);
}

.section-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    max-width: 850px;
    margin: 0 auto;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    position: relative;
    background: white;
    border-radius: 25px;
    padding: 45px;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.service-bg-effect {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-bg-effect {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.service-icon-wrapper {
    margin-bottom: 30px;
}

.service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    font-size: 42px;
    position: relative;
    transition: all 0.5s ease;
    animation: icon-pulse 3s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255,191,0,0.4);
    }
    50% {
        box-shadow: 0 0 0 25px rgba(255,191,0,0);
    }
}

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

.service-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--dark);
}

.service-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.service-title a:hover {
    color: var(--gold);
}

.service-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.service-features li:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.service-features i {
    color: var(--gold);
    font-size: 16px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.service-btn:hover {
    gap: 15px;
    color: var(--terracotta);
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose {
    background: linear-gradient(135deg, var(--cream) 0%, var(--mint) 100%);
}

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

.feature-box {
    position: relative;
    text-align: center;
    padding: 45px 30px;
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.feature-icon-bg {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    opacity: 0.1;
    transition: all 0.5s ease;
}

.feature-box:hover .feature-icon-bg {
    transform: scale(1.5) rotate(180deg);
    opacity: 0.15;
}

.feature-box:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 100px;
    height: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    font-size: 45px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    animation: icon-float 4s ease-in-out infinite;
}

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

.feature-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
}

/* ===== PROCESS TIMELINE ===== */
.process {
    background: white;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    font-size: 28px;
    font-weight: 900;
    box-shadow: 0 0 0 12px white, var(--shadow-lg);
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-number {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 0 0 12px white, 0 0 30px rgba(255,191,0,0.6);
}

.timeline-content {
    width: calc(50% - 60px);
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark);
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
}

/* ===== GALLERY SECTION ===== */
.gallery {
    background: var(--light-gray);
}

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

.gallery-item {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.gallery-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.gallery-before,
.gallery-after {
    position: relative;
    overflow: hidden;
}

.gallery-label {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.gallery-before .gallery-label {
    background: rgba(204,85,0,0.9);
    color: white;
}

.gallery-after .gallery-label {
    background: rgba(40,167,69,0.9);
    color: white;
}

.gallery-placeholder {
    width: 100%;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    transition: all 0.5s ease;
}

.gallery-before .gallery-placeholder {
    background: linear-gradient(135deg, rgba(204,85,0,0.15), rgba(212,126,48,0.15));
    color: var(--rust);
}

.gallery-after .gallery-placeholder {
    background: linear-gradient(135deg, rgba(40,167,69,0.15), rgba(52,211,153,0.15));
    color: #28a745;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.15);
}

.gallery-info {
    padding: 30px;
}

.gallery-info h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark);
}

.gallery-info p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
}

.gallery-cta {
    text-align: center;
    margin-top: 60px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: white;
}

.testimonials-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-card {
    min-width: 100%;
    background: white;
    padding: 60px;
    border-radius: 25px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 25px;
    left: 40px;
    font-size: 100px;
    color: var(--gold);
    opacity: 0.15;
}

.testimonial-rating {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
}

.testimonial-rating i {
    color: var(--gold);
    font-size: 20px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.9;
    color: var(--dark);
    margin-bottom: 35px;
    font-style: italic;
}

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

.author-avatar {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    font-size: 28px;
    font-weight: 800;
}

.author-details h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--dark);
}

.author-details p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 8px;
}

.verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #28a745;
    font-weight: 700;
}

.verified i {
    font-size: 16px;
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 50px;
}

.testimonial-btn {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
}

.testimonial-btn:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-lg);
}

.testimonials-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold);
    width: 35px;
    border-radius: 10px;
}

/* ===== BLOG SECTION ===== */
.blog {
    background: var(--light-gray);
}

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

.blog-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s ease;
}

.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-placeholder {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    font-size: 80px;
    transition: all 0.5s ease;
}

.blog-card:hover .blog-placeholder {
    transform: scale(1.15) rotate(5deg);
}

.blog-category {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 24px;
    background: rgba(255,255,255,0.95);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark);
}

.blog-content {
    padding: 35px;
}

.blog-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 18px;
    font-size: 14px;
    color: var(--gray);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-content h3 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 15px;
}

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

.blog-content h3 a:hover {
    color: var(--gold);
}

.blog-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 25px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.blog-link:hover {
    gap: 15px;
    color: var(--terracotta);
}

.blog-cta {
    text-align: center;
    margin-top: 60px;
}

/* ===== BUSINESS HOURS ===== */
.business-hours {
    background: white;
}

.hours-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hours-icon-wrapper {
    margin-bottom: 30px;
}

.hours-icon {
    width: 120px;
    height: 120px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    font-size: 60px;
    animation: icon-pulse 3s ease-in-out infinite;
}

.hours-left h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--dark);
}

.hours-left p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 35px;
}

.hours-schedule {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    border-bottom: 2px solid var(--light-gray);
}

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

.hours-day {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

.hours-time {
    font-size: 18px;
    color: var(--gold);
    font-weight: 800;
}

.hours-note {
    display: flex;
    gap: 18px;
    padding: 25px;
    background: rgba(255,191,0,0.1);
    border-radius: 15px;
    border-left: 5px solid var(--gold);
}

.hours-note i {
    color: var(--gold);
    font-size: 24px;
    flex-shrink: 0;
}

.hours-note p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark);
    margin: 0;
}

.hours-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hours-feature {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.hours-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.hours-feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 18px;
    color: white;
    font-size: 30px;
    flex-shrink: 0;
}

.hours-feature-content h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--dark);
}

.hours-feature-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray);
    margin: 0;
}

.hours-feature-content a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
}

/* ===== MAP SECTION ===== */
.map-section {
    background: var(--light-gray);
}

.map-container {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-bottom: 60px;
}

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

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 25px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.contact-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark);
}

.contact-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray);
}

.contact-card a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg-animation {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    background-size: 300% 300%;
    animation: gradient-shift 20s ease infinite;
    z-index: -1;
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 25px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.cta-content p {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 45px;
    opacity: 0.95;
}

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

.cta-features {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 700;
}

.cta-features i {
    font-size: 22px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
}

.footer-main {
    padding: 90px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo .logo-text {
    color: white;
    -webkit-text-fill-color: white;
}

.footer-description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.7);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social .social-icon {
    background: rgba(255,255,255,0.1);
}

.footer-social .social-icon:hover {
    background: var(--gradient-primary);
    color: white;
}

.footer-title {
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(8px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 18px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--gold);
    font-size: 20px;
    margin-top: 3px;
}

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

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-title { font-size: 56px; }
    .subtitle-line { font-size: 38px; }
    .section-title { font-size: 40px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline::before { left: 40px; }
    .timeline-marker { left: 40px; transform: none; }
    .timeline-content { width: calc(100% - 120px); margin-left: auto !important; }
    .hours-wrapper { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 768px) {
    .top-bar-content { justify-content: center; text-align: center; }
    .contact-info { flex-direction: column; align-items: center; gap: 12px; }
    .nav-menu {
        position: fixed;
        top: 160px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: var(--shadow-xl);
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .nav-menu.active { transform: translateX(0); }
    .nav-list { flex-direction: column; gap: 0; width: 100%; }
    .nav-list li { width: 100%; text-align: center; border-bottom: 1px solid var(--light-gray); padding: 18px 0; }
    .nav-btn { width: 100%; justify-content: center; }
    .mobile-toggle { display: flex; }
    .hero { padding: 80px 0; }
    .hero-title { font-size: 42px; }
    .subtitle-line { font-size: 32px; }
    .hero-subtitle { font-size: 18px; }
    .hero-buttons { flex-direction: column; }
    .section-padding { padding: 70px 0; }
    .section-title { font-size: 34px; }
    .services-grid, .features-grid, .gallery-grid, .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 45px; }
    .footer-bottom-content { flex-direction: column; text-align: center; }
    .cta-content h2 { font-size: 38px; }
    .cta-content p { font-size: 18px; }
    .cta-buttons { flex-direction: column; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 36px; }
    .subtitle-line { font-size: 28px; }
    .section-title { font-size: 30px; }
    .stat-number { font-size: 42px; }
    .testimonial-card { padding: 35px 25px; }
    .cta-content h2 { font-size: 32px; }
}

/* ===== IMAGE-SPECIFIC STYLES ===== */

/* Logo Styles */
.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.preloader-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Hero Background Image */
.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: kenBurns 30s ease-in-out infinite alternate;
    z-index: -2;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Service Card Images */
.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-image img {
    transform: scale(1.15) rotate(2deg);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.service-content {
    padding: 30px;
}

/* About Section Image */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transition: transform 0.4s ease;
}

.about-image:hover img {
    transform: scale(1.05) rotate(-2deg);
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    animation: float-badge 3s ease-in-out infinite;
}

.about-badge i {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
}

.about-badge span {
    font-size: 20px;
    font-weight: 800;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.about-feature i {
    font-size: 32px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--color-dark);
}

.about-feature p {
    font-size: 14px;
    color: var(--color-gray);
    margin: 0;
}

/* Gallery Images */
.gallery-image-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 20px;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-image-wrapper img {
    transform: scale(1.2);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: white;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.gallery-overlay p {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    margin-bottom: 20px;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.gallery-btn:hover {
    transform: scale(1.2) rotate(90deg);
}

/* Image Loading States */
img {
    opacity: 0;
    animation: imageLoad 0.6s ease forwards;
}

@keyframes imageLoad {
    to {
        opacity: 1;
    }
}

img[loading="lazy"] {
    opacity: 1;
}

/* Responsive Image Styles */
@media (max-width: 1024px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-image {
        height: 220px;
    }
    
    .gallery-image-wrapper {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
    
    .preloader-logo {
        max-width: 200px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .gallery-image-wrapper {
        height: 250px;
    }
}
