/*
Theme Name: Snip Doggy Dogg
Theme URI: https://snipdoggydogg.co.uk
Author: Alex Lyle
Author URI: https://pro-cess.co.uk
Description: Custom WordPress theme for Snip Doggy Dogg - Professional Dog Grooming in Doncaster. Designed with love, built for conversions.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: snip-doggy-dogg
Tags: dog-grooming, pet-services, doncaster, custom-theme
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
*/

/* ===========================================
   TABLE OF CONTENTS
   ===========================================
   1.  CSS Custom Properties
   2.  Reset & Base
   3.  Typography
   4.  Layout
   5.  Header & Navigation
   6.  Hero Sections
   7.  Buttons
   8.  Cards
   9.  Services Grid
   10. Pricing Tables
   11. Gallery
   12. Testimonials
   13. FAQ Accordion
   14. Forms
   15. Booking Section
   16. Area Pages
   17. Blog / Posts
   18. Footer
   19. Decorative Elements
   20. Animations
   21. Utilities
   22. WooCommerce Overrides
   23. Responsive
   =========================================== */


/* -----------------------------------------
   1. CSS Custom Properties
   ----------------------------------------- */
:root {
    /* Brand Colours - from official logo & price list */
    --purple-dark: #3B1560;
    --purple: #6B2FA0;
    --purple-light: #9B6BBF;
    --purple-muted: #D4C5E2;
    --purple-pale: #F3EEF8;

    --cyan: #00CCE5;
    --cyan-dark: #00A3B8;
    --cyan-light: #7DE8F4;
    --cyan-pale: #E0F7FA;

    --gold: #FFB800;
    --gold-dark: #E5A500;
    --orange: #F7941D;

    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --grey-light: #F0EEF5;
    --grey: #B0ADBA;
    --grey-dark: #4A4A68;
    --dark: #1A1A2E;

    /* Functional Colours */
    --success: #22C55E;
    --error: #EF4444;
    --warning: #F59E0B;
    --info: var(--cyan);

    /* Typography */
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Nunito', sans-serif;

    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
    --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
    --text-3xl: clamp(1.875rem, 1.4rem + 2.4vw, 2.5rem);
    --text-4xl: clamp(2.25rem, 1.5rem + 3.75vw, 3.5rem);
    --text-5xl: clamp(2.75rem, 1.8rem + 4.75vw, 4.5rem);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Container */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1200px;
    --container-2xl: 1400px;

    /* Borders */
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(59, 21, 96, 0.08);
    --shadow-md: 0 4px 12px rgba(59, 21, 96, 0.1);
    --shadow-lg: 0 8px 30px rgba(59, 21, 96, 0.12);
    --shadow-xl: 0 16px 50px rgba(59, 21, 96, 0.15);
    --shadow-glow-cyan: 0 0 20px rgba(0, 204, 229, 0.3);
    --shadow-glow-gold: 0 0 20px rgba(255, 184, 0, 0.3);
    --shadow-glow-purple: 0 0 20px rgba(107, 47, 160, 0.3);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Z-index layers */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-toast: 500;
}


/* -----------------------------------------
   2. Reset & Base
   ----------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--purple);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--cyan-dark);
}

ul, ol {
    list-style: none;
}

input,
textarea,
select,
button {
    font-family: inherit;
    font-size: inherit;
}

::selection {
    background: var(--cyan);
    color: var(--white);
}


/* -----------------------------------------
   3. Typography
   ----------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--purple-dark);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
    margin-bottom: var(--space-md);
    color: var(--grey-dark);
}

p:last-child {
    margin-bottom: 0;
}

.section-label {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--cyan);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.section-label i {
    font-size: 0.75em;
}

.section-title {
    margin-bottom: var(--space-lg);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--grey-dark);
    max-width: 650px;
    line-height: 1.7;
}

.text-gradient {
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold-gradient {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

strong {
    font-weight: 700;
}

.lead {
    font-size: var(--text-lg);
    line-height: 1.8;
}


/* -----------------------------------------
   4. Layout
   ----------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-2xl);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container--narrow {
    max-width: var(--container-md);
}

.container--wide {
    max-width: var(--container-2xl);
}

.section {
    padding: var(--space-3xl) 0;
}

.section--sm {
    padding: var(--space-2xl) 0;
}

.section--lg {
    padding: var(--space-4xl) 0;
}

.section--purple {
    background: var(--purple-dark);
    color: var(--white);
}

.section--purple h2,
.section--purple h3,
.section--purple h4 {
    color: var(--white);
}

.section--purple p {
    color: var(--purple-muted);
}

.section--purple .section-label {
    color: var(--gold);
}

.section--grey {
    background: var(--grey-light);
}

.section--cyan-pale {
    background: var(--cyan-pale);
}

.grid {
    display: grid;
    gap: var(--space-xl);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

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

.flex {
    display: flex;
}

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

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

.flex--gap {
    gap: var(--space-lg);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mx-auto { margin-left: auto; margin-right: auto; }


/* -----------------------------------------
   5. Header & Navigation
   ----------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: box-shadow var(--transition-base), background var(--transition-base);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) var(--space-xl);
    width: 100%;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.site-logo img {
    height: 50px;
    width: auto;
    transition: transform var(--transition-spring);
}

.site-logo:hover img {
    transform: scale(1.05) rotate(-3deg);
}

.site-logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--purple-dark);
    line-height: 1.1;
}

/* Primary Navigation */
.primary-nav {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.primary-nav li {
    list-style: none;
    display: inline-block;
}

.primary-nav a {
    display: inline-flex;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--grey-dark);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a.active,
.primary-nav .current-menu-item > a {
    color: var(--purple);
    background: var(--purple-pale);
}

/* Dropdown */
.primary-nav .menu-item-has-children {
    position: relative;
}

.primary-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition-base);
    z-index: var(--z-dropdown);
}

.primary-nav .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary-nav .sub-menu a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-sm);
    border-radius: var(--radius-sm);
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-shrink: 0;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--purple-dark);
    font-size: var(--text-sm);
    white-space: nowrap;
    padding: var(--space-sm) var(--space-md);
    background: var(--purple-pale);
    border-radius: var(--radius-full);
}

.header-phone i {
    color: var(--cyan);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: calc(var(--z-overlay) + 1);
}

.hamburger {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--purple-dark);
    position: relative;
    transition: background var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--purple-dark);
    transition: transform var(--transition-base);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .hamburger::after {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(59, 21, 96, 0.5);
    z-index: var(--z-overlay);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.mobile-nav-overlay.active {
    opacity: 1;
}

/* Mobile Nav Panel */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: min(85vw, 380px);
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    z-index: calc(var(--z-overlay) + 1);
    padding: var(--space-3xl) var(--space-xl) var(--space-xl);
    overflow-y: auto;
    transition: right var(--transition-slow);
    box-shadow: var(--shadow-xl);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    display: block;
    padding: var(--space-md) 0;
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--grey-dark);
    border-bottom: 1px solid var(--grey-light);
    transition: all var(--transition-fast);
}

.mobile-nav a:hover,
.mobile-nav .current-menu-item > a {
    color: var(--purple);
    padding-left: var(--space-sm);
}

.mobile-nav .sub-menu {
    padding-left: var(--space-lg);
}

.mobile-nav .sub-menu a {
    font-size: var(--text-base);
    font-weight: 400;
}

.mobile-nav-contact {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 2px solid var(--purple-pale);
}

.mobile-nav-contact a {
    border: none;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-base);
    color: var(--purple);
}

.mobile-nav-contact a i {
    width: 20px;
    color: var(--cyan);
}

/* Header spacer (prevents content hiding behind fixed header) */
.header-spacer {
    height: 72px;
}


/* -----------------------------------------
   6. Hero Sections
   ----------------------------------------- */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 50%, #5B2590 100%);
    color: var(--white);
    overflow: hidden;
    min-height: auto;
    padding: var(--space-4xl) 0;
    display: flex;
    align-items: center;
}

.hero--sm {
    min-height: auto;
    padding: var(--space-4xl) 0 var(--space-3xl);
}

/* Hero layout - flex side-by-side on desktop */
.hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3xl);
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.hero-content p {
    color: var(--purple-muted);
    font-size: var(--text-lg);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--white);
    backdrop-filter: blur(4px);
}

.hero-badge i {
    color: var(--gold);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.hero-image {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.hero-image img {
    max-width: 380px;
    width: 100%;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
    border-radius: var(--radius-2xl);
    border: 4px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

/* Bubble decorations */
.hero-bubbles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 204, 229, 0.15), rgba(0, 204, 229, 0.05));
    animation: float 6s ease-in-out infinite;
}

.bubble--1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.bubble--2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: 15%;
    animation-delay: -2s;
}

.bubble--3 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: -30px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 184, 0, 0.12), rgba(255, 184, 0, 0.04));
    animation-delay: -4s;
}

.bubble--4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 10%;
    animation-delay: -1s;
}

.bubble--5 {
    width: 80px;
    height: 80px;
    top: 40%;
    right: 30%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 184, 0, 0.1), rgba(255, 184, 0, 0.03));
    animation-delay: -3s;
}

/* Page hero (smaller, for inner pages) */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
    color: var(--white);
    padding: var(--space-4xl) 0 var(--space-3xl);
    text-align: center;
    overflow: hidden;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.page-hero p {
    color: var(--purple-muted);
    font-size: var(--text-lg);
    max-width: 600px;
    margin: 0 auto;
}

.page-hero .hero-bubbles .bubble {
    opacity: 0.5;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    margin-bottom: var(--space-lg);
    color: var(--purple-light);
}

.breadcrumbs a {
    color: var(--cyan-light);
}

.breadcrumbs a:hover {
    color: var(--white);
}

.breadcrumbs .separator {
    color: var(--purple-light);
    opacity: 0.5;
}


/* -----------------------------------------
   7. Buttons
   ----------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.85em 2em;
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn--primary {
    background: var(--cyan);
    color: var(--white);
    border-color: var(--cyan);
    box-shadow: 0 4px 15px rgba(0, 204, 229, 0.3);
}

.btn--primary:hover {
    background: var(--cyan-dark);
    border-color: var(--cyan-dark);
    color: var(--white);
    box-shadow: 0 6px 25px rgba(0, 204, 229, 0.4);
}

.btn--secondary {
    background: var(--purple);
    color: var(--white);
    border-color: var(--purple);
    box-shadow: 0 4px 15px rgba(107, 47, 160, 0.3);
}

.btn--secondary:hover {
    background: var(--purple-dark);
    border-color: var(--purple-dark);
    color: var(--white);
    box-shadow: 0 6px 25px rgba(107, 47, 160, 0.4);
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

.btn--gold:hover {
    box-shadow: 0 6px 25px rgba(255, 184, 0, 0.5);
    color: var(--white);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

.btn--outline-purple {
    background: transparent;
    color: var(--purple);
    border-color: var(--purple);
}

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

.btn--sm {
    padding: 0.6em 1.4em;
    font-size: var(--text-sm);
}

.btn--lg {
    padding: 1em 2.5em;
    font-size: var(--text-lg);
}

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

.btn--icon-only {
    padding: 0.75em;
    aspect-ratio: 1;
}


/* -----------------------------------------
   8. Cards
   ----------------------------------------- */
.card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--grey-light);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

.card-icon--purple {
    background: var(--purple-pale);
    color: var(--purple);
}

.card-icon--cyan {
    background: var(--cyan-pale);
    color: var(--cyan-dark);
}

.card-icon--gold {
    background: #FFF3D0;
    color: var(--gold-dark);
}

.card h3, .card h4 {
    margin-bottom: var(--space-sm);
}

.card p {
    font-size: var(--text-sm);
}

/* Feature Card (with top border accent) */
.card--feature {
    border-top: 4px solid var(--cyan);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card--feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(0, 204, 229, 0.04), transparent);
    pointer-events: none;
}

.card--feature:nth-child(2) {
    border-top-color: var(--purple);
}

.card--feature:nth-child(2)::before {
    background: linear-gradient(180deg, rgba(107, 47, 160, 0.04), transparent);
}

.card--feature:nth-child(3) {
    border-top-color: var(--gold);
}

.card--feature:nth-child(3)::before {
    background: linear-gradient(180deg, rgba(255, 184, 0, 0.04), transparent);
}

.card--feature:nth-child(4) {
    border-top-color: var(--orange);
}

.card--feature:nth-child(4)::before {
    background: linear-gradient(180deg, rgba(247, 148, 29, 0.04), transparent);
}

.card--feature .card-icon {
    width: 72px;
    height: 72px;
    font-size: 1.75rem;
    transition: transform var(--transition-spring);
}

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

/* Service Card */
.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--grey-light);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.service-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.service-card-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
}

.service-card-body {
    padding: var(--space-xl);
}

.service-card-body h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}

.service-card-subtitle {
    font-size: var(--text-sm);
    color: var(--cyan-dark);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.service-card-body p {
    font-size: var(--text-sm);
    margin-bottom: var(--space-lg);
}

.service-card-price {
    display: flex;
    align-items: baseline;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
}

.service-card-price .from {
    font-size: var(--text-sm);
    color: var(--grey);
}

.service-card-price .price {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--purple-dark);
}

.service-card-includes {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.service-card-includes li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
    font-size: var(--text-sm);
    color: var(--grey-dark);
}

.service-card-includes li i {
    color: var(--success);
    margin-top: 3px;
    flex-shrink: 0;
}


/* -----------------------------------------
   9. Services Grid
   ----------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    margin-bottom: var(--space-4xl);
}

.service-detail:nth-child(even) {
    direction: rtl;
}

.service-detail:nth-child(even) > * {
    direction: ltr;
}

.service-detail-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--grey-light);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail h3 {
    margin-bottom: var(--space-sm);
}

.service-detail .service-card-subtitle {
    margin-bottom: var(--space-md);
}


/* -----------------------------------------
   10. Pricing Tables
   ----------------------------------------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 0;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    position: relative;
}

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

.pricing-card--featured {
    border-color: var(--gold);
}

.pricing-card--featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--white);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    text-align: center;
    padding: var(--space-xs) 0;
}

.pricing-card-header {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
    color: var(--white);
    padding: var(--space-2xl);
    text-align: center;
}

.pricing-card--featured .pricing-card-header {
    padding-top: calc(var(--space-2xl) + 28px);
}

.pricing-card-header h3 {
    color: var(--white);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-xs);
}

.pricing-card-header .subtitle {
    color: var(--cyan-light);
    font-size: var(--text-sm);
}

.pricing-card-body {
    padding: var(--space-2xl);
}

.pricing-tier {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--grey-light);
}

.pricing-tier:last-of-type {
    border-bottom: none;
}

.pricing-tier-name {
    font-weight: 600;
    color: var(--dark);
    font-size: var(--text-sm);
}

.pricing-tier-size {
    font-size: var(--text-xs);
    color: var(--grey);
    display: block;
}

.pricing-tier-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--text-xl);
    color: var(--purple);
}

.pricing-tier-price .from {
    font-size: var(--text-xs);
    font-weight: 400;
    color: var(--grey);
    display: block;
    text-align: right;
}

.pricing-card-footer {
    padding: 0 var(--space-2xl) var(--space-2xl);
    text-align: center;
}

.pricing-includes {
    background: var(--cyan-pale);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-lg);
}

.pricing-includes p {
    font-size: var(--text-sm);
    color: var(--cyan-dark);
    margin: 0;
}

.pricing-includes p i {
    margin-right: var(--space-xs);
}

/* Add-ons pricing */
.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-md);
}

.addon-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--grey-light);
    transition: all var(--transition-fast);
}

.addon-item:hover {
    border-color: var(--cyan);
    box-shadow: var(--shadow-sm);
}

.addon-item-name {
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--dark);
}

.addon-item-desc {
    font-size: var(--text-xs);
    color: var(--grey);
}

.addon-item-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--text-lg);
    color: var(--purple);
    white-space: nowrap;
}


/* -----------------------------------------
   11. Gallery
   ----------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    group: true;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(59, 21, 96, 0.8), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-base);
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
}

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

.gallery-item-overlay p {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--text-sm);
    margin: 0;
}

/* Before & After Pairs */
.ba-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

.ba-pair {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.ba-pair-name {
    padding: var(--space-md) var(--space-lg);
    background: var(--purple-pale);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--text-lg);
    color: var(--purple-dark);
    text-align: center;
}

.ba-pair-name i {
    color: var(--cyan);
    margin-right: var(--space-sm);
}

.ba-pair-images {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 0;
}

.ba-side {
    position: relative;
    min-width: 0;
}

.ba-carousel {
    display: flex;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.ba-carousel--multi {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.ba-carousel--multi::-webkit-scrollbar {
    display: none;
}

.ba-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    cursor: pointer;
}

.ba-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.ba-label {
    position: absolute;
    top: var(--space-md);
    z-index: 2;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ba-label--before {
    left: var(--space-md);
    background: rgba(214, 54, 56, 0.9);
    color: var(--white);
}

.ba-label--after {
    right: var(--space-md);
    background: rgba(0, 163, 42, 0.9);
    color: var(--white);
}

.ba-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(59, 21, 96, 0.85);
    color: var(--white);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-base), opacity var(--transition-base);
    opacity: 0.7;
    box-shadow: var(--shadow-md);
}

.ba-nav:hover {
    background: var(--purple);
    opacity: 1;
}

.ba-nav--prev {
    left: var(--space-sm);
}

.ba-nav--next {
    right: var(--space-sm);
}

.ba-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: var(--space-sm) 0;
}

.ba-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--grey-light);
    cursor: pointer;
    transition: background var(--transition-base), transform var(--transition-base);
}

.ba-dot.active {
    background: var(--purple);
    transform: scale(1.3);
}

.ba-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: 48px;
    height: 48px;
    background: var(--purple);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
    z-index: 3;
    margin: 0 -24px;
    position: relative;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .ba-pair-images {
        grid-template-columns: 1fr 1fr;
    }

    .ba-arrow {
        display: none;
    }

    .ba-slide {
        aspect-ratio: 3/4;
    }

    .ba-label {
        font-size: var(--text-xs);
        padding: 4px var(--space-sm);
    }

    .ba-dot {
        width: 6px;
        height: 6px;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 46, 0.95);
    z-index: var(--z-modal);
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.lightbox-close {
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    background: none;
    border: none;
    color: var(--white);
    font-size: var(--text-2xl);
    cursor: pointer;
    padding: var(--space-sm);
    transition: transform var(--transition-fast);
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: var(--text-xl);
    cursor: pointer;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    backdrop-filter: blur(4px);
    transition: all var(--transition-fast);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev { left: var(--space-xl); }
.lightbox-next { right: var(--space-xl); }


/* -----------------------------------------
   12. Testimonials
   ----------------------------------------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid var(--grey-light);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-md);
}

.testimonial-stars i {
    color: var(--gold);
    font-size: var(--text-sm);
}

.testimonial-text {
    font-style: italic;
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--grey-dark);
    margin-bottom: var(--space-lg);
    position: relative;
}

.testimonial-text::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--cyan);
    opacity: 0.2;
    position: absolute;
    top: -15px;
    left: -5px;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--purple-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--text-lg);
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-name {
    font-weight: 700;
    color: var(--dark);
    font-size: var(--text-sm);
}

.testimonial-author-detail {
    font-size: var(--text-xs);
    color: var(--grey);
}

/* Testimonial carousel */
.testimonial-carousel {
    position: relative;
    overflow: hidden;
}

.testimonial-carousel-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.testimonial-carousel-track .testimonial-card {
    flex: 0 0 100%;
    min-width: 0;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--purple-muted);
    background: var(--white);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-btn:hover {
    background: var(--purple);
    color: var(--white);
    border-color: var(--purple);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--purple-muted);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

.carousel-dot.active {
    background: var(--cyan);
    width: 30px;
    border-radius: var(--radius-full);
}


/* -----------------------------------------
   13. FAQ Accordion
   ----------------------------------------- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    border: 1px solid var(--grey-light);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-item.active {
    border-color: var(--cyan);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--dark);
    transition: color var(--transition-fast);
    gap: var(--space-md);
}

.faq-question:hover {
    color: var(--purple);
}

.faq-question i {
    font-size: var(--text-sm);
    color: var(--cyan);
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-answer-inner {
    padding: 0 var(--space-xl) var(--space-lg);
    font-size: var(--text-sm);
    line-height: 1.8;
    color: var(--grey-dark);
}


/* -----------------------------------------
   14. Forms
   ----------------------------------------- */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--dark);
    margin-bottom: var(--space-sm);
}

.form-label .required {
    color: var(--error);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.85em 1.2em;
    border: 2px solid var(--grey-light);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--dark);
    font-size: var(--text-base);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(0, 204, 229, 0.1);
}

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

.form-hint {
    font-size: var(--text-xs);
    color: var(--grey);
    margin-top: var(--space-xs);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: var(--text-sm);
    color: var(--grey-dark);
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--cyan);
    margin-top: 2px;
    flex-shrink: 0;
}

.form-success {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    color: #065F46;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
}

.form-error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #991B1B;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
}


/* -----------------------------------------
   15. Booking Section
   ----------------------------------------- */
.booking-section {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
    color: var(--white);
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.booking-section h2 {
    color: var(--white);
}

.booking-section p {
    color: var(--purple-muted);
}

.booking-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.booking-info-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-info-card i {
    font-size: var(--text-2xl);
    color: var(--cyan);
    margin-bottom: var(--space-md);
    display: block;
}

.booking-info-card h4 {
    color: var(--white);
    font-size: var(--text-base);
    margin-bottom: var(--space-xs);
}

.booking-info-card p {
    font-size: var(--text-sm);
    margin: 0;
}


/* -----------------------------------------
   16. Area Pages
   ----------------------------------------- */
.area-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.area-intro-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--grey-light);
}

.area-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.area-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.area-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
}

.area-stat {
    text-align: center;
    padding: var(--space-lg);
    background: var(--purple-pale);
    border-radius: var(--radius-lg);
}

.area-stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--purple);
    display: block;
}

.area-stat-label {
    font-size: var(--text-sm);
    color: var(--grey-dark);
}

.area-directions {
    background: var(--cyan-pale);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
}

.area-directions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.area-directions h3 {
    margin-bottom: var(--space-md);
}

.area-directions p {
    font-size: var(--text-sm);
    margin-bottom: var(--space-md);
}

.directions-time {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--cyan-pale);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--cyan-dark);
    font-size: var(--text-sm);
}

.area-directions .directions-time {
    background: var(--white);
}


/* -----------------------------------------
   17. Blog / Posts
   ----------------------------------------- */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.post-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--grey-light);
}

.post-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.post-card-image {
    height: 200px;
    overflow: hidden;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.post-card-body {
    padding: var(--space-xl);
}

.post-card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: var(--text-xs);
    color: var(--grey);
    margin-bottom: var(--space-md);
}

.post-card-body h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
}

.post-card-body h3 a {
    color: var(--dark);
}

.post-card-body h3 a:hover {
    color: var(--purple);
}

/* Single post */
.post-content {
    max-width: 750px;
    margin: 0 auto;
}

.post-content h2 {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.post-content h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.post-content p {
    margin-bottom: var(--space-lg);
}

.post-content ul,
.post-content ol {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-xl);
}

.post-content ul {
    list-style: disc;
}

.post-content ol {
    list-style: decimal;
}

.post-content li {
    margin-bottom: var(--space-sm);
    color: var(--grey-dark);
}

.post-content img {
    border-radius: var(--radius-lg);
    margin: var(--space-xl) 0;
}

.post-content blockquote {
    border-left: 4px solid var(--cyan);
    padding: var(--space-lg) var(--space-xl);
    background: var(--cyan-pale);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: var(--space-xl) 0;
}

.post-content blockquote p {
    color: var(--cyan-dark);
    font-style: italic;
    margin: 0;
}


/* -----------------------------------------
   18. Footer
   ----------------------------------------- */
.site-footer {
    background: var(--purple-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer-wave {
    display: block;
    width: 100%;
    height: 60px;
    margin-bottom: -2px;
    background: transparent;
}

.footer-main {
    padding: var(--space-4xl) 0 var(--space-2xl);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-3xl);
}

.footer-brand p {
    color: var(--purple-muted);
    font-size: var(--text-sm);
    margin-bottom: var(--space-lg);
    max-width: 320px;
}

.footer-logo {
    margin-bottom: var(--space-lg);
}

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

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--cyan);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--purple-muted);
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--cyan);
    padding-left: var(--space-xs);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    font-size: var(--text-sm);
    color: var(--purple-muted);
}

.footer-contact-item i {
    color: var(--cyan);
    width: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item a {
    color: var(--purple-muted);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--space-xl) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--text-xs);
    color: var(--purple-muted);
}

.footer-bottom a {
    color: var(--purple-muted);
}

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


/* -----------------------------------------
   19. Decorative Elements
   ----------------------------------------- */
/* Wave separator */
.wave-separator {
    position: relative;
    height: 60px;
    overflow: hidden;
}

.wave-separator svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Paw print trail */
.paw-trail {
    position: absolute;
    pointer-events: none;
    opacity: 0.03;
}

.paw-trail i {
    position: absolute;
    font-size: 2rem;
    color: var(--purple);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--cyan-dark), var(--cyan));
    color: var(--white);
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--text-lg);
    margin-bottom: var(--space-xl);
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn--primary {
    background: var(--white);
    color: var(--cyan-dark);
    border-color: var(--white);
}

.cta-banner .btn--primary:hover {
    background: var(--purple-dark);
    color: var(--white);
    border-color: var(--purple-dark);
}

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

/* Star ratings */
.star-rating {
    display: inline-flex;
    gap: 2px;
    color: var(--gold);
}

/* Size guide visual */
.size-guide {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: var(--space-2xl);
    padding: var(--space-2xl) 0;
}

.size-guide-item {
    text-align: center;
}

.size-guide-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
}

.size-guide-icon i {
    color: var(--purple-light);
    transition: color var(--transition-fast);
}

.size-guide-item:hover .size-guide-icon i {
    color: var(--purple);
}

.size-guide-label {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--grey-dark);
}

.size-guide-examples {
    font-size: var(--text-xs);
    color: var(--grey);
}

/* Map embed */
.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Google reviews badge */
.google-rating {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--white);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
}

.google-rating img {
    height: 20px;
}

.google-rating .rating-number {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
}

/* Instagram feed section */
.instagram-section {
    padding: var(--space-3xl) 0;
    background: var(--grey-light);
}

.instagram-section h2 {
    text-align: center;
    margin-bottom: var(--space-lg);
}


/* -----------------------------------------
   20. Animations
   ----------------------------------------- */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(2deg); }
    66% { transform: translateY(8px) rotate(-1deg); }
}

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 204, 229, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(0, 204, 229, 0); }
}

/* Scroll reveal classes (applied via JS) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

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

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}


/* -----------------------------------------
   21. Utilities
   ----------------------------------------- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hidden { display: none !important; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-2xl); }

.mt-0 { margin-top: 0; }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.w-full { width: 100%; }
.max-w-narrow { max-width: var(--container-md); }

.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

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

.text-white { color: var(--white); }
.text-purple { color: var(--purple); }
.text-cyan { color: var(--cyan); }
.text-gold { color: var(--gold); }
.text-grey { color: var(--grey); }

.bg-white { background: var(--white); }
.bg-grey-light { background: var(--grey-light); }
.bg-purple-pale { background: var(--purple-pale); }
.bg-cyan-pale { background: var(--cyan-pale); }


/* -----------------------------------------
   22a. Sticky Mobile CTA Bar
   ----------------------------------------- */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: var(--white);
    border-top: 1px solid var(--grey-light);
    box-shadow: 0 -4px 20px rgba(59, 21, 96, 0.1);
    padding: var(--space-sm) var(--space-md);
    gap: var(--space-sm);
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.75rem var(--space-sm);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--text-sm);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.mobile-cta-btn--call {
    background: var(--purple-dark);
    color: var(--white);
}

.mobile-cta-btn--whatsapp {
    background: #25D366;
    color: var(--white);
}

.mobile-cta-btn--book {
    background: var(--gold);
    color: var(--purple-dark);
}

/* -----------------------------------------
   22b. WhatsApp Button
   ----------------------------------------- */
.header-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background: #25D366;
    color: var(--white);
    font-size: 1.1rem;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.header-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.05);
}

/* -----------------------------------------
   22c. Newsletter Form
   ----------------------------------------- */
.footer-newsletter {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-xl) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--space-xl);
}

.footer-newsletter h4 {
    color: var(--white);
}

.footer-newsletter p {
    color: var(--purple-muted);
    margin-bottom: var(--space-lg);
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.7rem var(--space-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-body);
    font-size: var(--text-sm);
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--purple-muted);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--cyan);
    background: rgba(255, 255, 255, 0.15);
}


/* -----------------------------------------
   22. WooCommerce Overrides
   ----------------------------------------- */
.woocommerce .products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.woocommerce .product {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--grey-light);
    transition: all var(--transition-base);
}

.woocommerce .product:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.woocommerce .product .woocommerce-loop-product__title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--purple-dark);
    padding: var(--space-md) var(--space-lg) var(--space-xs);
}

.woocommerce .product .price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--purple);
    padding: 0 var(--space-lg);
}

.woocommerce .product .button,
.woocommerce .button {
    background: var(--cyan) !important;
    color: var(--white) !important;
    border-radius: var(--radius-full) !important;
    font-family: var(--font-heading) !important;
    font-weight: 600 !important;
    padding: 0.7em 1.5em !important;
    border: none !important;
    transition: all var(--transition-fast) !important;
}

.woocommerce .product .button:hover,
.woocommerce .button:hover {
    background: var(--cyan-dark) !important;
}

.woocommerce-message {
    border-top-color: var(--cyan) !important;
}

.woocommerce-info {
    border-top-color: var(--purple) !important;
}


/* -----------------------------------------
   23. Responsive
   ----------------------------------------- */

/* Tablet landscape and below - mobile nav triggers here */
@media (max-width: 1024px) {
    /* Show mobile menu controls at 1024px - nav items get cramped before this */
    .menu-toggle {
        display: block;
    }

    .mobile-nav,
    .mobile-nav-overlay {
        display: block;
    }

    .primary-nav {
        display: none;
    }

    .header-cta .header-phone {
        display: none;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

    .hero {
        min-height: auto;
        padding: var(--space-3xl) 0;
    }

    .hero-layout {
        display: block;
    }

    .hero-image {
        display: none;
    }

    .hero-content {
        max-width: 100%;
    }

    .grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .service-detail:nth-child(even) {
        direction: ltr;
    }

    .area-intro {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .area-directions-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet portrait and below - show sticky mobile CTA */
@media (max-width: 768px) {
    .mobile-cta-bar {
        display: flex;
    }

    /* Add bottom padding so content isn't hidden behind sticky bar */
    .site-footer {
        padding-bottom: 70px;
    }

    .header-whatsapp {
        display: none;
    }
    .container {
        padding: 0 var(--space-lg);
    }

    .section {
        padding: var(--space-3xl) 0;
    }

    .section--lg {
        padding: var(--space-4xl) 0;
    }

    .header-cta .btn {
        display: none;
    }

    .header-inner {
        padding: var(--space-sm) var(--space-lg);
    }

    .site-logo img {
        height: 45px;
    }

    .header-spacer {
        height: 70px;
    }

    /* Grid adjustments */
    .grid--2,
    .grid--3,
    .grid--4 {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .size-guide {
        flex-wrap: wrap;
        gap: var(--space-lg);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        text-align: center;
    }

    .page-hero {
        padding: var(--space-3xl) 0 var(--space-2xl);
    }

    .cta-banner {
        padding: var(--space-2xl) 0;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .lightbox-nav {
        display: none;
    }

    .footer-wave {
        height: 40px;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* Mobile small */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero-badges {
        flex-direction: column;
    }

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

    .booking-info-cards {
        grid-template-columns: 1fr;
    }

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

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

/* Landscape phones */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: var(--space-2xl) 0;
    }
}

/* Large screens */
@media (min-width: 1400px) {
    .container {
        padding: 0 var(--space-3xl);
    }
}

/* Print styles */
@media print {
    .site-header,
    .site-footer,
    .cta-banner,
    .hero-bubbles,
    .menu-toggle,
    .mobile-nav,
    .mobile-nav-overlay,
    .btn {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    .hero {
        background: none;
        color: #000;
        min-height: auto;
        padding: 20pt 0;
    }

    .hero-content h1,
    .page-hero h1 {
        color: #000;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}
