/* ============================================
   Trim & Kwispel - Hondentrimsalon
   Modern, speels & professioneel
   ============================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #e8985e;
    --primary-dark: #c97a42;
    --secondary: #4a7c6f;
    --secondary-light: #6aad9a;
    --accent: #f2c94c;
    --dark: #2d2926;
    --light: #fdf6f0;
    --light-alt: #f5ebe0;
    --text: #3d3530;
    --text-light: #7a6e66;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(45, 41, 38, 0.08);
    --shadow-hover: 0 8px 30px rgba(45, 41, 38, 0.15);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Nunito', 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

h1, h2, h3, h4 {
    font-family: 'Quicksand', 'Nunito', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Header & Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(232, 152, 94, 0.1);
    transition: var(--transition);
}

/* Blur/background lives on a pseudo-element so .header itself has no
   filter/backdrop-filter — that property would otherwise create a new
   containing block for position:fixed descendants (like the mobile
   .nav-links overlay), confining them to the header's small height
   instead of the full viewport. */
.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(253, 246, 240, 0.95);
    backdrop-filter: blur(12px);
    z-index: -1;
}

.header.scrolled {
    box-shadow: var(--shadow);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
}

.nav-logo-img {
    height: 56px;
    width: 56px;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-logo .paw {
    font-size: 1.8rem;
    display: inline-block;
    animation: wiggle 2s ease-in-out infinite;
}

.footer-logo-img {
    height: 50px;
    width: 50px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    border-radius: 50%;
    object-fit: cover;
}

/* --- Hero Logo --- */
.hero-logo {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 12px 50px rgba(232, 152, 94, 0.2);
    border: 5px solid var(--white);
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.hero-logo:hover {
    transform: scale(1.05) rotate(3deg);
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    display: block;
    padding: 8px 18px;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--primary);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(170deg, var(--light) 0%, var(--light-alt) 50%, rgba(232, 152, 94, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '🐾';
    position: absolute;
    font-size: 300px;
    opacity: 0.03;
    top: 10%;
    right: -5%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '✂️';
    position: absolute;
    font-size: 200px;
    opacity: 0.03;
    bottom: 10%;
    left: -3%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-visual::before {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 152, 94, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 .highlight {
    color: var(--primary);
    position: relative;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent);
    opacity: 0.4;
    border-radius: 4px;
    z-index: -1;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 0 36px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 152, 94, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary-light);
    border-color: var(--secondary-light);
    color: var(--white);
    transform: translateY(-2px);
}

/* --- Sections --- */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* --- USP / Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.section-alt .feature-card {
    background: var(--light);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* --- Treatments / Services --- */
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.treatment-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.section-alt .treatment-card {
    background: var(--light);
}

.treatment-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.treatment-card .card-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    background: linear-gradient(135deg, var(--light-alt), rgba(232, 152, 94, 0.1));
}

.treatment-card .card-body {
    padding: 28px;
}

.treatment-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.treatment-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.treatment-card .price {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.treatment-card a.price {
    cursor: pointer;
    transition: var(--transition);
}

.treatment-card a.price:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* --- Pricing Table --- */
.pricing-table {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
}

.section-alt .pricing-table {
    background: var(--light);
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:hover {
    background: rgba(232, 152, 94, 0.05);
}

.pricing-row .service-name {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.pricing-row .service-name .emoji {
    font-size: 1.4rem;
}

.pricing-row .service-desc {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 4px;
}

.pricing-row .service-price {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    white-space: nowrap;
}

.pricing-note {
    text-align: center;
    margin-top: 30px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

/* --- Pricing Packages --- */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.package-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 30px 30px;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.package-card.featured {
    border-color: var(--primary);
}

.package-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 50px;
    white-space: nowrap;
}

.package-card .package-icon {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 6px;
}

.package-card h3 {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.package-tagline {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.package-list {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.package-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    font-size: 0.95rem;
}

.package-list li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 700;
    flex-shrink: 0;
}

.package-prices {
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 18px;
    margin-top: auto;
}

.package-price-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 4px 0;
    color: var(--text);
}

.package-price-row .size {
    color: var(--text-light);
}

.package-price-row .amount {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: var(--primary);
}

.package-price-single {
    text-align: center;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    padding-top: 4px;
}

.package-addon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed rgba(0,0,0,0.12);
    font-size: 0.85rem;
    color: var(--text-light);
}

.package-addon .amount {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: var(--secondary);
    white-space: nowrap;
}

/* --- About / Over Ons --- */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;
    background: linear-gradient(135deg, var(--light-alt), rgba(232, 152, 94, 0.15));
    box-shadow: var(--shadow);
    position: relative;
}

.about-image::after {
    content: '✨';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.about-text .signature {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 24px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat .number {
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat .label {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.section-alt .testimonial-card {
    background: var(--light);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card .quote {
    font-size: 3rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 12px;
}

.testimonial-card p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .author .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--light-alt);
}

.testimonial-card .author .name {
    font-weight: 700;
    font-size: 0.95rem;
}

.testimonial-card .author .dog {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* --- Fun Facts Banner --- */
.fun-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.fun-banner h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 12px;
}

.fun-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

.fun-facts {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.fun-fact {
    text-align: center;
}

.fun-fact .icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.fun-fact .value {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.fun-fact .label {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-alt);
    border-radius: 12px;
}

.contact-item .details h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-item .details p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.section-alt .contact-form {
    background: var(--light);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-sm);
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--light);
}

.section-alt .form-group input,
.section-alt .form-group textarea,
.section-alt .form-group select {
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(232, 152, 94, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* --- Opening Hours --- */
.hours-table {
    width: 100%;
    max-width: 500px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.08);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row .day {
    font-weight: 600;
}

.hours-row .time {
    color: var(--text-light);
}

.hours-row.closed .time {
    color: var(--primary);
    font-weight: 600;
}

/* --- Footer --- */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-brand .logo {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.85rem;
}

.footer-bottom .paw {
    color: var(--primary);
}

/* --- Scroll to top --- */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(232, 152, 94, 0.4);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    background: var(--primary-dark);
}

/* --- Mobile Quick Contact Bar --- */
.mobile-contact-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    gap: 10px;
    background: var(--white);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -4px 20px rgba(45, 41, 38, 0.15);
}

.mobile-contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    color: var(--white);
    white-space: nowrap;
}

.mobile-contact-btn.call {
    background: var(--primary);
}

.mobile-contact-btn.call:hover,
.mobile-contact-btn.call:active {
    background: var(--primary-dark);
    color: var(--white);
}

.mobile-contact-btn.whatsapp {
    background: var(--secondary);
}

.mobile-contact-btn.whatsapp:hover,
.mobile-contact-btn.whatsapp:active {
    background: var(--secondary-light);
    color: var(--white);
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Dog walking animation in hero --- */
.dog-parade {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    font-size: 2.5rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.dog-parade span {
    display: inline-block;
    animation: bounce 1s ease infinite;
}

.dog-parade span:nth-child(2) { animation-delay: 0.15s; }
.dog-parade span:nth-child(3) { animation-delay: 0.3s; }
.dog-parade span:nth-child(4) { animation-delay: 0.45s; }
.dog-parade span:nth-child(5) { animation-delay: 0.6s; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* --- Page Header (subpages) --- */
.page-header {
    padding: 140px 0 60px;
    text-align: center;
    background: linear-gradient(170deg, var(--light) 0%, var(--light-alt) 100%);
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 12px;
}

.page-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- CTA Banner --- */
.cta-section {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 30px;
}

/* --- Map embed --- */
.map-embed {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 40px;
    box-shadow: var(--shadow);
    line-height: 0;
}

.map-embed iframe {
    display: block;
}

/* --- Responsive --- */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--light);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 12px 30px;
    }

    .hamburger {
        display: flex;
        z-index: 1000;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero {
        min-height: auto;
        padding: 130px 24px 60px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-logo {
        width: 200px;
        height: 200px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .fun-facts {
        gap: 30px;
    }

    .about-stats {
        justify-content: center;
    }

    .pricing-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .mobile-contact-bar {
        display: flex;
    }

    .scroll-top {
        bottom: 86px;
        right: 20px;
    }

    .footer {
        padding-bottom: 90px;
    }
}
