:root {
    --primary: #26b4c4;
    --primary-dark: #1e9eb0;
    --primary-light: #3ecad8;
    --secondary: #f8976a;
    --secondary-dark: #e58656;
    --secondary-light: #faa97e;
    --light: #ffffff;
    --dark: #1f2d3d;
    --dark-soft: #3a4a5c;
    --background: #f7f8fa;
    --surface: #ffffff;
    --text: #3a4a5c;
    --text-light: #6b7d8e;
    --border: rgba(38, 180, 196, 0.12);
    --shadow-sm: 0 2px 8px rgba(19, 42, 59, 0.06);
    --shadow-md: 0 8px 24px rgba(19, 42, 59, 0.08);
    --shadow-lg: 0 16px 40px rgba(19, 42, 59, 0.12);
    --shadow-xl: 0 24px 56px rgba(19, 42, 59, 0.16);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-full: 999px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--background);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
.form-control:focus-visible {
    outline: 3px solid rgba(38, 180, 196, 0.35);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    background: var(--primary);
    color: white;
    padding: 10px 14px;
    z-index: 10000;
    border-radius: 6px;
}

.skip-link:focus {
    left: 5%;
    top: 10px;
}

img {
    max-width: 100%;
}

/* ========================================
   HEADER
   ======================================== */

header {
    position: relative;
    box-shadow: none;
    background-color: transparent;
    z-index: 999;
}

.top-bar {
    background-color: white;
    padding: 18px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    z-index: 999;
}

.logo {
    display: flex;
    align-items: center;
}

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

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

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

.contact-item {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--dark);
}

.contact-item a {
    transition: color var(--transition);
}

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

.contact-item i {
    color: var(--primary);
    margin-right: 8px;
    font-size: 18px;
}

/* ========================================
   BUTTONS
   ======================================== */

.book-btn {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: white;
    padding: 12px 26px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    transition: all var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(248, 151, 106, 0.3);
}

.book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.book-btn:hover::before {
    left: 100%;
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(248, 151, 106, 0.4);
}

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

.book-btn:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.btn-outlined {
    border: 2px solid white;
    color: white;
    padding: 12px 26px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    transition: all var(--transition);
    display: inline-block;
}

.btn-outlined:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-2px);
}

/* ========================================
   NAVIGATION
   ======================================== */

nav {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 0 5%;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-logo {
    display: none;
    height: 40px;
    margin-right: 15px;
    transition: all var(--transition);
}

.nav-logo img {
    height: 100%;
    width: auto;
}

nav.scrolled .nav-logo {
    display: block;
}

nav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.menu {
    display: flex;
    list-style: none;
    height: 100%;
}

.menu-backdrop {
    display: none;
}

.menu li {
    height: 100%;
    display: flex;
    align-items: center;
}

.menu li a {
    display: flex;
    align-items: center;
    height: 100%;
    color: white;
    padding: 0 20px;
    font-weight: 500;
    font-size: 15px;
    transition: all var(--transition);
    position: relative;
}

.menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: white;
    transition: all var(--transition);
    transform: translateX(-50%);
    border-radius: 3px 3px 0 0;
}

.menu li a:hover::after,
.menu li a.active::after {
    width: 60%;
}

.menu li a:hover,
.menu li a.active {
    background-color: rgba(255, 255, 255, 0.12);
}

.social-icons {
    display: flex;
    align-items: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.12);
    color: white;
    margin-left: 12px;
    transition: all var(--transition);
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: white;
    background: transparent;
    border: 0;
    padding: 0;
}

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

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    height: 78vh;
    min-height: 580px;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1), transparent 30%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.08), transparent 32%),
        radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.06), transparent 28%),
        linear-gradient(150deg, #2dd4e4 0%, #26b4c4 30%, #1c8fa0 60%, #1a7585 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: white;
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 1;
}

.hero-paws {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-paws .paw {
    position: absolute;
    width: 120px;
    height: 120px;
    background: url('../images/Dog-Paw-Print.png') center/contain no-repeat;
    opacity: 0.32;
    mix-blend-mode: screen;
    animation: floatPaw 8s ease-in-out infinite;
}

@keyframes floatPaw {
    0%, 100% { transform: translateY(0) rotate(var(--paw-rotate, 0deg)); }
    50% { transform: translateY(-12px) rotate(var(--paw-rotate, 0deg)); }
}

.hero-paws .paw-1 { left: 6%;  top: 32%; --paw-rotate: -8deg; animation-delay: 0s; }
.hero-paws .paw-2 { left: 30%; top: 70%; --paw-rotate: 10deg; animation-delay: 1.3s; }
.hero-paws .paw-3 { left: 56%; top: 18%; --paw-rotate: -4deg; animation-delay: 2.6s; }
.hero-paws .paw-4 { left: 74%; top: 62%; --paw-rotate: 8deg; animation-delay: 0.8s; }
.hero-paws .paw-5 { left: 90%; top: 36%; --paw-rotate: -6deg; animation-delay: 1.8s; }
.hero-paws .paw-6 { left: 44%; top: 82%; --paw-rotate: 12deg; animation-delay: 3.2s; }

.hero-content {
    max-width: 820px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero .eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

.hero .eyebrow i {
    font-size: 14px;
    color: var(--secondary-light);
}

.hero h1 {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #ffd89b 0%, var(--secondary-light) 50%, #ffd89b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .hero-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.hero .book-btn {
    padding: 14px 32px;
    font-size: 15px;
    box-shadow: 0 6px 20px rgba(248, 151, 106, 0.35);
}

.hero-badges {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 14px;
    backdrop-filter: blur(4px);
    transition: all var(--transition);
}

.stat-pill:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.stat-pill i {
    color: var(--secondary-light);
}

/* ========================================
   SECTIONS (Global)
   ======================================== */

.section {
    padding: 100px 5%;
}

.section-alt {
    background: white;
}

.section-tight {
    padding-top: 80px;
    padding-bottom: 80px;
}

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

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 4px;
    margin: 16px auto 0;
}

.section-header p {
    font-size: 18px;
    max-width: 680px;
    margin: 0 auto;
    color: var(--text-light);
    line-height: 1.7;
}

/* Reveal animations */
.reveal-group > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-group > *.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   HIGHLIGHTS SECTION
   ======================================== */

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.highlight-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    border: 1px solid transparent;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

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

.highlight-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: rgba(38, 180, 196, 0.1);
    transition: all var(--transition);
}

.highlight-card:hover i {
    background: rgba(38, 180, 196, 0.16);
    transform: scale(1.05);
}

.highlight-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.highlight-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1260px;
    margin: 40px auto 0;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: linear-gradient(180deg, #ffffff 0%, #fffbf8 100%);
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(38, 180, 196, 0.24);
    box-shadow: var(--shadow-xl);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.service-card:hover::after {
    left: 100%;
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 22px;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(38, 180, 196, 0.12), rgba(38, 180, 196, 0.06));
    color: var(--primary);
    font-size: 22px;
    flex-shrink: 0;
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(38, 180, 196, 0.18), rgba(38, 180, 196, 0.1));
    transform: rotate(-5deg) scale(1.05);
}

.service-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: var(--radius-full);
    background: rgba(248, 151, 106, 0.12);
    color: #d77043;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
}

.service-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 22px;
}

.service-copy {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.25;
}

.service-content p {
    font-size: 15px;
    color: var(--text-light);
}

.service-features {
    list-style: none;
    display: grid;
    gap: 10px;
}

.service-features li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    color: var(--text);
}

.service-features li::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.service-footer {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(51, 51, 51, 0.06);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-price-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-price-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.service-card .book-btn {
    width: 100%;
    text-align: center;
    padding-top: 12px;
    padding-bottom: 12px;
}

/* ========================================
   PROCESS SECTION
   ======================================== */

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-md);
    position: relative;
    text-align: center;
    border: 1px solid transparent;
    transition: all var(--transition);
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 16px;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(38, 180, 196, 0.3);
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(38, 180, 196, 0.1);
    color: var(--primary);
    font-size: 24px;
    margin: 0 auto 16px;
    transition: all var(--transition);
}

.process-step:hover .step-icon {
    background: rgba(38, 180, 196, 0.16);
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 15px;
    color: var(--text-light);
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    background:
        radial-gradient(circle at top left, rgba(38, 180, 196, 0.06), transparent 36%),
        radial-gradient(circle at bottom right, rgba(248, 151, 106, 0.04), transparent 36%),
        linear-gradient(180deg, #f8fcfd 0%, #ffffff 100%);
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 56px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-visual {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    position: relative;
}

.about-image {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    border-radius: 28px;
    box-shadow: var(--shadow-xl);
    max-width: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
    transition: all var(--transition);
}

.about-image img:hover {
    transform: scale(1.02);
}

.about-floating-card {
    position: absolute;
    right: -18px;
    bottom: 26px;
    max-width: 250px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
}

.about-floating-label,
.section-kicker {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary);
}

.about-floating-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
    color: var(--dark);
}

.about-floating-card p {
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text);
}

.about-points {
    display: grid;
    gap: 16px;
    margin: 28px 0;
}

.about-point {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.about-point:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.about-point i {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: rgba(38, 180, 196, 0.12);
    font-size: 20px;
}

.about-point h3 {
    font-size: 17px;
    margin-bottom: 4px;
    color: var(--dark);
    font-weight: 600;
}

.about-point p {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}

.about-stat {
    padding: 20px 18px;
    border-radius: var(--radius-md);
    background: white;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid transparent;
    transition: all var(--transition);
}

.about-stat:hover {
    border-color: var(--border);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.about-stat strong {
    display: inline;
    font-size: 28px;
    line-height: 1.1;
    color: var(--primary);
    font-weight: 800;
}

.stat-suffix {
    display: inline;
    font-size: 28px;
    line-height: 1.1;
    color: var(--primary);
    font-weight: 800;
}

.about-stat span {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 6px;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonial-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: linear-gradient(180deg, #ffffff 0%, #fdfefe 100%);
    border: 1px solid #e7eef3;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 230px;
    transition: all var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(38, 180, 196, 0.2);
}

.testimonial-topline {
    display: flex;
    justify-content: flex-start;
}

.rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: var(--radius-full);
    background: rgba(244, 180, 0, 0.12);
    color: #b37a00;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #2ac6d8);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.testimonial-quote {
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    position: relative;
    padding-left: 28px;
    font-size: 15px;
}

.testimonial-quote::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -6px;
    font-size: 40px;
    color: rgba(38, 180, 196, 0.3);
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(38, 180, 196, 0.1);
}

.testimonial-meta img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(38, 180, 196, 0.15);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(38, 180, 196, 0.18), rgba(248, 151, 106, 0.28));
    color: var(--dark);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.08em;
    border: 3px solid rgba(38, 180, 196, 0.15);
    flex-shrink: 0;
}

.client-name {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
}

.dog-breed {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 4px;
}

.review-time::before {
    content: '\2022';
    margin: 0 6px;
    color: #a1b1bb;
}

.client-rating {
    color: #f4b400;
    font-size: 13px;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(180deg, #ffffff 0%, #f9fcfd 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: rgba(38, 180, 196, 0.2);
    box-shadow: var(--shadow-md);
}

.faq-item[open] {
    box-shadow: var(--shadow-md);
    border-color: rgba(38, 180, 196, 0.2);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
    outline: none;
    list-style: none;
    position: relative;
    padding-right: 36px;
    font-size: 16px;
    line-height: 1.4;
    transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(38, 180, 196, 0.1);
    color: var(--primary);
    transition: all var(--transition);
    font-weight: 600;
}

.faq-item[open] summary::after {
    content: '+';
    transform: translateY(-50%) rotate(45deg);
    background: var(--primary);
    color: white;
}

.faq-item summary:hover::after {
    background: rgba(38, 180, 196, 0.18);
}

.faq-item p {
    margin-top: 14px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    animation: fadeSlideIn 0.3s ease;
}

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

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-container > * {
    min-width: 0;
}

.contact-info-box {
    background: linear-gradient(180deg, #ffffff 0%, #f9fcfd 100%);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.contact-panel-header {
    margin-bottom: 24px;
}

.contact-panel-header h3 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-panel-header p:last-child {
    color: var(--text-light);
}

.contact-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.contact-action-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--radius-full);
    background: rgba(38, 180, 196, 0.08);
    border: 1px solid var(--border);
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition);
}

.contact-action-chip i {
    flex-shrink: 0;
    color: var(--primary);
}

.contact-action-chip:hover {
    transform: translateY(-2px);
    background: rgba(38, 180, 196, 0.14);
    border-color: rgba(38, 180, 196, 0.24);
    box-shadow: var(--shadow-sm);
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    margin-bottom: 0;
    padding: 18px;
    border-radius: var(--radius-md);
    background: white;
    border: 1px solid rgba(38, 180, 196, 0.08);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.contact-info-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border);
}

.contact-info-item i {
    font-size: 20px;
    color: var(--primary);
    margin-right: 15px;
    margin-top: 3px;
}

.contact-info-content {
    flex: 1;
    min-width: 0;
}

.contact-info-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-info-content p,
.contact-info-content a {
    color: var(--text-light);
    overflow-wrap: anywhere;
    font-size: 14px;
}

.contact-info-content a:hover {
    color: var(--primary);
}

.map-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.map-card iframe {
    display: block;
}

/* ========================================
   BOOKING FORM
   ======================================== */

.contact-form {
    background: linear-gradient(180deg, #ffffff 0%, #fffbf8 100%);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(248, 151, 106, 0.14);
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.form-intro {
    margin-bottom: 24px;
    color: var(--text-light);
    font-size: 15px;
}

.note {
    font-size: 14px;
    color: var(--text-light);
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--dark);
    font-size: 14px;
}

.fully-booked-note {
    color: #c62828;
    font-weight: 600;
    margin: 6px 0 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e3ecf1;
    border-radius: var(--radius-sm);
    font-size: 15px;
    background: rgba(255, 255, 255, 0.95);
    transition: all var(--transition);
    color: var(--dark);
}

.form-control:hover {
    border-color: #c5d6e0;
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(38, 180, 196, 0.12);
    background: white;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%236b7d8e'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

/* Form Messages */
.form-message {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    display: none;
    font-size: 15px;
    font-weight: 500;
}

.form-message.success {
    display: block;
    background-color: rgba(40, 167, 69, 0.1);
    border: 2px solid rgba(40, 167, 69, 0.3);
    color: #155724;
}

.form-message.error {
    display: block;
    background-color: rgba(220, 53, 69, 0.1);
    border: 2px solid rgba(220, 53, 69, 0.3);
    color: #721c24;
}

.form-message.loading {
    display: block;
    background-color: rgba(0, 123, 255, 0.1);
    border: 2px solid rgba(0, 123, 255, 0.3);
    color: #004085;
}

/* ========================================
   CTA BANNER
   ======================================== */

.cta-banner {
    margin: 80px 5% 50px;
    padding: 44px 48px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.15), transparent 26%),
        linear-gradient(120deg, #1fa4b6 0%, #26b4c4 40%, var(--secondary) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px 24px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.cta-text {
    position: relative;
    z-index: 1;
}

.cta-banner .section-kicker {
    color: white;
    font-size: 14px;
    opacity: 0.95;
    letter-spacing: 0.15em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cta-banner h3 {
    font-size: 28px;
    margin-bottom: 6px;
    font-weight: 700;
}

.cta-banner p {
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    background: linear-gradient(180deg, #1f2d3d 0%, #182330 100%);
    color: white;
    padding-top: 70px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 5% 60px;
}

.footer-brand {
    max-width: 360px;
}

.footer-widget h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
}

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

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 24px;
}

.footer-badges span {
    padding: 8px 14px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

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

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

.footer-links li a {
    transition: all var(--transition);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links li a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.footer-links li a:hover::before {
    width: 12px;
}

.footer-links li a:hover {
    color: var(--primary-light);
}

.footer-widget a {
    color: inherit;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 5%;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    letter-spacing: 0.01em;
}

.footer-bottom a {
    color: white;
    font-weight: 600;
    transition: color var(--transition);
}

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

/* ========================================
   BACK TO TOP
   ======================================== */

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 8px 24px rgba(38, 180, 196, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--transition);
    z-index: 1200;
    font-size: 16px;
}

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

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(38, 180, 196, 0.45);
}

/* ========================================
   ACCESSIBILITY & REDUCED MOTION
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal-group > * {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .back-to-top,
    .book-btn,
    .contact-action-chip,
    .service-card,
    .social-icons a,
    .highlight-card,
    .testimonial-card,
    .process-step,
    .about-point,
    .faq-item {
        transition: none;
    }

    .hero-paws .paw {
        animation: none;
    }

    .book-btn::before,
    .service-card::after {
        display: none;
    }
}

/* ========================================
   RESPONSIVE: TABLET LANDSCAPE (1100px)
   ======================================== */

@media (max-width: 1100px) and (min-width: 769px) {
    .top-bar {
        padding: 16px 3.5%;
        gap: 18px;
    }

    .logo img {
        height: 88px;
    }

    .contact-info {
        flex: 1;
        justify-content: center;
        gap: 18px;
    }

    .contact-item {
        font-size: 13px;
    }

    .contact-item i {
        margin-right: 6px;
        font-size: 16px;
    }

    .top-bar .book-btn {
        padding: 11px 16px;
        font-size: 13px;
        white-space: nowrap;
    }

    nav {
        padding: 0 3.5%;
    }

    .nav-container {
        height: 56px;
    }

    .menu li a {
        padding: 0 12px;
        font-size: 13px;
    }

    .social-icons a {
        width: 34px;
        height: 34px;
        margin-left: 8px;
    }

    .hero {
        min-height: 520px;
        height: 65vh;
    }

    .hero-content {
        max-width: 700px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero .hero-subtitle {
        font-size: 17px;
    }

    .section {
        padding: 80px 4.5%;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .section-header h2 {
        font-size: 34px;
    }

    .cta-banner {
        margin-left: 4.5%;
        margin-right: 4.5%;
    }
}

/* ========================================
   RESPONSIVE: TABLET PORTRAIT (992px)
   ======================================== */

@media (max-width: 992px) {
    .top-bar {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 20px;
    }

    .contact-info {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 42px;
    }

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

    .contact-details-grid,
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .cta-banner {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 5%;
        margin-right: 5%;
        padding: 36px 32px;
    }

    .cta-actions {
        width: 100%;
    }

    .contact-quick-actions {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
}

/* ========================================
   RESPONSIVE: MOBILE (768px)
   ======================================== */

@media (max-width: 768px) {
    /* Top bar */
    .top-bar {
        position: relative;
        width: 100%;
        padding: 10px 14px;
        gap: 10px;
        flex-direction: column;
    }

    .logo {
        margin-bottom: 10px;
    }

    .logo img {
        height: 60px;
    }

    .contact-info {
        display: none;
    }

    /* Navigation */
    nav {
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-container {
        position: relative;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding: 10px 15px;
        height: auto;
        gap: 10px;
    }

    .nav-logo {
        display: block;
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        height: 40px;
    }

    nav.scrolled {
        box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
    }

    .menu-toggle {
        display: block;
        margin-left: 0;
        order: 2;
        cursor: pointer;
        font-size: 24px;
        color: white;
        z-index: 1001;
    }

    .menu {
        display: flex;
        position: absolute;
        top: calc(100% + 10px);
        left: auto;
        right: 0;
        width: min(340px, calc(100vw - 30px));
        height: auto;
        max-height: min(420px, calc(100vh - 140px));
        padding: 12px;
        border-radius: var(--radius-lg);
        background: linear-gradient(180deg, #31b7c8 0%, #249daf 100%);
        flex-direction: column;
        gap: 8px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: 0 20px 50px rgba(9, 24, 34, 0.3);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        overflow-y: auto;
        transform-origin: top right;
        transform: translateY(-10px) scale(0.98);
        transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
        z-index: 1002;
    }

    .menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .menu li {
        width: 100%;
        height: auto;
    }

    .menu li a {
        width: 100%;
        min-height: 48px;
        padding: 12px 16px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 14px;
        justify-content: center;
        background: rgba(255, 255, 255, 0.08);
        font-size: 15px;
        font-weight: 600;
        color: white;
        transition: all 0.2s ease;
    }

    .menu li a::after {
        display: none;
    }

    .menu li a:hover,
    .menu li a.active {
        background: rgba(255, 255, 255, 0.18) !important;
        color: white;
    }

    .menu-backdrop {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(17, 28, 38, 0.58);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.28s ease, visibility 0.28s ease;
        z-index: 1001;
    }

    .menu-backdrop.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .social-icons {
        display: flex;
        order: 1;
        gap: 12px;
        position: relative;
        z-index: 1003;
    }

    .social-icons a {
        width: 34px;
        height: 34px;
        transform: translateX(0);
    }

    .social-icons a:nth-child(1) {
        transform: translateX(7px);
    }

    .social-icons a:nth-child(2) {
        transform: translateX(-7px);
    }

    /* Hero */
    .hero {
        height: auto;
        min-height: 500px;
        padding: 60px 0 80px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    /* About */
    .about-container {
        flex-direction: column;
    }

    .about-floating-card {
        position: static;
        max-width: none;
        margin-top: 18px;
    }

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

    .section {
        padding: 70px 5%;
    }
}

/* ========================================
   RESPONSIVE: SMALL MOBILE (640px)
   ======================================== */

@media (max-width: 640px) {
    nav {
        padding: 0 14px;
    }

    .nav-container {
        height: 56px;
    }

    .menu {
        top: calc(100% + 8px);
        left: auto;
        right: 0;
        width: min(320px, calc(100vw - 28px));
        max-height: min(400px, calc(100vh - 120px));
        padding: 10px;
        border-radius: 22px;
    }

    .menu li {
        width: 100%;
    }

    .menu li a {
        width: 100%;
        min-height: 50px;
        padding: 12px 16px;
        border-radius: 16px;
        font-size: 15px;
    }

    .book-btn {
        width: 100%;
        text-align: center;
        padding: 14px 16px;
        font-size: 14px;
    }

    .hero {
        min-height: 480px;
        padding: 50px 0 70px;
    }

    .hero::after {
        height: 50px;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 24px;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero .hero-subtitle {
        font-size: 15px;
    }

    .hero .eyebrow {
        font-size: 11px;
        padding: 6px 14px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-outlined {
        width: 100%;
        text-align: center;
    }

    .hero-badges {
        justify-content: center;
        gap: 8px;
    }

    .stat-pill {
        font-size: 12px;
        padding: 8px 12px;
    }

    .section {
        padding: 60px 6%;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

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

    .service-card {
        padding: 22px;
    }

    .service-card-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-tag {
        justify-content: flex-start;
    }

    .contact-info-box,
    .contact-form {
        padding: 24px;
    }

    .contact-form h3 {
        font-size: 24px;
    }

    .contact-info-item {
        padding: 16px;
    }

    .contact-action-chip {
        width: 100%;
        justify-content: flex-start;
    }

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

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

    .about-stat {
        text-align: left;
        padding: 18px 20px;
    }

    .cta-banner {
        margin: 40px 6% 30px;
        padding: 28px 24px;
        align-items: flex-start;
    }

    .cta-banner h3 {
        font-size: 22px;
    }

    .cta-actions {
        width: 100%;
    }

    .cta-actions .book-btn,
    .cta-actions .btn-outlined {
        width: 100%;
        text-align: center;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 46px;
        height: 46px;
    }

    .highlight-card {
        padding: 24px 20px;
    }

    .testimonial-card {
        padding: 22px;
    }

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

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

    .process-grid {
        gap: 16px;
    }

    .process-step {
        padding: 24px 20px;
    }

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

    .footer-widget h4 {
        font-size: 17px;
    }

    /* Hero paws */
    .hero-paws .paw {
        width: 100px;
        height: 100px;
        opacity: 0.28;
    }

    .hero-paws .paw-1 { left: 5%;  top: 48%; }
    .hero-paws .paw-2 { left: 54%; top: 15%; }
    .hero-paws .paw-3 { left: 72%; top: 72%; }
    .hero-paws .paw-4,
    .hero-paws .paw-5,
    .hero-paws .paw-6 { display: none; }
}

/* ========================================
   RESPONSIVE: iPad specific (768-1024px)
   ======================================== */

@media (min-width: 768px) and (max-width: 1024px) {
    .hero {
        height: 60vh;
        min-height: 480px;
    }

    .hero h1 {
        font-size: 44px;
    }

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

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

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

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

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

    .about-container {
        gap: 40px;
    }

    .about-visual {
        max-width: 400px;
    }

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

    .section {
        padding: 80px 5%;
    }
}
