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

:root {
    --primary-color: #FF69B4;
    --secondary-color: #4ECDC4;
    --accent-color: #FFD700;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
    --success: #28A745;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 5px 20px rgba(0,0,0,0.15);
    --glow-color: #4ECDC4;
    --glow-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    letter-spacing: 0.3px;
    overflow-x: hidden;
    background-image: linear-gradient(to right top, #fff4ff, #fff4ff, #fff4ff, #fff4ff, #fff4ff, #fff2fe, #feeffc, #feedfb, #fee7f8, #fee2f4, #fedcef, #ffd6ea);
    background-attachment: fixed;
    min-height: 100vh;
}

/* Apply Poppins to all elements by default */
* {
    font-family: 'Poppins', sans-serif;
}

/* Only hero titles use Great Vibes */
.hero-title,
.gallery-hero-content h1,
.reviews-hero-content h1,
.about-hero-content h1,
.service-hero-content h1 {
    font-family: 'Great Vibes', cursive !important;
}

/* Grid Centering Utility - Ensures all grid layouts center properly */
.service-list,
.service-cards-grid,
.benefits-grid,
.approach-grid,
.process-steps,
.gallery-grid,
.info-grid,
.reviews-grid {
    justify-content: center;
    justify-items: center;
}

/* Special handling for 2-item grids - prevent stretching */
.service-list,
.service-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 400px));
}

.benefits-grid,
.approach-grid,
.process-steps,
.info-grid,
.reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 380px));
}

.gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 400px));
}

/* Premium Interactive Card System */
.card-interactive {
    position: relative;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.card-interactive:hover {
    transform: translateY(-8px);
    border-color: var(--glow-color);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15), var(--glow-shadow);
}

/* Subtle card for secondary content */
.card-subtle {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    transition: box-shadow 0.3s ease;
}

.card-subtle:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Navigation */
.nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
    margin-right: 3rem;
}

.logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

/* Social Icons in Header */
.social-icons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-left: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-dark);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.social-icons a.facebook:hover {
    background: #1877F2;
    color: white;
}

.social-icons a.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-menu > li > a:hover {
    color: var(--text-dark);
}

.nav-menu > li > a.active {
    color: var(--text-dark);
}

/* Dropdown parent links should not turn pink unless explicitly active */
.dropdown > a {
    color: var(--text-dark);
}

.dropdown > a:hover {
    color: var(--text-dark);
}

.dropdown {
    position: relative;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 0.5rem 0;
    min-width: 220px;
    border-radius: 10px;
    margin-top: 0.5rem;
    border: 1px solid var(--border-color);
}

/* Expanded hover area to prevent dropdown from closing */
.dropdown::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    z-index: -1;
}

/* Bridge gap between parent and dropdown menu */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 20px;
    z-index: 999;
}

.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.2s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Keep dropdown open when hovering over dropdown area */
.dropdown-menu:hover {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
}

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

.btn-nav {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.6rem 1.75rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 105, 180, 0.3);
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: #FF1493;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.4);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #FF1493;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: #3DB5AC;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Hero Section */
/* ===================================
   HERO SECTION WITH VIDEO BACKGROUND
   =================================== */

/* Hero Section Container */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #ed64a6 100%);
}

/* Video Background Container */
.hero-video-container {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    overflow: visible;
    z-index: 0;
    background: transparent;
    border: none;
    outline: none;
}

/* Video Element */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 120%;
    min-height: 120%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.75) blur(2px);
    opacity: 0.75;
    border: none;
    outline: none;
}

/* Adjust video for mobile */
@media (max-width: 768px) {
    /* Keep video in hero on mobile */
    .hero-video {
        width: 100%;
        height: 100%;
        min-width: auto;
        min-height: auto;
        object-fit: contain;
        object-position: center 20%;
        transform: translate(-50%, -50%) scale(1.1);
        filter: brightness(0.8);
        opacity: 1;
    }
    
    /* Increase overlay on mobile for text readability */
    .hero-video-overlay {
        background: linear-gradient(
            135deg,
            rgba(255, 105, 180, 0.80) 0%,
            rgba(255, 192, 203, 0.70) 50%,
            rgba(237, 100, 166, 0.60) 100%
        );
    }
}

/* Beautiful Pink Gradient Overlay */
.hero-video-overlay {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: linear-gradient(
        135deg,
        rgba(255, 105, 180, 0.75) 0%,
        rgba(255, 192, 203, 0.65) 50%,
        rgba(237, 100, 166, 0.55) 100%
    );
    z-index: 1;
    border: none;
}

/* Hero Content (on top of video) */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 6rem 1.5rem 4rem;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
    order: 1;
}

/* Soft overlay behind text for better readability - REMOVED to eliminate square */

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-badge i {
    font-size: 1.1rem;
    color: #FFD700;
}

/* Hero Title */
.hero-title {
    font-family: 'Great Vibes', cursive;
    font-size: 5rem;
    font-weight: 400;
    margin-bottom: 1.25rem;
    line-height: 1.3;
    color: #FFFFFF;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    opacity: 1;
    font-weight: 600;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Hero Description */
.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 500;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-hero-primary {
    background: white;
    color: #764ba2;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f8f8f8;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Hero Features Grid */
.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.hero-feature-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.hero-feature-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #FFD700;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.feature-text strong {
    font-size: 0.95rem;
    font-weight: 600;
}

.feature-text span {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.2rem;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        display: block;
        padding: 0.5rem 0 2rem 0;
    }
    
    .hero-content {
        padding: 1rem 1rem;
        margin: 0 auto;
    }
    
    .hero-badge {
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        margin-bottom: 0;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    /* Hide feature cards on mobile */
    .hero-features {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    .feature-icon {
        font-size: 1.5rem;
    }
    
    .feature-text strong {
        font-size: 0.85rem;
    }
    
    .feature-text span {
        font-size: 0.75rem;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .hero-content,
    .scroll-indicator {
        animation: none;
    }
    
    .hero-video {
        display: none;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #FFE5F1 0%, #E0F7FA 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Sections */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Why Mobile Section */
.why-mobile {
    background: transparent;
}

.benefits-grid {
    display: grid;
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--glow-color);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15), var(--glow-shadow);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
}

/* Services Section */
.services {
    background: transparent;
}

.service-category {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.category-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.category-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
}

.service-category > p {
    text-align: left;
}

.service-list {
    display: grid;
    gap: 1.5rem;
    margin: 1.5rem auto;
    max-width: 900px;
    text-align: left;
}

.service-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    display: flex;
    gap: 1.25rem;
    align-items: start;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--glow-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12), var(--glow-shadow);
}

.service-card i {
    font-size: 2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.service-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Info Section */
.info-section {
    background: transparent;
}

.info-grid {
    display: grid;
    gap: 2rem;
    margin: 0 auto;
    max-width: 900px;
}

.info-card {
    background: var(--bg-light);
    padding: 2.25rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s ease;
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
}

.info-card:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card i {
    color: var(--primary-color);
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.service-areas-list {
    list-style: none;
}

.service-areas-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-areas-list i {
    color: var(--success);
    font-size: 0.9rem;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.link-arrow:hover {
    gap: 0.75rem;
}

/* Reviews Section */
.reviews-preview {
    background: var(--bg-light);
}

.reviews-preview .container {
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 0 auto 2rem;
    max-width: 1200px;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-style: italic;
    flex: 1;
}

.reviewer {
    font-weight: 600;
    color: var(--text-dark);
    font-style: normal;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #FF69B4 0%, #4ECDC4 100%);
    color: var(--white);
    text-align: center;
}

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

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-section a {
    color: inherit;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: var(--bg-light);
}

.cta-section .btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-section .btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
}

/* Review CTA Section */
.review-cta-section {
    background: transparent;
    padding: 4rem 0;
    text-align: center;
}

.review-cta-section h2 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.review-cta-section p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Map Section */
.map-section {
    background: transparent;
}

.map-container {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

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

.footer-col p {
    color: #B0B0B0;
    margin-bottom: 0.5rem;
}

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

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #B0B0B0;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-contact {
    margin-top: 1rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #B0B0B0;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: flex-start;
}

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

.footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.2);
}

.footer-social a.facebook:hover {
    background: #1877F2;
}

.footer-social a.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

/* Action Buttons on Contact Page */
.action-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 2rem auto;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-dark);
    min-height: 180px;
}

.action-btn:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.action-btn i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.action-btn .btn-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.action-btn .btn-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* About Page */
.about-story {
    padding: 4rem 0;
}

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

.about-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
}

.about-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Video Section */
.video-section {
    padding: 4rem 0;
    background: transparent;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.approach-section {
    background: transparent;
}

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

.approach-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.approach-card:hover {
    transform: translateY(-8px);
    border-color: var(--glow-color);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15), var(--glow-shadow);
}

.approach-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.approach-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.approach-card p {
    color: var(--text-light);
}

.values-section {
    padding: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.values-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.values-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: var(--text-light);
    font-size: 0.95rem;
}

.values-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
}

.service-mention {
    background: var(--bg-light);
    text-align: center;
}

/* Service Pages */
.service-intro {
    padding: 3rem 0;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.services-list {
    padding: 3rem 0;
    background: var(--bg-light);
}

.service-cards-grid {
    display: grid;
    gap: 2rem;
    margin: 2rem auto 0;
    max-width: 900px;
}

.service-detail-card {
    background: var(--white);
    padding: 2.25rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    border-color: var(--glow-color);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15), var(--glow-shadow);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-detail-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-detail-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.learn-more {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.learn-more:hover {
    gap: 0.75rem;
}

.why-mobile-grooming {
    background: var(--white);
}

.benefit-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}

.benefit-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.benefit-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-light);
}

/* Service Detail Page */
.service-detail {
    padding: 3rem 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.service-detail-content h2 {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.service-detail-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.service-includes,
.perfect-for-list {
    list-style: none;
    margin-bottom: 2rem;
}

.service-includes li,
.perfect-for-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.service-includes li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-includes i {
    color: var(--success);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.service-detail-sidebar .pricing-card,
.service-detail-sidebar .info-card,
.service-detail-sidebar .cta-sidebar {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.service-detail-sidebar h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-detail-sidebar p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-areas-section {
    background: var(--bg-light);
    text-align: center;
}

.service-areas-section p {
    text-align: center;
    margin: 0 auto 1.5rem;
    max-width: 800px;
}

.service-areas-section .btn {
    display: inline-block;
    margin: 1rem auto 0;
    text-align: center;
}

/* Gallery Hero Header with Image */
.gallery-hero-header {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
    z-index: 1;
    filter: brightness(0.7);
}

.gallery-hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.gallery-hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    padding: 3rem 1.5rem;
}

.gallery-hero-content h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), 0 2px 4px rgba(0, 0, 0, 0.9);
}

.gallery-hero-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.5px;
    color: white;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .gallery-hero-header {
        min-height: 300px;
    }
    
    .gallery-hero-content h1 {
        font-size: 4rem;
        line-height: 1.2;
    }
    
    .gallery-hero-content p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
}

/* Reviews Hero Header with Image */
.reviews-hero-header {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.reviews-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    filter: brightness(0.7);
}

.reviews-hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.reviews-hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    padding: 3rem 1.5rem;
}

.reviews-hero-content h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), 0 2px 4px rgba(0, 0, 0, 0.9);
}

.reviews-hero-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.5px;
    color: white;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .reviews-hero-header {
        min-height: 300px;
    }
    
    .reviews-hero-content h1 {
        font-size: 4rem;
        line-height: 1.2;
    }
    
    .reviews-hero-content p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
}

/* About Hero Header with Image */
.about-hero-header {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    filter: brightness(0.7);
}

.about-hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    padding: 3rem 1.5rem;
}

.about-hero-content h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), 0 2px 4px rgba(0, 0, 0, 0.9);
}

.about-hero-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.5px;
    color: white;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .about-hero-header {
        min-height: 300px;
    }
    
    .about-hero-content h1 {
        font-size: 4rem;
        line-height: 1.2;
    }
    
    .about-hero-content p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
}

/* Service Pages Hero Header with Image */
.service-hero-header {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    filter: brightness(0.7);
}

.service-hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.service-hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    padding: 3rem 1.5rem;
}

.service-hero-content h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), 0 2px 4px rgba(0, 0, 0, 0.9);
}

.service-hero-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    line-height: 1.6;
    letter-spacing: 0.5px;
    font-weight: 400;
    color: white;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .service-hero-header {
        min-height: 300px;
    }
    
    .service-hero-content h1 {
        font-size: 4rem;
        line-height: 1.2;
    }
    
    .service-hero-content p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
}

/* About Intro Video Section */
.about-video-section {
    background: var(--white);
    padding: 2rem 0;
}

.about-video-container {
    max-width: 300px;
    margin: 0 auto;
}

.about-intro-video {
    width: 100%;
    height: auto;
    display: block;
    max-width: 300px;
}

@media (max-width: 768px) {
    .about-video-section {
        padding: 1.5rem 0;
    }
    
    .about-video-container {
        max-width: 240px;
    }
    
    .about-intro-video {
        max-width: 240px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    /* iPad/Tablet size */
    .about-video-container {
        max-width: 270px;
    }
    
    .about-intro-video {
        max-width: 270px;
    }
}

/* Service Areas Page */
.service-areas-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.service-areas-intro p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.service-areas-details {
    padding: 3rem 0;
}

.area-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 2rem;
    transition: box-shadow 0.3s ease;
}

.area-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.area-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.area-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.area-header h2 {
    font-size: 1.8rem;
    text-align: left;
    margin: 0;
}

.area-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.not-listed {
    background: var(--bg-light);
    text-align: center;
}

/* Reviews Page */
.reviews-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 2rem;
}

.reviews-section {
    padding: 3rem 0;
    overflow: hidden;
}

.reviews-section .container {
    text-align: left;
}

.scroll-container {
    height: 800px;
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 5%,
        black 95%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 5%,
        black 95%,
        transparent 100%
    );
}

.reviews-scroll-wrapper {
    animation: scroll-up 120s linear infinite;
    will-change: transform;
    width: 100%;
}

@keyframes scroll-up {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.reviews-scroll-wrapper.paused {
    animation-play-state: paused;
}

.reviews-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-bottom: 3rem;
    width: 100%;
    min-width: 0;
    justify-items: stretch;
    align-items: start;
    justify-content: start;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

/* Responsive columns */
@media (max-width: 968px) {
    .reviews-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .reviews-grid-full {
        grid-template-columns: 1fr;
    }
}

.review-card-full {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 350px;
    min-width: 280px;
    margin: 0;
    width: 100%;
}

.review-card-full p {
    max-height: 150px;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
    padding-right: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) var(--bg-light);
}

/* Custom scrollbar styling for webkit browsers */
.review-card-full p::-webkit-scrollbar {
    width: 6px;
}

.review-card-full p::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}

.review-card-full p::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

.review-card-full p::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.review-card-full:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 1rem;
}

.reviewer-name {
    font-weight: 600;
    color: var(--text-dark);
}

.reviewer-location {
    color: var(--text-light);
    font-size: 0.9rem;
}

.review-source {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    margin-bottom: 0.75rem;
}

.review-source.google {
    background: #E8F5E9;
    color: #2E7D32;
}

.review-source.facebook {
    background: #E3F2FD;
    color: #1877F2;
}

.review-source i {
    font-size: 0.85rem;
}

.leave-review {
    background: var(--bg-light);
    text-align: center;
}

/* FAQ Page */
.faq-section {
    padding: 3rem 0;
}

.faq-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 1.5rem;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.faq-question {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

.still-have-questions {
    background: var(--bg-light);
    text-align: center;
}

/* Contact Page */
.contact-info-section {
    padding: 3rem 0 2rem;
    background: var(--white);
}

.contact-details-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

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

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: start;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
}

.contact-method:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-method i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-method h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.contact-method a {
    color: var(--primary-color);
    font-weight: 600;
}

.method-note {
    font-size: 0.9rem;
    font-style: italic;
}

/* Booking Form Section */
.booking-form-section {
    padding: 2rem 0;
    background: var(--bg-light);
}

.booking-form-container {
    width: 100%;
    height: 1600px;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.booking-form-container iframe {
    display: block;
    border: none;
}

/* Legacy contact styles - keeping for compatibility */
.contact-section {
    padding: 3rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info h2 {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
}

.contact-form-wrapper h2 {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
    text-align: center;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.form-message.success {
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.form-message.error {
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

.quick-contact {
    background: var(--bg-light);
    text-align: center;
}

/* Cat Tips Section */
.cat-tips {
    background: var(--white);
}

.tips-content {
    max-width: 900px;
    margin: 0 auto;
}

.tips-content > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.tip-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}

.tip-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.tip-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.tip-card p {
    color: var(--text-light);
}

/* Extra Care Pages */
.why-care-matters {
    background: var(--white);
}

.care-content {
    max-width: 1000px;
    margin: 0 auto;
}

.care-content > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.care-benefit {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}

.care-benefit:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.care-benefit i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.care-benefit h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.care-benefit p {
    color: var(--text-light);
}

.how-it-works {
    background: var(--bg-light);
}

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

.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}

.step-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        align-items: center;
        gap: 0.5rem;
    }

    .social-icons {
        margin-left: 0;
        margin-top: 1rem;
    }

    .action-buttons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .action-btn {
        min-height: 140px;
        padding: 1.5rem 1rem;
    }

    .action-btn i {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

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

    .mobile-toggle {
        display: block;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        display: none;
        margin-top: 0;
        background: rgba(248, 249, 250, 0.95);
        border-radius: 8px;
        margin: 0.5rem 1rem;
        text-align: center;
    }
    
    .dropdown-menu a {
        text-align: center;
    }
    
    .logo {
        font-size: 1rem;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .about-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods-grid {
        grid-template-columns: 1fr;
    }

    .booking-form-section {
        padding: 1.5rem 0;
    }

    .booking-form-container {
        height: 1400px;
        border-radius: 10px;
    }

    .experience-stats {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 576px) {
    /* Remove max-width constraints on mobile for full-width cards */
    .service-card,
    .info-card,
    .service-detail-card {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    section h2 {
        font-size: 1.75rem;
    }

    .hero-cta,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn,
    .cta-buttons .btn {
        width: 100%;
    }
    
    /* Disable hover transforms on mobile for better UX */
    .card-interactive:hover,
    .benefit-card:hover,
    .service-card:hover,
    .service-detail-card:hover,
    .approach-card:hover,
    .service-highlight:hover,
    .process-step:hover {
        transform: none;
    }

    .booking-form-section {
        padding: 1rem 0;
    }

    .booking-form-section .container {
        padding: 0 10px;
    }

    .booking-form-container {
        height: 1800px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-info-section {
        padding: 2rem 0;
    }
}

/* What Makes Us Different Section */
.what-makes-us-different {
    padding: 4rem 0;
    background: var(--white);
}

.different-content {
    max-width: 900px;
    margin: 0 auto;
}

.different-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Grooming Process Section */
.grooming-process {
    padding: 4rem 0;
    background: var(--bg-light);
}

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

.process-step {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.process-step:hover {
    transform: translateY(-8px);
    border-color: var(--glow-color);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15), var(--glow-shadow);
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Photo Gallery Styles */
.gallery-intro {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 0;
    text-align: center;
}

.gallery-intro p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.photo-gallery-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

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

.gallery-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-caption {
    padding: 1.5rem;
}

.gallery-caption h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.gallery-caption p {
    color: var(--text-light);
    line-height: 1.6;
}

.gallery-services {
    padding: 4rem 0;
    background: var(--white);
    text-align: center;
}

.gallery-services > p {
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

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

.service-highlight {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.service-highlight:hover {
    transform: translateY(-8px);
    border-color: var(--glow-color);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15), var(--glow-shadow);
}

.service-highlight i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-highlight p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.gallery-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FF69B4 0%, #4ECDC4 100%);
    color: var(--white);
    text-align: center;
}

.gallery-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.gallery-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}