/* ============================================
   Paw In Hand DTS — Stylesheet
   ============================================ */

:root {
    --red-900: #5c0a0a;
    --red-800: #7f1d1d;
    --red-700: #991b1b;
    --red-600: #b91c1c;
    --red-500: #dc2626;
    --red-400: #ef4444;
    --red-300: #fca5a5;
    --red-200: #fecaca;
    --red-100: #fee2e2;
    --red-50: #fef2f2;

    --dark-900: #0c0c0c;
    --dark-800: #1a1a1a;
    --dark-700: #2d2d2d;
    --dark-600: #404040;
    --dark-500: #525252;

    --warm-50: #fffbf7;
    --warm-100: #fff5ec;
    --warm-200: #ffe8d6;

    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
    --shadow-md: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
    --shadow-lg: 0 20px 40px -5px rgba(0,0,0,0.1), 0 10px 15px -3px rgba(0,0,0,0.05);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Fredoka', 'Nunito', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--dark-800);
    line-height: 1.2;
}

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

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red-50);
    color: var(--red-600);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.section-tag.light {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 16px;
    color: var(--dark-800);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.8;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-bounce);
    white-space: nowrap;
}

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

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.88rem; }

.btn-primary {
    background: linear-gradient(135deg, var(--red-500), var(--red-700));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--red-400), var(--red-600));
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--red-600);
    border-color: var(--red-200);
}

.btn-secondary:hover {
    background: var(--red-50);
    border-color: var(--red-400);
    color: var(--red-700);
}

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

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

.btn-white {
    background: var(--white);
    color: var(--red-600);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background: var(--red-50);
    color: var(--red-700);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-block { width: 100%; }

/* ============================================
   Navigation
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 8px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    z-index: 1001;
}

.navbar.scrolled .nav-logo { color: var(--dark-800); }
.nav-logo img { width: 44px; height: 44px; border-radius: var(--radius-full); }
.nav-logo strong { font-weight: 700; color: var(--red-400); }
.navbar.scrolled .nav-logo strong { color: var(--red-600); }

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

.nav-link {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav-link:hover { color: var(--white); background: rgba(255, 255, 255, 0.1); }
.navbar.scrolled .nav-link { color: var(--gray-600); }
.navbar.scrolled .nav-link:hover { color: var(--red-600); background: var(--red-50); }

.nav-menu .nav-cta.nav-link {
    background: var(--white);
    color: var(--red-600);
    font-weight: 600;
    padding: 10px 24px;
    margin-left: 8px;
}

.nav-menu .nav-cta.nav-link:hover { background: var(--red-50); transform: translateY(-1px); }

.navbar.scrolled .nav-menu .nav-cta.nav-link {
    background: linear-gradient(135deg, var(--red-500), var(--red-700));
    color: var(--white);
}

.navbar.scrolled .nav-menu .nav-cta.nav-link:hover { box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3); }

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

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span { background: var(--dark-700); }

/* ============================================
   Hero
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark-900) 0%, var(--red-900) 40%, var(--red-700) 70%, var(--red-500) 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.paw-print {
    position: absolute;
    color: rgba(255, 255, 255, 0.03);
    font-size: 80px;
    animation: floatPaw 20s ease-in-out infinite;
}

.paw-1 { top: 10%; left: 5%; font-size: 60px; animation-delay: 0s; }
.paw-2 { top: 60%; left: 15%; font-size: 100px; animation-delay: -4s; }
.paw-3 { top: 20%; right: 10%; font-size: 120px; animation-delay: -8s; }
.paw-4 { bottom: 20%; right: 5%; font-size: 70px; animation-delay: -12s; }
.paw-5 { top: 50%; left: 50%; font-size: 90px; animation-delay: -6s; }
.paw-6 { bottom: 10%; left: 40%; font-size: 50px; animation-delay: -10s; }

@keyframes floatPaw {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.03; }
    25% { transform: translateY(-20px) rotate(10deg); opacity: 0.06; }
    50% { transform: translateY(-10px) rotate(-5deg); opacity: 0.04; }
    75% { transform: translateY(-25px) rotate(8deg); opacity: 0.07; }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--red-200);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero h1 .highlight { color: var(--red-300); position: relative; }

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats { display: flex; gap: 32px; }

.stat {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.stat i { font-size: 1.5rem; color: var(--red-300); }

.stat strong {
    display: block;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
}

.stat span { font-size: 0.8rem; }

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

.hero-photo-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.hero-photo-wrapper::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: var(--radius-xl);
    background: radial-gradient(circle, rgba(220, 38, 38, 0.2) 0%, transparent 70%);
    animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-xl);
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.hero-wave { position: absolute; bottom: -2px; left: 0; right: 0; z-index: 3; }
.hero-wave svg { display: block; width: 100%; height: 80px; }

/* ============================================
   Services — Photo Card Design
   ============================================ */

.services {
    padding: 60px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -10px rgba(0,0,0,0.18);
}

.service-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.service-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.25));
    z-index: 1;
}

.service-card-link {
    position: static;
}

.service-card-link::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    background: linear-gradient(135deg, var(--red-500), var(--red-700));
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    font-family: var(--font-display);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.service-card-body {
    padding: 24px 28px 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--red-50), var(--red-100));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    margin-top: -40px;
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
    color: var(--red-500);
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    background: linear-gradient(135deg, var(--red-500), var(--red-700));
    color: var(--white);
    transform: rotate(-8deg) scale(1.1);
}

.service-card-body h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-card-body p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
}

.service-card-body .btn {
    align-self: flex-start;
}

/* Paw print hover effect on service cards */
.service-hover-paw {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 4rem;
    color: var(--red-50);
    opacity: 0;
    transform: rotate(-20deg) scale(0.5);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    z-index: 0;
}

.service-card:hover .service-hover-paw {
    opacity: 1;
    transform: rotate(-15deg) scale(1);
}

/* ============================================
   Meet Natalie
   ============================================ */

.meet-natalie {
    padding: 60px 0;
    background: var(--gray-50);
}

.natalie-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.natalie-photo-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.natalie-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-xl);
}

.natalie-photo-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 12px 18px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 10px;
}

.natalie-photo-badge i {
    color: var(--red-400);
    font-size: 1.1rem;
}

.natalie-bio h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-800);
}

.natalie-bio > p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.natalie-qualifications {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin: 28px 0;
    border: 1px solid var(--gray-100);
}

.natalie-qualifications h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-800);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.natalie-qualifications h4 i {
    color: var(--red-500);
}

.natalie-qualifications ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.natalie-qualifications li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.natalie-qualifications li i {
    color: var(--red-400);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ============================================
   Why Choose Us
   ============================================ */

.why-us {
    padding: 60px 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.why-item {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--gray-100);
    transition: var(--transition-bounce);
    position: relative;
}

.why-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--red-100);
}

.why-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--red-100);
    line-height: 1;
    margin-bottom: 16px;
    transition: var(--transition);
}

.why-item:hover .why-number { color: var(--red-300); }
.why-item h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; }
.why-item p { font-size: 0.92rem; color: var(--gray-500); line-height: 1.7; }

/* ============================================
   Testimonials
   ============================================ */

.testimonials {
    padding: 60px 0;
    background: var(--gray-50);
}

/* Google Rating Bar */
.google-rating-bar {
    margin-bottom: 40px;
}

.rating-bar-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 20px 32px;
    box-shadow: var(--shadow);
}

.rating-bar-logo {
    flex-shrink: 0;
}

.rating-bar-score {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.rating-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-800);
    line-height: 1;
}

.rating-stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 1.1rem;
}

.rating-count {
    font-size: 0.88rem;
    color: var(--gray-500);
}

.rating-bar-cta {
    flex-shrink: 0;
}

/* Loading State */
.reviews-loading {
    text-align: center;
    padding: 60px 20px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--red-500);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

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

.reviews-loading p {
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* Google Review Cards */
.google-review {
    position: relative;
}

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

.google-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #4285F4;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

@media (max-width: 768px) {
    .rating-bar-inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .rating-bar-score {
        justify-content: center;
    }
}

.testimonial-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid var(--gray-100);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--red-200);
}

.testimonial-card::before {
    content: '\f1b0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 6rem;
    color: var(--red-50);
    opacity: 0;
    transform: rotate(20deg);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    line-height: 1;
}

.testimonial-card:hover::before {
    opacity: 1;
    top: -5px;
    right: -5px;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: #f59e0b;
    font-size: 0.9rem;
}

.testimonial-card > p {
    font-style: italic;
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--red-100), var(--red-200));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-400);
    transition: var(--transition);
}

.testimonial-card:hover .testimonial-avatar {
    background: linear-gradient(135deg, var(--red-400), var(--red-600));
    color: var(--white);
    animation: pawWiggle 0.6s ease-in-out;
}

@keyframes pawWiggle {
    0% { transform: rotate(0deg); }
    20% { transform: rotate(-12deg); }
    40% { transform: rotate(10deg); }
    60% { transform: rotate(-8deg); }
    80% { transform: rotate(4deg); }
    100% { transform: rotate(0deg); }
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--dark-800);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Paw trail on testimonial hover */
.testimonial-hover-paw {
    position: absolute;
    bottom: 12px;
    right: 16px;
    font-size: 1.4rem;
    color: var(--red-200);
    opacity: 0;
    transform: translateY(10px) rotate(-15deg);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.testimonial-card:hover .testimonial-hover-paw {
    opacity: 1;
    transform: translateY(0) rotate(-15deg);
}

/* ============================================
   Booking / CTA
   ============================================ */

.booking {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--dark-900) 0%, var(--red-900) 50%, var(--red-700) 100%);
    position: relative;
    overflow: hidden;
}

.booking::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.booking-info h2 {
    color: var(--white);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.booking-info > p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.booking-steps { margin-bottom: 28px; }

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.step-num {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--red-300);
}

.step strong {
    display: block;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.step p { color: rgba(255, 255, 255, 0.75); font-size: 0.9rem; }

.booking-contact-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.booking-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.booking-form h3 {
    font-size: 1.4rem;
    margin-bottom: 28px;
    text-align: center;
    color: var(--dark-800);
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark-800);
    background: var(--gray-50);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red-400);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-300); }

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

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

/* ============================================
   Contact
   ============================================ */

.contact {
    padding: 60px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.contact-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--gray-100);
    transition: var(--transition-bounce);
    display: block;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--red-100);
}

.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--red-50), var(--red-100));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
    color: var(--red-500);
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    background: linear-gradient(135deg, var(--red-500), var(--red-700));
    color: var(--white);
}

.contact-card h3 { font-size: 1.05rem; margin-bottom: 6px; font-weight: 600; }
.contact-card p { font-size: 0.9rem; color: var(--gray-500); }

/* ============================================
   Footer
   ============================================ */

.footer {
    position: relative;
    background: linear-gradient(135deg, var(--dark-900) 0%, var(--dark-800) 100%);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 40px;
}

.footer-wave { position: absolute; top: -2px; left: 0; right: 0; }
.footer-wave svg { display: block; width: 100%; height: 80px; }

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 60px 0 40px;
}

.footer-brand { padding-right: 20px; }

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.footer-brand h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 12px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }

.footer-socials { display: flex; gap: 12px; }

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--red-600);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links li,
.footer-services li,
.footer-contact li { margin-bottom: 10px; }

.footer-links a,
.footer-services a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--red-400);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact li i { color: var(--red-400); width: 16px; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-tagline i { color: var(--red-400); }
.footer-tagline a { color: rgba(255, 255, 255, 0.75); text-decoration: underline; text-underline-offset: 2px; }
.footer-tagline a:hover { color: var(--white); }

/* ============================================
   Sub-page Styles
   ============================================ */

.page-hero {
    background: linear-gradient(135deg, var(--dark-900) 0%, var(--red-900) 50%, var(--red-700) 100%);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '\f1b0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    color: rgba(255,255,255,0.02);
    pointer-events: none;
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero .breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.page-hero .breadcrumb a {
    color: var(--red-300);
}

.page-hero .breadcrumb a:hover {
    color: var(--white);
}

.page-hero .breadcrumb span {
    color: rgba(255,255,255,0.5);
}

.page-content {
    padding: 80px 0;
}

.page-content .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.page-content .content-text h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.page-content .content-text p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.page-content .content-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.page-content .content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-list {
    margin: 24px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: var(--red-400);
    margin-top: 4px;
    flex-shrink: 0;
}

.page-cta {
    background: var(--gray-50);
    padding: 80px 0;
    text-align: center;
}

.page-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.page-cta p {
    color: var(--gray-500);
    font-size: 1.05rem;
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.page-cta .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.who-for {
    background: var(--red-50);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin: 28px 0;
}

.who-for h3 {
    font-size: 1.1rem;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--red-700);
}

.who-for ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.92rem;
    color: var(--gray-700);
}

.who-for ul li i {
    color: var(--red-400);
}


@media (max-width: 1024px) {
    .page-content .content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
}

/* ============================================
   Animations (scroll reveal)
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   Form Success State
   ============================================ */

.form-success { text-align: center; padding: 40px 20px; }
.form-success i { font-size: 3rem; color: #22c55e; margin-bottom: 16px; }
.form-success h3 { color: var(--dark-800); margin-bottom: 8px; }
.form-success p { color: var(--gray-500); }

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image { order: -1; }
    .hero-photo-wrapper { max-width: 400px; margin: 0 auto; }
    .natalie-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .booking-wrapper { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 4px;
        box-shadow: var(--shadow-xl);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    .nav-menu .nav-link {
        color: var(--gray-700);
        padding: 12px 16px;
        width: 100%;
        border-radius: var(--radius);
    }

    .nav-menu .nav-link:hover {
        background: var(--red-50);
        color: var(--red-600);
    }

    .nav-menu .nav-cta.nav-link {
        background: linear-gradient(135deg, var(--red-500), var(--red-700));
        color: var(--white);
        text-align: center;
        margin-left: 0;
        margin-top: 8px;
    }

    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

    .hero { min-height: auto; padding: 120px 0 80px; }
    .hero h1 { font-size: clamp(1.8rem, 6vw, 2.5rem); }
    .hero-photo-wrapper { max-width: 320px; }
    .hero-stats { flex-direction: column; align-items: center; gap: 16px; }
    .natalie-qualifications ul { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .booking-contact-actions { flex-direction: column; }
    .booking-form-wrapper { padding: 28px 20px; }
}

@media (max-width: 480px) {
    .hero-badge { font-size: 0.75rem; padding: 6px 14px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; }
    .section-header { margin-bottom: 28px; }
    .section-header h2 { font-size: 1.5rem; }
    .service-card-img { height: 160px; }
}

/* ============================================
   Skip Link
   ============================================ */

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    background: var(--red-600);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
    outline: 3px solid var(--red-300);
    outline-offset: 2px;
}

/* ============================================
   Back to Top
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 900;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--red-500), var(--red-700));
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--red-400), var(--red-600));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.back-to-top:focus-visible {
    outline: 3px solid var(--red-300);
    outline-offset: 2px;
}

/* ============================================
   Cookie Banner
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 950;
    background: var(--dark-800);
    padding: 16px 24px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* ============================================
   Form Validation Errors
   ============================================ */

.form-error {
    display: none;
    color: var(--red-500);
    font-size: 0.82rem;
    margin-top: 4px;
    font-weight: 600;
}

.form-error.active {
    display: block;
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: var(--red-400);
    background: var(--red-50);
}

/* ============================================
   Mobile Nav Overlay
   ============================================ */

.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}
