/* ========================================
    CSS CUSTOM PROPERTIES — DESIGN TOKENS
======================================== */
:root {
    --orange: #FF6B00;
    --red: #E53935;
    --cream: #FFF8F2;
    --charcoal: #1F1F1F;
    --white: #ffffff;
    --orange-light: rgba(255, 107, 0, 0.1);
    --orange-border: rgba(255, 107, 0, 0.25);
    --orange-glow: rgba(255, 107, 0, 0.35);
    --white-glass: rgba(255, 255, 255, 0.15);
    --white-border: rgba(255, 255, 255, 0.25);
    --dark-overlay: rgba(0, 0, 0, 0.82);
    --gradient-brand: linear-gradient(135deg, #FF6B00, #E53935);
    --gradient-hero: linear-gradient(135deg, rgba(31,31,31,0.85) 0%, rgba(229,57,53,0.55) 50%, rgba(255,107,0,0.45) 100%);
    --shadow-card: 0 12px 48px rgba(0,0,0,0.18);
    --shadow-orange: 0 8px 32px rgba(255,107,0,0.4);
    --shadow-soft: 0 4px 24px rgba(255,107,0,0.12);
    --radius-card: 20px;
    --radius-pill: 50px;
    --font-body: 'Nunito', sans-serif;
    --font-display: 'Playfair Display', serif;
}

/* ========================================
    GLOBAL RESET & BASE STYLES
======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

*::-webkit-scrollbar {
    display: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--charcoal);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
    TYPOGRAPHY CLASSES
======================================== */
.main-heading {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
}

.secondary-main-heading {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
}

/* ========================================
    SECTION UTILITY
======================================== */
.section {
    padding: 45px 0px;
}

/* ========================================
    NAVBAR STYLES
======================================== */
.site-navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
}

.navbar-brand-logo {
    width: 44px;
    height: 44px;
    background: var(--gradient-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: var(--shadow-orange);
}

.navbar-brand-name {
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.3px;
    text-decoration: none;
}

.navbar-brand-name:hover {
    color: var(--white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    transition: width 0.25s ease;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--orange);
}

.nav-links a.active::after {
    width: 100%;
}

.btn-find-puppy {
    background: var(--gradient-brand);
    color: var(--white);
    border: none;
    border-radius: var(--radius-pill);
    padding: 10px 24px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 16px rgba(255,107,0,0.35);
}

.btn-find-puppy:hover {
    transform: scale(1.05) translateY(-1px);
    box-shadow: var(--shadow-orange);
    color: var(--white);
}

.hamburger-btn {
    background: var(--white-glass);
    border: 1px solid var(--white-border);
    border-radius: 8px;
    color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background 0.2s ease;
}

.hamburger-btn:hover {
    background: rgba(255,255,255,0.25);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 16px;
    right: 16px;
    background: rgba(31,31,31,0.97);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 200;
    animation: slideDown 0.3s ease;
}

.mobile-menu.show {
    display: block;
}

.mobile-menu .nav-links {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.mobile-menu .nav-links a {
    padding: 10px 12px;
    border-radius: 8px;
    display: block;
    width: 100%;
}

.mobile-menu .nav-links a:hover {
    background: rgba(255,255,255,0.08);
}

.mobile-menu .btn-find-puppy {
    width: 100%;
    text-align: center;
    margin-top: 8px;
}

/* ========================================
    HERO / BANNER — SECTION 1
======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

/* Paw prints decorative */
.paw-decor {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.paw-print {
    position: absolute;
    opacity: 0.07;
}

.paw-print svg {
    display: block;
}

.paw-1 { top: 8%; left: 4%; transform: rotate(-20deg); }
.paw-2 { top: 60%; left: 2%; transform: rotate(15deg); }
.paw-3 { top: 15%; right: 4%; transform: rotate(30deg); }
.paw-4 { bottom: 10%; right: 6%; transform: rotate(-10deg); }
.paw-5 { top: 40%; left: 45%; transform: rotate(45deg); opacity: 0.035; }

/* Hero content */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,107,0,0.22);
    color: #FF8C38;
    border: 1px solid rgba(255,107,0,0.4);
    border-radius: var(--radius-pill);
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(8px);
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.hero-title {
    color: var(--white);
    text-shadow: 0 4px 24px rgba(0,0,0,0.35);
    margin-bottom: 20px;
    font-size: 62px;
}

.hero-title em {
    font-style: italic;
    color: #FFB380;
}

.hero-desc {
    color: rgba(255,255,255,0.82);
    font-size: 18px;
    font-weight: 500;
    max-width: 580px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.btn-hero-primary {
    background: var(--gradient-brand);
    color: var(--white);
    border: none;
    border-radius: var(--radius-pill);
    padding: 16px 36px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--shadow-orange);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 40px rgba(255,107,0,0.55);
    color: var(--white);
}

.btn-hero-ghost {
    background: var(--white-glass);
    color: var(--white);
    border: 2px solid var(--white-border);
    border-radius: var(--radius-pill);
    padding: 14px 36px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(8px);
    transition: background 0.25s ease, transform 0.25s ease;
}

.btn-hero-ghost:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    color: var(--white);
}

/* Stats bar */
.stats-bar {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 48px;
}

.stat-item {
    padding: 20px 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.15);
    transition: background 0.2s ease;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: rgba(255,255,255,0.08);
}

.stat-value {
    color: var(--white);
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    display: block;
}

.stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    display: block;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.scroll-indicator span {
    color: rgba(255,255,255,0.5);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ========================================
    SECTION 2 — REVIEWS
======================================== */
.reviews-section {
    background: linear-gradient(180deg, var(--cream) 0%, #ffffff 45%, var(--cream) 100%);
    padding: 80px 0 60px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--orange-light);
    color: var(--orange);
    border: 1px solid var(--orange-border);
    border-radius: var(--radius-pill);
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.reviews-section-title {
    color: var(--charcoal);
    margin-bottom: 10px;
}

.reviews-section-subtitle {
    color: var(--orange);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}

.reviews-section-desc {
    color: #6b7280;
    font-size: 17px;
    font-weight: 500;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
    REVIEW CAROUSEL
======================================== */
.carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0 10px;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    padding: 10px 4px;
}

/* Review card */
.review-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    height: 420px;
    cursor: pointer;
    box-shadow: var(--shadow-card);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}

.review-card:hover .card-photo {
    transform: scale(1.06);
}

.card-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
    to top,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.45) 35%,
    rgba(0,0,0,0.08) 65%,
    transparent 100%
    );
    z-index: 1;
}

/* Card top badges */
.card-top-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 3;
}

.badge-verified {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-pill);
    padding: 5px 10px;
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
}

.badge-verified .verify-dot {
    width: 16px;
    height: 16px;
    background: #1565C0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-pill);
    padding: 5px 10px;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
}

.badge-rating .star-icon {
    color: #FFCA28;
    font-size: 13px;
}

/* Card bottom info */
.card-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px;
    z-index: 3;
}

.card-customer-name {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 26px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 8px;
}

.card-meta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
}

.card-location {
    color: var(--orange);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.card-breed {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-pill);
    color: #FFF8F2;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 10px;
    white-space: nowrap;
}

/* Carousel navigation */
.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 36px;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-btn:active {
    transform: scale(0.92);
}

.nav-btn-prev {
    background: var(--white);
    color: var(--orange);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    border: 1.5px solid var(--orange-border);
}

.nav-btn-prev:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}

.nav-btn-next {
    background: var(--gradient-brand);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255,107,0,0.35);
}

.nav-btn-next:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-orange);
}

.carousel-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    height: 8px;
    border-radius: 4px;
    background: rgba(255,107,0,0.25);
    cursor: pointer;
    transition: width 0.35s ease, background 0.35s ease;
    width: 8px;
    border: none;
    padding: 0;
}

.dot.active {
    background: var(--orange);
    width: 28px;
}

/* Quote panel */
.quote-panel {
    background: var(--white);
    border-radius: 20px;
    padding: 28px 32px;
    position: relative;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--orange-border);
    max-width: 520px;
    margin: 40px auto 0;
    text-align: center;
}

.quote-icon {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(255,107,0,0.35);
}

.quote-text {
    color: #4b5563;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 14px;
    transition: opacity 0.4s ease;
}

.quote-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin-bottom: 8px;
}

.quote-stars .bi-star-fill {
    color: #FFCA28;
    font-size: 15px;
}

.quote-author {
    color: var(--orange);
    font-size: 14px;
    font-weight: 700;
}

/* Trust badges strip */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 52px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid rgba(255,107,0,0.2);
    border-radius: var(--radius-pill);
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 700;
    color: var(--charcoal);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,107,0,0.15);
}

.trust-badge .badge-emoji {
    font-size: 16px;
}

/* ========================================
    FOOTER
======================================== */
.site-footer {
    border-top: 1px solid rgba(255,107,0,0.12);
    padding: 30px 0;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.footer-brand-name {
    font-weight: 800;
    font-size: 18px;
    color: var(--charcoal);
}

.footer-copy {
    color: #9ca3af;
    font-size: 13px;
    font-weight: 500;
}

/* ========================================
    ANIMATIONS
======================================== */
@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.3); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(32px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes floatPaw {
    0%, 100% { transform: translateY(0) rotate(var(--rotate, 0deg)); }
    50% { transform: translateY(-12px) rotate(var(--rotate, 0deg)); }
}

.paw-1 { animation: floatPaw 6s ease-in-out infinite; --rotate: -20deg; }
.paw-2 { animation: floatPaw 8s ease-in-out infinite 1s; --rotate: 15deg; }
.paw-3 { animation: floatPaw 7s ease-in-out infinite 0.5s; --rotate: 30deg; }
.paw-4 { animation: floatPaw 9s ease-in-out infinite 2s; --rotate: -10deg; }
.paw-5 { animation: floatPaw 10s ease-in-out infinite 1.5s; --rotate: 45deg; }

/* Scroll-reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.hero-animate {
    animation: fadeInUp 0.9s ease both;
}

.hero-animate-delay-1 { animation-delay: 0.15s; }
.hero-animate-delay-2 { animation-delay: 0.3s; }
.hero-animate-delay-3 { animation-delay: 0.45s; }
.hero-animate-delay-4 { animation-delay: 0.6s; }
.hero-animate-delay-5 { animation-delay: 0.75s; }

/* Quote fade transition */
.quote-fade-out { opacity: 0; transform: translateY(6px); }
.quote-fade-in { opacity: 1; transform: translateY(0); transition: opacity 0.4s ease, transform 0.4s ease; }

/* ========================================
    RESPONSIVE — TABLET (≤992px)
======================================== */
@media (max-width: 992px) {
    .main-heading { font-size: 36px; }
    .secondary-main-heading { font-size: 32px; }
    .hero-title { font-size: 46px; }
    .hero-desc { font-size: 16px; }

    .review-card {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
    }

    .stat-value { font-size: 24px; }
    .stat-item { padding: 16px 14px; }

    .btn-hero-primary,
    .btn-hero-ghost {
    padding: 13px 28px;
    font-size: 15px;
    }
}

/* ========================================
    RESPONSIVE — MOBILE (≤768px)
======================================== */
@media (max-width: 768px) {
    .main-heading { font-size: 30px; }
    .secondary-main-heading { font-size: 26px; }
    .hero-title { font-size: 34px; }
    .hero-desc { font-size: 15px; max-width: 100%; }

    .hero-content-wrapper { padding: 100px 0 50px; }

    .reviews-section { padding: 60px 0 40px; }
    .reviews-section-subtitle { font-size: 18px; }
    .reviews-section-desc { font-size: 15px; }

    .review-card {
    flex: 0 0 calc(85vw);
    min-width: calc(85vw);
    height: 380px;
    }

    .card-customer-name { font-size: 22px; }

    .stats-bar { border-radius: 14px; }
    .stat-item {
    flex: 0 0 50%;
    border-right: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding: 16px 12px;
    }

    .stat-item:nth-child(2),
    .stat-item:nth-child(4) { border-right: none; }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) { border-bottom: none; }

    .stat-value { font-size: 22px; }
    .stat-label { font-size: 10px; }

    .quote-panel { padding: 24px 20px; }
    .quote-text { font-size: 14px; }

    .btn-hero-primary,
    .btn-hero-ghost {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
    text-align: center;
    }

    .hero-cta-group {
    flex-direction: column;
    width: 100%;
    }

    .trust-badge { font-size: 12px; padding: 8px 14px; }

    .nav-links { display: none; }
    .hamburger-btn { display: flex !important; }
}

/* ========================================
    RESPONSIVE — SMALL MOBILE (≤480px)
======================================== */
@media (max-width: 480px) {
    .main-heading { font-size: 26px; }
    .secondary-main-heading { font-size: 22px; }
    .hero-title { font-size: 28px; }
    .hero-badge { font-size: 12px; padding: 6px 14px; }
    .review-card { height: 340px; }
    .card-customer-name { font-size: 20px; }
    .section-eyebrow { font-size: 12px; }
}

/* Desktop: hide hamburger */
@media (min-width: 769px) {
    .hamburger-btn { display: none; }
}
