/* ==========================================================================
   PATTES & CŒURS - NANTES
   Design System: Warm Natural Caring & Gentle Organic
   ========================================================================== */

/* ─── VARIABLES & DESIGN TOKENS ─── */
:root {
    --bg-cream: #f5f0eb;      /* Sable / Crème douce */
    --bg-white: #ffffff;
    --bg-input: #faf8f5;
    
    --primary: #4a6741;       /* Vert Forêt */
    --primary-light: #6a8a5e;
    --primary-dark: #2a3a25;
    --secondary: #d4a373;     /* Terracotta / Ocre doux */
    --secondary-dark: #c08a5e;
    --text-dark: #1d2b19;      /* Charbon Vert Profond */
    --text-muted: #6a7a6a;
    --text-light: #f5f0eb;
    
    --border-color: rgba(74, 103, 65, 0.08);
    --border-gold: rgba(212, 163, 115, 0.25);
    
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-terracotta: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    --shadow: rgba(74, 103, 65, 0.08);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-round: 50%;
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    
    --font-title: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', sans-serif;
}

/* ─── RESET & BASE STYLES ─── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

::selection {
    background: var(--secondary);
    color: var(--text-light);
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 500;
    color: var(--primary-dark);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    text-align: center;
    position: relative;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

.section-tag {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--secondary-dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
    text-align: center;
}

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

.section {
    padding: clamp(80px, 12vw, 120px) 0;
    position: relative;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px; /* Coins ronds et doux pour Pattes & Coeurs */
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient-terracotta);
    color: var(--text-light);
    box-shadow: 0 6px 20px rgba(212, 163, 115, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 163, 115, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* ─── HEADER & NAVIGATION ─── */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    background: rgba(245, 240, 235, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(74, 103, 65, 0.05);
    transition: var(--transition);
}
header.scrolled {
    padding: 14px 0;
    background: rgba(245, 240, 235, 0.98);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px var(--shadow);
}

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

.logo {
    font-family: var(--font-title);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.logo span {
    color: var(--secondary);
}
.logo-paw {
    display: inline-block;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition-fast);
    padding: 6px 0;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--secondary);
    transition: var(--transition-fast);
}
.nav-links a:hover {
    color: var(--primary-dark);
}
.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--secondary) !important;
    color: var(--text-light) !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.25) !important;
}
.nav-cta::after {
    display: none !important;
}
.nav-cta:hover {
    background: var(--secondary-dark) !important;
    transform: translateY(-2px) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--primary-dark);
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── HERO SECTION ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #f5f0eb 0%, #ede5da 35%, #e1d4c2 70%, #d4c3ab 100%);
    padding: 130px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    pointer-events: none;
}
.hero-blob-1 {
    width: 500px; height: 500px;
    background: var(--primary);
    top: -100px; right: -100px;
    animation: blobFloat 20s ease-in-out infinite;
}
.hero-blob-2 {
    width: 350px; height: 350px;
    background: var(--secondary);
    bottom: -50px; left: -80px;
    animation: blobFloat 25s ease-in-out infinite reverse;
}
@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-dark);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    color: var(--primary-dark);
    margin-bottom: 24px;
    line-height: 1.1;
    font-weight: 700;
}
.hero h1 span {
    color: var(--secondary);
    font-style: italic;
}

.hero p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 520px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Visual Box */
.hero-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px var(--shadow);
    overflow: hidden;
}
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.hero-visual:hover .hero-image {
    transform: scale(1.03);
}
.hero-visual-inner {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 163, 115, 0.35);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 10px 25px rgba(29, 43, 25, 0.06);
    z-index: 2;
    transition: var(--transition);
}
.hero-visual:hover .hero-visual-inner {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.92);
    border-color: var(--secondary);
}
.hero-visual-inner h3 {
    font-size: 1.6rem;
    margin-bottom: 4px;
    font-weight: 700;
}
.hero-visual-inner p {
    font-family: var(--font-title);
    font-style: italic;
    color: var(--secondary-dark);
    font-size: 0.95rem;
    margin: 0 0 12px;
}
.hero-location-badge {
    display: inline-block;
    background: var(--bg-cream);
    border: 1px solid var(--border-color);
    padding: 4px 12px;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    font-weight: 500;
}

/* ─── STATS BAR ─── */
.stats {
    background: var(--primary-dark);
    padding: 55px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.stat-item {
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px; top: 50%;
    transform: translateY(-50%);
    width: 1px; height: 40px;
    background: rgba(255,255,255,0.08);
}
.stat-number {
    font-family: var(--font-title);
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--secondary);
    display: block;
    line-height: 1.1;
}
.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 400;
}

/* ─── SERVICES GRID ─── */
.services { background: var(--bg-white); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    transition: var(--transition);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--gradient-terracotta);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
    box-shadow: 0 10px 30px var(--shadow);
}
.service-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}
.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
}

/* ─── SIMULATEUR DE SOINS & PENSION ─── */
.calculator-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: start;
    margin-top: 20px;
}

.calculator-form {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px var(--shadow);
}

.sim-label {
    font-family: var(--font-title);
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    color: var(--primary-dark);
    margin-bottom: 12px;
    display: block;
}

.sim-pet-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}
.sim-pet-item {
    background: var(--bg-cream);
    border: 1px solid var(--border-color);
    padding: 16px 12px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: var(--radius-sm);
}
.sim-pet-item:hover {
    border-color: rgba(74, 103, 65, 0.25);
}
.sim-pet-item.active {
    border-color: var(--secondary);
    background: rgba(212, 163, 115, 0.04);
}
.sim-pet-item h5 {
    font-family: var(--font-body);
    font-weight: 600;
    margin-top: 4px;
    font-size: 0.9rem;
}
.sim-pet-item .icon {
    font-size: 1.8rem;
}

.sim-main-service-group {
    margin-bottom: 24px;
}
.sim-select {
    width: 100%;
    background: var(--bg-cream);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    border-radius: var(--radius-sm);
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%231d2b19' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

/* Slider Nights for Pension */
.sim-nights-wrapper {
    background: var(--bg-cream);
    border: 1px solid var(--border-color);
    padding: 20px;
    margin-bottom: 24px;
    border-radius: var(--radius-sm);
}
.sim-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.sim-slider-title h5 {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
}
.sim-slider-title p {
    font-size: 0.78rem;
    color: var(--text-muted);
}
.sim-nights-badge {
    background: var(--primary);
    color: var(--text-light);
    font-family: var(--font-title);
    font-size: 1.1rem;
    padding: 2px 12px;
    border-radius: 4px;
}
.sim-slider-control {
    display: flex;
    align-items: center;
    gap: 16px;
}
.sim-range-input {
    flex-grow: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: rgba(74, 103, 65, 0.15);
    outline: none;
}
.sim-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}
.sim-range-input::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* Options */
.sim-options-title {
    margin-top: 24px;
}
.sim-options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 10px;
}
.sim-option-item {
    background: var(--bg-cream);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: var(--radius-sm);
}
.sim-option-item:hover {
    border-color: rgba(74, 103, 65, 0.2);
}
.sim-option-item.active {
    border-color: var(--secondary);
    background: var(--bg-white);
}
.sim-opt-info {
    display: flex;
    align-items: center;
    gap: 14px;
}
.sim-opt-checkbox {
    width: 16px;
    height: 16px;
    border: 1px solid var(--text-muted);
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    border-radius: 3px;
}
.sim-option-item.active .sim-opt-checkbox {
    background: var(--secondary);
    border-color: var(--secondary);
}
.sim-opt-checkbox::after {
    content: '✓';
    color: var(--text-light);
    font-size: 0.65rem;
    font-weight: bold;
    opacity: 0;
}
.sim-option-item.active .sim-opt-checkbox::after {
    opacity: 1;
}
.sim-opt-details h5 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
}
.sim-opt-details p {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.sim-opt-price {
    font-family: var(--font-title);
    font-size: 1.05rem;
    color: var(--primary);
}

/* Calculator Summary Box */
.sim-summary-box {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--secondary);
    padding: 40px;
    box-shadow: 0 10px 30px var(--shadow);
    position: sticky;
    top: 110px;
    border-radius: var(--radius-sm);
}
.sim-summary-box h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(74, 103, 65, 0.05);
    padding-bottom: 12px;
}
.sim-summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.sim-summary-line.main {
    color: var(--text-dark);
    font-weight: 600;
}
.sim-summary-divider {
    border-top: 1px dashed rgba(74, 103, 65, 0.1);
    margin: 20px 0;
}
.sim-total-display {
    text-align: center;
    margin: 30px 0;
}
.sim-total-price {
    font-family: var(--font-title);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-dark);
}
.sim-total-price span {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}
.sim-book-btn {
    width: 100%;
}

/* ─── TRIEUR D'URGENCES VÉTÉRINAIRES ─── */
.triage-widget {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px var(--shadow);
    max-width: 800px;
    margin: 40px auto 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.triage-widget h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}
.triage-symptoms-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 24px 0;
}
.symptom-btn {
    background: var(--bg-cream);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    padding: 10px 20px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-fast);
}
.symptom-btn:hover {
    border-color: var(--primary);
}
.symptom-btn.active {
    background: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
}

.triage-alert-box {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.triage-msg {
    display: none;
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    line-height: 1.6;
    animation: fadeIn 0.3s ease;
    width: 100%;
}
.triage-msg.red {
    background: rgba(255, 60, 60, 0.08);
    border: 1px solid #ff3c3c;
    color: #cc1111;
}
.triage-msg.red strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 4px;
    color: #ff3c3c;
}
.triage-msg.orange {
    background: rgba(255, 170, 0, 0.08);
    border: 1px solid #ffaa00;
    color: #a36500;
}
.triage-msg.orange strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 4px;
    color: #ffaa00;
}
.triage-msg.green {
    background: rgba(0, 255, 170, 0.08);
    border: 1px solid #00ffaa;
    color: #008f5d;
}
.triage-msg.green strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 4px;
    color: #00cc80;
}

/* ─── PRATICIENS GRID (EEAT) ─── */
.praticiens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 20px;
}
.praticien-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 35px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--shadow);
}
.praticien-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
    box-shadow: 0 10px 30px var(--shadow);
}
.praticien-avatar {
    width: 110px; height: 110px;
    border-radius: var(--radius-round);
    margin: 0 auto 24px;
    border: 3px solid rgba(74, 103, 65, 0.15);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: var(--transition);
}
.praticien-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.praticien-card:hover .praticien-avatar {
    border-color: var(--secondary);
    transform: scale(1.05);
}
.praticien-card:hover .praticien-avatar img {
    transform: scale(1.1);
}
.praticien-card h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
    font-weight: 700;
}
.praticien-spec {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary-dark);
    font-weight: 600;
    margin-bottom: 12px;
}
.praticien-bio {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.5;
}

/* ─── GALERIE ─── */
.galerie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.galerie-item {
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}
.galerie-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.galerie-item::before {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(29, 43, 25, 0.85) 100%);
    opacity: 0.8;
    z-index: 2;
    transition: var(--transition);
}
.galerie-item:hover::before {
    opacity: 0.9;
}
.galerie-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 3;
    transform: translateY(10px);
    opacity: 0;
    transition: var(--transition);
    text-align: center;
    color: var(--text-light);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.galerie-item:hover {
    transform: translateY(-4px);
    border-color: var(--secondary);
    box-shadow: 0 10px 30px var(--shadow);
}
.galerie-item:hover img {
    transform: scale(1.08);
}
.galerie-item:hover .galerie-label {
    transform: translateY(0);
    opacity: 1;
}

/* ─── FAQ INTERACTIVE ACCORDIONS ─── */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.active {
    border-color: rgba(212, 163, 115, 0.3);
    box-shadow: 0 4px 15px var(--shadow);
}
.faq-trigger {
    width: 100%;
    padding: 24px 30px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    outline: none;
}
.faq-trigger h3 {
    font-family: var(--font-body);
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--primary-dark);
}
.faq-icon-box {
    width: 20px;
    height: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-icon-box::before, .faq-icon-box::after {
    content: '';
    position: absolute;
    background: var(--text-muted);
    transition: var(--transition-fast);
}
.faq-icon-box::before {
    width: 12px; height: 1.5px;
}
.faq-icon-box::after {
    width: 1.5px; height: 12px;
}
.faq-item.active .faq-icon-box::before {
    background: var(--secondary);
}
.faq-item.active .faq-icon-box::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-content {
    padding: 0 30px 24px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
}

/* ─── CONTACT & RESERVATION ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
    align-items: start;
}
.contact-info-panel {
    background: var(--primary-dark);
    color: #fff;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px var(--shadow);
    border: 1px solid rgba(255,255,255,0.03);
}
.contact-info-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 12px;
    color: #fff;
}
.contact-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.contact-detail-icon {
    width: 38px; height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    flex-shrink: 0;
    font-size: 1.1rem;
}
.contact-detail-text h4 {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
}
.contact-detail-text p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
}

.urgent-badge {
    background: rgba(212, 163, 115, 0.1);
    border: 1px solid var(--border-gold);
    padding: 20px;
    margin-top: 30px;
    border-radius: var(--radius-sm);
    color: var(--secondary);
}
.urgent-badge h4 {
    font-family: var(--font-title);
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 6px;
}
.urgent-badge p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
}
.urgent-badge strong {
    font-size: 1.1rem;
    color: #fff;
    display: block;
    margin-top: 6px;
}

/* Contact Form Right Panel */
.contact-form-panel {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 40px;
    box-shadow: 0 10px 30px var(--shadow);
    border-radius: var(--radius-md);
}
.contact-form-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 28px;
}
.form-group {
    margin-bottom: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}
.form-input {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    outline: none;
}
.form-input:focus {
    border-color: var(--primary);
    background: var(--bg-white);
}
textarea.form-input {
    min-height: 110px;
    resize: vertical;
}
select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%236a7a6a' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}
select.form-input option {
    background: var(--bg-white);
    color: var(--text-dark);
}

/* Prefill configuration badge */
.form-prefill-badge {
    display: none;
    align-items: center;
    gap: 10px;
    background: rgba(212, 163, 115, 0.08);
    border: 1px solid var(--secondary);
    padding: 12px 16px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: var(--secondary-dark);
    animation: fadeIn 0.3s ease;
    border-radius: var(--radius-sm);
}
.form-prefill-badge-close {
    margin-left: auto;
    cursor: pointer;
    font-weight: bold;
    color: var(--text-muted);
}

/* ─── FOOTER ─── */
footer {
    background: #1a2417;
    color: rgba(255, 255, 255, 0.35);
    padding: 70px 0 30px;
    border-top: 1px solid rgba(74, 103, 65, 0.05);
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.footer-top .logo {
    color: var(--text-light);
}
.footer-top .logo-paw {
    color: var(--secondary);
}
.footer-links {
    display: flex;
    gap: 32px;
    list-style: none;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-fast);
}
.footer-links a:hover {
    color: var(--secondary);
}
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.04);
    margin-bottom: 30px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 300;
}
.footer-bottom strong {
    color: var(--secondary);
    font-weight: 400;
}
.footer-bottom a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: var(--transition-fast);
}
.footer-bottom a:hover {
    color: var(--text-light);
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .hero h1 {
        margin: 0 auto 24px;
    }
    .hero p {
        margin: 0 auto 40px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-visual {
        max-width: 420px;
        margin: 0 auto;
        aspect-ratio: 4/3;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item:not(:last-child)::after {
        display: none;
    }
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    .sim-summary-box {
        position: static;
        top: 0;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(245, 240, 235, 0.99);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition);
        z-index: 999;
    }
    .nav-links.active {
        right: 0;
    }
    .hamburger {
        display: flex;
    }
    
    .galerie-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.4rem;
    }
    .hero {
        padding-top: 100px;
    }
    .sim-pet-selector {
        grid-template-columns: 1fr;
    }
    .galerie-grid {
        grid-template-columns: 1fr;
    }
    .calculator-form, .contact-info-panel, .contact-form-panel {
        padding: 24px 16px;
    }
}
