/*
Theme Name: Grace & Glow Cleaning Service | Residential Cleaning | Connecticut
Theme URI: https://produx.cloud
Author: Produx Cloud
Author URI: https://produx.cloud
Description: Grace & Glow Cleaning Service offers professional residential cleaning throughout Connecticut. We love and respect animals. Serving Greenwich, Old Greenwich, Cos Cob, Riverside, Stamford, Darien, Norwalk, New Haven, Bridgeport, New Britain, Danbury, and Bristol.
Version: 1.0.19
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: janet
Tags: cleaning, business, responsive, professional
Copyright: 2025 Produx Cloud

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
*/

/* ===== CSS Variables ===== */
:root {
    --color-primary: #2c3e50;
    --color-secondary: #3498db;
    --color-accent: #e74c3c;
    --color-text: #2c3e50;
    --color-text-light: #7f8c8d;
    --color-bg: #ffffff;
    --color-bg-light: #c1d8e5;
    --color-border: #e0e0e0;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

/* ===== Keyframes for Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-scale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    visibility: hidden;
}

body.loaded {
    visibility: visible;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #000000;
    transition: var(--transition);
    padding: 20px 0;
}

.header.scrolled {
    background: #000000;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Logo */
.logo {
    flex-shrink: 0;
    transition: var(--transition);
}

.logo img {
    height: 70px;
    width: auto;
    transition: var(--transition);
}

.header.scrolled .logo img {
    height: 60px;
}

/* Navigation */
.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    position: relative;
}

.header:not(.scrolled) .nav-link {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #00d4ff;
    transition: var(--transition);
}

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

.dropdown-icon {
    transition: var(--transition);
}

.nav-item.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    padding: 12px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    margin-top: 10px;
    list-style: none;
}

.nav-item.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    margin-top: 20px;
}

.dropdown li {
    padding: 0;
}

.dropdown a {
    display: block;
    padding: 10px 20px;
    color: var(--color-text);
    font-size: 14px;
    transition: var(--transition);
}

.dropdown a:hover {
    background: var(--color-bg-light);
    color: var(--color-secondary);
}

/* Header Social */
.header-social {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.header:not(.scrolled) .social-icon {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.header.scrolled .social-icon {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: #00d4ff;
    color: #000000;
    transform: translateY(-2px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: var(--transition);
}

.header:not(.scrolled) .mobile-toggle span {
    background: #ffffff;
}

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

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

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

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('./assets/cleaning_background.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #000;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-premium-gif {
    animation: fadeInUp 0.8s ease-out;
}

.hero-premium-gif img {
    max-width: 500px;
    width: 100%;
    height: auto;
}

.hero-title {
    text-shadow: 3px 3px 2px #ffffff9e;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-title-sub {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-title-main {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 1.8rem);
    font-weight: 400;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero-title-location {
    font-family: var(--font-heading);
    font-size: clamp(0.85rem, 1.8vw, 1.2rem);
    font-weight: 700;
    margin-top: 8px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    line-height: 1.4;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* Hero CTA Button */
.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    margin-top: 30px;
    background: #000000;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    white-space: nowrap;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
    border: 2px solid #000000;
}

.btn-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    background: #1a1a1a;
    color: #ffffff;
    border-color: #333333;
}

/* ===== Modern Scroll-Driven Animations (2025) ===== */
@supports (animation-timeline: view()) {
    /* Apply scroll-driven animations to elements */
    .about-text {
        animation: fade-in-up linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 40%;
    }

    .services-title {
        animation: fade-in-scale linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 35%;
    }

    .services-subtitle {
        animation: fade-in-scale linear both;
        animation-timeline: view();
        animation-range: entry 5% cover 40%;
    }

    .services-cta-title {
        animation: slide-in-left linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 40%;
    }

    .services-cta-gif {
        animation: fade-in-scale linear both;
        animation-timeline: view();
        animation-range: entry 10% cover 45%;
    }

    .service-card {
        animation: fade-in-up linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 40%;
    }

    .service-wide-image {
        animation: fade-in-scale linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 35%;
    }

    .service-description {
        animation: fade-in-up linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 30%;
    }

    .service-link {
        animation: slide-in-right linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 40%;
    }

    /* Deep cleaning page animations */
    .deep-info-text {
        animation: fade-in-up linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 30%;
    }

    .features-gif img {
        animation: fade-in-scale linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 40%;
    }

    .feature-card {
        animation: fade-in-up linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 40%;
    }

    .features-wide-image {
        animation: fade-in-scale linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 35%;
    }

    .features-description {
        animation: fade-in-up linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 30%;
    }

    .service-icon-card {
        animation: fade-in-up linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 40%;
    }

    .services-light-image,
    .services-dark-gif {
        animation: fade-in-scale linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 35%;
    }

    .services-dark-title,
    .services-light-title {
        animation: fade-in-scale linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 35%;
    }
}

/* ===== About Section ===== */
.about {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    position: relative;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    position: relative;
}

.about-text:nth-child(1) {
    animation-delay: 0.2s;
}

.about-text:nth-child(2) {
    animation-delay: 0.4s;
}

.about-text:nth-child(3) {
    animation-delay: 0.6s;
}

.about-text:nth-child(4) {
    animation-delay: 0.8s;
}

.about-text:first-child {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.about-text:last-child {
    margin-bottom: 0;
    margin-top: 45px;
    padding-top: 35px;
    border-top: 2px solid #e8e8e8;
}

.about-text strong {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.25rem;
    display: block;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
}

.about-text:first-child strong {
    font-size: 2.2rem;
    color: #000000;
    margin-bottom: 25px;
    font-weight: 500;
    letter-spacing: -1px;
}

.about-text em {
    color: #5a5a5a;
    font-style: italic;
    font-weight: 500;
}

/* ===== Take Your Time Back Section ===== */
.time-back-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F5F0E8 0%, #FAF6EE 100%);
    position: relative;
    overflow: hidden;
}

.time-back-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #CFAE5E 50%, transparent 100%);
    opacity: 0.5;
}

.time-back-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #CFAE5E 50%, transparent 100%);
    opacity: 0.5;
}

.seals-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.seal-item {
    opacity: 0;
    transform: scale(0.8) rotateY(180deg);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.seal-item.visible {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
}

.seal-item:hover {
    transform: scale(1.1) rotateZ(5deg);
}

.seal-item img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 10px 25px rgba(207, 174, 94, 0.25));
    transition: all 0.4s ease;
}

.seal-item:hover img {
    filter: drop-shadow(0 15px 35px rgba(207, 174, 94, 0.4)) brightness(1.1);
}

.time-back-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    text-align: center;
    color: #5B5B5B;
    font-weight: 400;
    font-style: italic;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

/* ===== Philosophy Section ===== */
.philosophy-section {
    padding: 100px 0;
    background: #000000;
    position: relative;
}

.philosophy-content {
    text-align: center;
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    padding: 0;
}

.philosophy-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

.philosophy-quote {
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 400;
    color: #e0e0e0;
    line-height: 1.9;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.4s forwards;
    font-style: italic;
}

.philosophy-signature {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #a0a0a0;
    font-weight: 500;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

/* ===== Services Section ===== */
.services {
    padding: 80px 0;
    background: var(--color-bg-light);
}

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

.services-title {
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    letter-spacing: 3px;
    color: #3a3a3a;
    margin-bottom: 16px;
}

.services-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.services-cta {
    text-align: center;
    margin: 60px 0;
}

.services-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 1px;
    color: #3a3a3a;
    margin-bottom: 30px;
}

.services-cta-gif {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.services-cta-gif img {
    max-width: 450px;
    width: 100%;
    height: auto;
}

/* Service Types */
.service-types {
    text-align: center;
    margin: 60px 0 40px;
}

.service-types-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: #6a6a6a;
    margin-bottom: 30px;
}

.service-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.service-link {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 400;
    color: #3a3a3a;
    text-decoration: none;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: 4px;
}

.service-link:hover {
    color: #1a1a1a;
    background: #f5f5f5;
}

/* Gallery Container */
.gallery-container {
    margin: 60px 0;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    color: var(--color-text);
    margin-bottom: 40px;
}

/* Service Gallery - Grid Layout */
.service-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

/* Gallery Items */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-icon-svg {
    width: 50px;
    height: 50px;
    stroke: white;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

/* Hidden gallery items */
.gallery-hidden {
    display: none;
}

/* Load More Button */
.gallery-load-more {
    text-align: center;
    margin: 40px 0 20px;
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-load-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.5);
    background: linear-gradient(135deg, #0099cc 0%, #00d4ff 100%);
}

.btn-load-more svg {
    transition: transform 0.3s ease;
}

.btn-load-more:hover svg {
    transform: translateY(3px);
}

.btn-load-more.hidden {
    display: none;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
    animation: fadeIn 0.3s ease;
}

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

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

/* Modal Close Button */
.modal-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10001;
}

.modal-close:hover,
.modal-close:focus {
    color: #00d4ff;
}

/* Modal Navigation Buttons */
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-nav:hover {
    background: rgba(0, 212, 255, 0.5);
}

.modal-nav svg {
    display: block;
}

.modal-prev {
    left: 30px;
}

.modal-next {
    right: 30px;
}

/* Modal Content */
.modal-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.modal-video {
    display: none;
    width: 90vw;
    height: 50vw;
    max-width: 1200px;
    max-height: 675px;
}

.modal-video.active {
    display: block;
}

.modal-video-player {
    display: none;
    width: 90vw;
    height: auto;
    max-width: 1200px;
    max-height: 80vh;
}

.modal-video-player.active {
    display: block;
}

#modalImage.active {
    display: block;
}

#modalImage {
    display: none;
}

/* Modal Caption */
.modal-caption {
    text-align: center;
    color: #fff;
    padding: 20px;
    font-size: 1.2rem;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    max-width: 80%;
}

/* Service Description */
.service-description {
    max-width: 900px;
    margin: 60px auto;
    text-align: center;
}

.service-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #3a3a3a;
}

/* Service CTA Button */
.service-cta-button {
    text-align: center;
    margin: 60px 0;
}

.btn-primary {
    display: inline-block;
    padding: 14px 40px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    color: #d6d6d6;
    background: #3d3d3d;
    border: 1px solid #000;
    border-radius: 3px;
    text-decoration: none;
    transition: var(--transition);
    text-transform: lowercase;
}

.btn-primary:hover {
    background: #161517;
    color: #ded5ad;
    border-color: #ded5ad;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== Deep Cleaning Specific Styles ===== */
.hero-deep {
    background-image: url('https://assets.zyrosite.com/cdn-cgi/image/format=auto,w=1920,fit=crop/mjE70zoqNKsO5Vn9/q7-mePxV9oggkH4QZ3e.webp');
}

/* Deep Info Section */
.deep-info {
    padding: 80px 0;
    background: linear-gradient(180deg, rgb(164, 172, 167), rgb(214, 215, 211));
}

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

.section-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 400;
    color: var(--color-text);
}

.deep-info-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.deep-info-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
}

/* Features Section */
.deep-features {
    padding: 80px 0;
    background: linear-gradient(180deg, rgb(211, 213, 214), rgb(215, 216, 211));
}

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

.features-gif {
    margin-bottom: 30px;
}

.features-gif img {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.features-title {
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    color: var(--color-text);
}

.features-title strong {
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.feature-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

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

.features-wide-image {
    margin: 60px 0;
    border-radius: 12px;
    overflow: hidden;
}

.features-wide-image img {
    width: 100%;
    height: auto;
    display: block;
}

.features-description {
    max-width: 800px;
    margin: 60px auto;
    text-align: center;
}

.features-description p {
    font-size: 16px;
    line-height: 1.8;
    color: rgb(212, 212, 212);
}

.features-location {
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
}

.features-location p {
    font-size: 12px;
    line-height: 1.6;
    color: rgb(212, 212, 212);
    font-weight: 300;
}

.features-cta {
    text-align: center;
    margin: 60px 0;
}

/* Services Dark Section */
.services-dark {
    padding: 80px 0;
    background: linear-gradient(0deg, rgb(27, 29, 30), rgb(0, 0, 0));
    color: white;
}

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

.services-dark-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    color: rgba(184, 184, 184, 0.81);
}

.services-dark-content {
    text-align: center;
}

.services-dark-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 40px;
}

.services-dark-gif {
    margin: 40px 0;
}

.services-dark-gif img {
    max-width: 450px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.services-dark-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 60px auto;
}

.service-icon-card {
    border-radius: 8px;
    overflow: hidden;
}

.service-icon-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Services Light Section */
.services-light {
    padding: 80px 0;
    background: linear-gradient(0deg, rgb(211, 213, 214), rgb(215, 216, 211));
}

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

.services-light-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: rgba(184, 184, 184, 0.81);
}

.services-light-content {
    text-align: center;
}

.services-light-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: rgba(184, 184, 184, 0.81);
    margin-bottom: 40px;
}

.services-light-image {
    max-width: 900px;
    margin: 60px auto;
    border-radius: 12px;
    overflow: hidden;
}

.services-light-image img {
    width: 100%;
    height: auto;
    display: block;
}

.services-light-cta {
    text-align: center;
    margin: 60px 0;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: rgb(242, 243, 246);
    padding: 60px 0 30px;
    text-align: center;
    border-top: 3px solid #00d4ff;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo img {
    max-width: 300px;
    height: auto;
}

.footer-info {
    text-align: center;
}

.footer-info p {
    font-size: 1rem;
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.footer-info p:first-child {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-info p:nth-child(2) {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 10px auto;
}

.footer-social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

.footer-social-links a:hover {
    background: #00d4ff;
    transform: translateY(-5px);
}

.footer-text {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 20px;
}

/* ===== Scroll to Top Button ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #000000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
    z-index: 999;
}

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

.scroll-to-top:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4d47c 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

.scroll-to-top svg {
    stroke: #000000;
}

/* ===== What We Do Section ===== */
.what-we-do {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    color: #00d4ff;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff 0%, #d4af37 100%);
    margin: 20px auto 0;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.service-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(50px);
}

.service-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 50px;
    height: 50px;
    stroke: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.service-icon-emoji {
    font-size: 3rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6);
    background: linear-gradient(135deg, #d4af37 0%, #f4d47c 100%);
}

.service-item h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.service-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== Why Choose Us Section ===== */
.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.why-choose-us .section-title {
    color: var(--color-text);
}

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

.reason-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px);
}

.reason-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.reason-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.reason-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
}

.reason-icon svg {
    stroke: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.reason-item:hover .reason-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6);
    background: linear-gradient(135deg, #d4af37 0%, #f4d47c 100%);
}

.reason-item h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-text);
}

.reason-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

/* ===== Book Now Button (Header) ===== */
.btn-book-now {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: #ffffff;
    color: #000000;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6);
    background: #00d4ff;
    color: #000000;
}

.header:not(.scrolled) .btn-book-now {
    background: #ffffff;
    color: #000000;
}

.header.scrolled .btn-book-now {
    background: #ffffff;
    color: #000000;
}

/* ===== Contact Section ===== */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.contact .section-title {
    color: var(--color-text);
}

.contact-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--color-text-light);
    margin-bottom: 60px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.contact-card.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
}

.contact-icon svg {
    stroke: #ffffff;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6);
    background: linear-gradient(135deg, #d4af37 0%, #f4d47c 100%);
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--color-text);
}

.contact-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00d4ff;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    word-break: break-word;
    max-width: 100%;
}

.contact-link:hover {
    color: #d4af37;
    transform: scale(1.05);
}

.contact-text {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

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

.btn-book-now-large {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 25px 60px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #000000;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 60px;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.5);
    transition: all 0.4s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

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

.btn-book-now-large:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.7);
    background: linear-gradient(135deg, #d4af37 0%, #f4d47c 100%);
    color: #000000;
    animation: none;
}

.btn-book-now-large svg {
    width: 30px;
    height: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #000000;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4d47c 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.contact-form .btn-primary {
    width: 100%;
}

/* ===== Scroll Animations ===== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        padding: 100px 30px 30px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-link {
        padding: 16px 0;
        color: var(--color-text) !important;
    }

    .dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        padding: 0 0 12px 20px;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .nav-item.has-dropdown.active .dropdown {
        display: block;
    }

    .mobile-toggle {
        display: flex;
    }

    .header {
        padding: 10px 0;
    }

    .logo img {
        height: 45px;
    }

    .header.scrolled .logo img {
        height: 40px;
    }

    .header-social {
        gap: 10px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 640px) {
    .header {
        padding: 8px 0;
    }

    .header-content {
        gap: 15px;
    }

    .logo img {
        height: 40px;
    }

    .header.scrolled .logo img {
        height: 35px;
    }

    .header-social {
        gap: 8px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
    }

    .social-icon svg {
        width: 16px;
        height: 16px;
    }

    .service-gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .gallery-title {
        font-size: 2rem;
    }

    .modal-close {
        top: 15px;
        right: 25px;
        font-size: 40px;
    }

    .modal-nav {
        padding: 12px;
    }

    .modal-nav svg {
        width: 25px;
        height: 25px;
    }

    .modal-prev {
        left: 15px;
    }

    .modal-next {
        right: 15px;
    }

    .modal-caption {
        font-size: 1rem;
        bottom: 15px;
    }

    .gallery-icon-svg {
        width: 40px;
        height: 40px;
    }

    .btn-load-more {
        padding: 12px 35px;
        font-size: 1rem;
    }

    .about {
        padding: 60px 0;
    }

    .about-content {
        padding: 0 30px;
    }

    .about-text {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }

    .about-text:first-child {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }

    .about-text:first-child strong {
        font-size: 1.8rem;
    }

    .about-text strong {
        font-size: 1.15rem;
    }

    .about-text:last-child {
        margin-top: 40px;
        padding-top: 30px;
    }

    .services {
        padding: 60px 0;
    }

    .what-we-do,
    .why-choose-us,
    .contact {
        padding: 60px 0;
    }

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

    .services-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .footer-social-links a {
        width: 45px;
        height: 45px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .time-back-section {
        padding: 60px 0;
    }

    .seals-wrapper {
        gap: 20px;
    }

    .seal-item img {
        width: 120px;
        height: 120px;
    }

    .time-back-subtitle {
        font-size: 1.2rem;
        padding: 0 20px;
    }

    .philosophy-section {
        padding: 60px 0;
    }

    .philosophy-content {
        padding: 0 30px;
    }

    .philosophy-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .philosophy-quote {
        font-size: 1.2rem;
        line-height: 1.8;
    }

    .philosophy-signature {
        font-size: 1rem;
    }

    .reason-icon {
        width: 70px;
        height: 70px;
    }

    .reason-icon svg {
        width: 45px;
        height: 45px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon svg {
        width: 45px;
        height: 45px;
    }

    .service-icon-emoji {
        font-size: 2.5rem;
    }

    .btn-book-now {
        display: none;
    }

    .btn-book-now-large {
        padding: 20px 40px;
        font-size: 1.4rem;
        gap: 10px;
    }

    .btn-book-now-large svg {
        width: 24px;
        height: 24px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .btn-hero-cta {
        padding: 16px 35px;
        font-size: 1.1rem;
        margin-top: 25px;
    }

    .seals-wrapper {
        gap: 30px;
        max-width: 400px;
        margin: 0 auto 40px;
    }

    .seal-item img {
        width: 150px;
        height: 150px;
    }

    .time-back-subtitle {
        font-size: 1.5rem;
        padding: 0 30px;
    }

    .services-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .contact-link {
        font-size: 1rem;
    }

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

@media (max-width: 480px) {
    .btn-hero-cta {
        padding: 14px 30px;
        font-size: 1rem;
        margin-top: 20px;
    }

    .about-content {
        padding: 0 20px;
    }

    .about-text {
        font-size: 1rem;
        margin-bottom: 28px;
        line-height: 1.75;
    }

    .about-text:first-child {
        font-size: 1.05rem;
        margin-bottom: 32px;
    }

    .about-text:first-child strong {
        font-size: 1.5rem;
    }

    .about-text strong {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .about-text:last-child {
        margin-top: 35px;
        padding-top: 28px;
    }

    .seal-item img {
        width: 120px;
        height: 120px;
    }

    .time-back-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        padding: 0 20px;
    }

    .service-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }

    .gallery-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .gallery-icon-svg {
        width: 35px;
        height: 35px;
    }

    .btn-load-more {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .modal-close {
        top: 10px;
        right: 15px;
        font-size: 35px;
    }

    .modal-nav {
        padding: 10px;
    }

    .modal-nav svg {
        width: 20px;
        height: 20px;
    }

    .modal-prev {
        left: 10px;
    }

    .modal-next {
        right: 10px;
    }

    .modal-caption {
        font-size: 0.9rem;
        bottom: 10px;
        padding: 10px;
    }

    .modal-video {
        width: 95vw;
        height: 53vw;
    }

    .modal-video-player {
        width: 95vw;
        max-height: 70vh;
    }

    .philosophy-section {
        padding: 60px 0;
    }

    .philosophy-content {
        padding: 0 20px;
    }

    .philosophy-title {
        font-size: 1.7rem;
        margin-bottom: 25px;
    }

    .philosophy-quote {
        font-size: 1.1rem;
        line-height: 1.75;
        margin-bottom: 25px;
    }

    .philosophy-signature {
        font-size: 0.95rem;
    }

    .services-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .reason-icon {
        width: 60px;
        height: 60px;
    }

    .reason-icon svg {
        width: 35px;
        height: 35px;
    }

    .contact-link {
        font-size: 0.85rem;
    }

    .contact-card {
        padding: 25px 15px;
    }

    .contact-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon svg {
        width: 35px;
        height: 35px;
    }

    .service-icon-emoji {
        font-size: 2rem;
    }

    .btn-book-now-large {
        padding: 18px 30px;
        font-size: 1.2rem;
    }

    .btn-book-now-large svg {
        width: 20px;
        height: 20px;
    }
}
