/* ============================================================
   EquineConnect Design System
   Zocdoc meets Horse World — Professional, Trustworthy, Modern
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
    --green-deep:   #1a3a2a;
    --green-mid:    #2d5a3f;
    --green-light:  #3d7a52;
    --green-pale:   #e8f5ed;
    --gold:         #c4922a;
    --gold-light:   #e8b84b;
    --gold-pale:    #fdf6e3;
    --earth:        #8b6f47;
    --earth-light:  #c4a97a;
    --cream:        #faf8f4;
    --warm-white:   #fffcf8;
    --off-white:    #f5f2ed;
    --text:         #3a3a3a;
    --text-muted:   #6b6b6b;
    --text-light:   #9a9a9a;
    --border:       #e5e0d8;
    --border-light: #f0ece5;
    --shadow-sm:    0 1px 3px rgba(0,0,0,0.06);
    --shadow-md:    0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg:    0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl:    0 16px 48px rgba(0,0,0,0.18);
    --radius-sm:    6px;
    --radius-md:    12px;
    --radius-lg:    20px;
    --radius-xl:    32px;
    --transition:   all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', 'DM Sans', system-ui, sans-serif;
    color: var(--text);
    background: var(--warm-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    color: var(--green-deep);
}

a { color: var(--green-mid); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Navigation */
.navbar {
    background: rgba(255, 252, 248, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 9998;
    padding: 0 24px;
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green-deep);
}
.nav-logo:hover { color: var(--green-deep); }
.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--green-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}
/* Nav links - hidden by default, shown via hamburger */
.nav-links {
    display: none !important;
    flex-direction: column;
    list-style: none;
    position: fixed !important;
    top: 68px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: calc(100vh - 68px) !important;
    background: #ffffff !important;
    padding: 16px 24px 80px !important;
    z-index: 99999 !important;
    overflow-y: scroll !important;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    margin: 0 !important;
    gap: 0 !important;
}
.nav-links.open { display: flex !important; }
.nav-links li { list-style: none; width: 100%; }
.nav-links a {
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
    display: block;
    border-bottom: 1px solid var(--border-light);
}
.nav-links a:hover { background: var(--green-pale); color: var(--green-mid); }
.nav-links a.active { background: var(--green-pale); color: var(--green-mid); font-weight: 600; }
.nav-cta { background: var(--green-mid) !important; color: white !important; padding: 12px 20px !important; border-radius: var(--radius-md) !important; font-weight: 600 !important; text-align: center; margin-top: 8px; border-bottom: none !important; }
.nav-cta:hover { background: var(--green-deep) !important; color: white !important; }

/* Hamburger Menu Button */
.nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
    z-index: 10000;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--green-deep);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Desktop: show links inline, hide hamburger */
@media (min-width: 1200px) {
    .nav-links {
        display: flex !important;
        flex-direction: row !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        gap: 2px !important;
        align-items: center;
        overflow: visible !important;
    }
    .nav-links li { width: auto; }
    .nav-links a { font-size: 0.82rem; padding: 8px 10px; border-bottom: none; }
    .nav-hamburger { display: none !important; }
}

/* Hero */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--green-deep) 0%, #0f2a1f 100%);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1553284965-83fd3e82fa5a?w=1600&q=80') center/cover no-repeat;
    opacity: 0.18;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,58,42,0.9) 0%, rgba(15,42,31,0.8) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    padding: 80px 24px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196,146,42,0.15);
    border: 1px solid rgba(196,146,42,0.3);
    color: var(--gold-light);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); color: white; margin-bottom: 20px; line-height: 1.1; }
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 44px; line-height: 1.7; }

.search-bar {
    background: white;
    border-radius: var(--radius-xl);
    padding: 8px;
    display: flex;
    align-items: stretch;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    max-width: 720px;
    margin: 0 auto;
}
.search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: var(--text);
    outline: none;
    border-right: 1px solid var(--border);
    min-width: 0;
}
.search-field:last-of-type { border-right: none; }
.search-field input, .search-field select {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: var(--text);
    outline: none;
    font-family: inherit;
    min-width: 0;
}
.search-field select { cursor: pointer; appearance: none; -webkit-appearance: none; }
.search-icon { color: var(--text-light); font-size: 1rem; flex-shrink: 0; }
.search-btn {
    background: var(--green-mid);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    font-family: inherit;
}
.search-btn:hover { background: var(--gold); transform: translateY(-1px); }

/* Stats */
.stats-bar { background: white; border-bottom: 1px solid var(--border-light); padding: 28px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; }
.stat-item + .stat-item { border-left: 1px solid var(--border-light); }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--green-mid); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }

/* Sections */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-label { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 14px; }
.section-header p { font-size: 1.05rem; color: var(--text-muted); max-width: 540px; margin: 0 auto; line-height: 1.7; }
.bg-cream { background: var(--cream); }
.bg-white  { background: white; }
.bg-green  { background: linear-gradient(135deg, var(--green-deep), var(--green-mid)); }
.bg-green .section-label { color: var(--gold-light); }
.bg-green .section-header h2 { color: white; }
.bg-green .section-header p  { color: rgba(255,255,255,0.75); }

/* Category Grid */
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(115px, 1fr)); gap: 14px; }
.category-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 22px 12px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: var(--text);
}
.category-card:hover { border-color: var(--green-light); box-shadow: var(--shadow-md); transform: translateY(-3px); color: var(--text); background: var(--green-pale); }
.category-icon { font-size: 2rem; margin-bottom: 8px; display: block; }
.category-name { font-size: 0.78rem; font-weight: 600; color: var(--green-deep); line-height: 1.3; }

/* Practitioner Cards */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 24px; }
.practitioner-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text);
    display: block;
}
.practitioner-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; color: var(--text); }
.card-photo { height: 200px; background: var(--green-pale); position: relative; overflow: hidden; }
.card-photo img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.practitioner-card:hover .card-photo img { transform: scale(1.04); }
.card-category-badge {
    position: absolute; top: 12px; left: 12px;
    background: white; color: var(--green-mid);
    font-size: 0.68rem; font-weight: 700;
    padding: 4px 10px; border-radius: 100px;
    letter-spacing: 0.04em; text-transform: uppercase;
}
.card-virtual-badge {
    position: absolute; top: 12px; right: 12px;
    background: var(--green-mid); color: white;
    font-size: 0.64rem; font-weight: 600;
    padding: 3px 8px; border-radius: 100px;
}
.card-body { padding: 20px; }
.card-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--green-deep); margin-bottom: 6px; }
.card-meta { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 10px; }
.card-rating { display: flex; align-items: center; gap: 3px; color: var(--gold); font-weight: 600; }
.card-specialties { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.tag { background: var(--green-pale); color: var(--green-mid); font-size: 0.7rem; font-weight: 500; padding: 3px 9px; border-radius: 100px; }
.card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border-light); }
.card-rates { font-size: 0.88rem; font-weight: 600; color: var(--green-mid); }
.card-location { font-size: 0.78rem; color: var(--text-muted); }
.btn-sm { background: var(--green-mid); color: white; padding: 8px 16px; border-radius: var(--radius-sm); font-size: 0.82rem; font-weight: 600; transition: var(--transition); display: inline-block; border: none; cursor: pointer; font-family: inherit; text-decoration: none; }
.btn-sm:hover { background: var(--green-deep); color: white; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: var(--radius-md); font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: var(--transition); border: none; font-family: inherit; text-decoration: none; }
.btn-primary { background: var(--green-mid); color: white; }
.btn-primary:hover { background: var(--green-deep); color: white; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold); color: white; }
.btn-gold:hover { background: var(--earth); color: white; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--green-mid); border: 2px solid var(--green-mid); }
.btn-outline:hover { background: var(--green-pale); color: var(--green-mid); }
.btn-white { background: white; color: var(--green-deep); }
.btn-white:hover { background: var(--cream); color: var(--green-deep); transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: var(--radius-lg); }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; position: relative; }
.testimonial-card::before { content: '"'; font-family: 'Playfair Display', serif; font-size: 5rem; color: var(--green-pale); position: absolute; top: 8px; left: 20px; line-height: 1; }
.testimonial-stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 14px; }
.testimonial-text { font-size: 0.93rem; line-height: 1.7; color: var(--text); margin-bottom: 18px; position: relative; }
.testimonial-author { font-weight: 600; font-size: 0.88rem; color: var(--green-mid); }
.testimonial-role { font-size: 0.78rem; color: var(--text-muted); }

/* CTA Banner */
.cta-banner { background: linear-gradient(135deg, var(--green-deep), var(--green-mid)); border-radius: var(--radius-xl); padding: 64px 48px; text-align: center; color: white; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1553284965-83fd3e82fa5a?w=1200&q=60') center/cover no-repeat; opacity: 0.08; }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: white; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 500px; margin: 0 auto 28px; }

/* Search Results */
.page-header { background: var(--green-pale); padding: 40px 0 32px; border-bottom: 1px solid var(--border); }
.page-header h1 { font-size: 2rem; margin-bottom: 6px; }
.page-header p { color: var(--text-muted); }
.filters-bar { background: white; border-bottom: 1px solid var(--border-light); padding: 16px 0; position: sticky; top: 68px; z-index: 50; }
.filters-inner { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.filter-select { padding: 8px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 0.88rem; font-family: inherit; color: var(--text); background: white; cursor: pointer; outline: none; transition: var(--transition); }
.filter-select:focus { border-color: var(--green-light); }
.filter-checkbox { display: flex; align-items: center; gap: 6px; font-size: 0.88rem; color: var(--text); cursor: pointer; }
.filter-checkbox input[type="checkbox"] { accent-color: var(--green-mid); width: 16px; height: 16px; }
.results-count { margin-left: auto; font-size: 0.88rem; color: var(--text-muted); }
.no-results { text-align: center; padding: 80px 20px; color: var(--text-muted); }
.no-results-icon { font-size: 3rem; margin-bottom: 16px; }

/* Profile */
.profile-header { background: linear-gradient(135deg, var(--green-deep), var(--green-mid)); padding: 60px 0; color: white; }
.profile-header-inner { display: grid; grid-template-columns: 140px 1fr; gap: 32px; align-items: start; }
.profile-photo { width: 140px; height: 140px; border-radius: var(--radius-lg); object-fit: cover; border: 4px solid rgba(255,255,255,0.2); }
.profile-name { font-family: 'Playfair Display', serif; font-size: 2rem; color: white; margin-bottom: 6px; }
.profile-category { display: inline-block; background: rgba(255,255,255,0.15); color: white; padding: 4px 12px; border-radius: 100px; font-size: 0.78rem; font-weight: 600; margin-bottom: 12px; }
.profile-credentials { color: var(--gold-light); font-size: 0.88rem; margin-bottom: 16px; }
.profile-rating { display: flex; align-items: center; gap: 8px; color: var(--gold-light); font-size: 0.95rem; }
.profile-stats { display: flex; gap: 24px; margin-top: 16px; flex-wrap: wrap; }
.profile-stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em; }
.profile-stat-value { font-size: 1rem; font-weight: 600; color: white; }
.profile-body { padding: 48px 0; }
.profile-grid { display: grid; grid-template-columns: 1fr 340px; gap: 40px; }
.profile-section { margin-bottom: 36px; }
.profile-section h3 { font-size: 1.2rem; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--border-light); }
.specialty-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sidebar-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px; }
@media (min-width: 1024px) { .sidebar-card { position: sticky; top: 100px; } }
.sidebar-card h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 16px; }
.contact-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 0.9rem; color: var(--text); }
.contact-icon { width: 32px; height: 32px; background: var(--green-pale); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--green-mid); font-size: 0.85rem; }
.review-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; margin-bottom: 16px; }
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.review-author { font-weight: 600; font-size: 0.9rem; }
.review-date { font-size: 0.78rem; color: var(--text-muted); }
.review-stars { color: var(--gold); font-size: 0.85rem; }
.review-text { font-size: 0.9rem; color: var(--text); line-height: 1.6; }

/* Certifications */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.cert-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.cert-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-light); transform: translateY(-3px); }
.cert-card-body { padding: 24px; }
.cert-category-tag { display: inline-block; background: var(--gold-pale); color: var(--earth); font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; }
.cert-school { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 4px; }
.cert-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--green-deep); margin-bottom: 12px; line-height: 1.3; }
.cert-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.cert-details { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.cert-detail-label { font-size: 0.7rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; }
.cert-detail-value { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.cert-footer { padding: 16px 24px; background: var(--off-white); border-top: 1px solid var(--border-light); display: flex; align-items: center; justify-content: space-between; }
.cert-accreditation { font-size: 0.78rem; color: var(--green-mid); font-weight: 600; }

/* Virtual */
.how-it-works { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 60px; }
.step-card { text-align: center; padding: 28px 20px; background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); }
.step-number { width: 48px; height: 48px; background: var(--green-mid); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin: 0 auto 16px; }
.step-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--green-deep); margin-bottom: 8px; }
.step-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* Forms */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-control { width: 100%; padding: 11px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 0.95rem; font-family: inherit; color: var(--text); background: white; transition: var(--transition); outline: none; }
.form-control:focus { border-color: var(--green-light); box-shadow: 0 0 0 3px rgba(45,90,63,0.1); }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Flash */
.flash { padding: 12px 20px; border-radius: var(--radius-sm); margin-bottom: 16px; font-size: 0.9rem; font-weight: 500; }
.flash-success { background: var(--green-pale); color: var(--green-mid); border: 1px solid rgba(45,90,63,0.2); }
.flash-error { background: #fde8e8; color: #c53030; border: 1px solid rgba(197,48,48,0.2); }

/* Dashboard */
.dashboard-grid { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.dashboard-sidebar { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.dashboard-sidebar h3 { font-size: 1.1rem; margin-bottom: 20px; }
.dashboard-nav-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 0.9rem; color: var(--text); transition: var(--transition); margin-bottom: 4px; cursor: pointer; text-decoration: none; }
.dashboard-nav-item:hover, .dashboard-nav-item.active { background: var(--green-pale); color: var(--green-mid); }
.dashboard-main h2 { font-size: 1.6rem; margin-bottom: 8px; }
.dashboard-subtitle { color: var(--text-muted); margin-bottom: 28px; }
.stat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
.dash-stat-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; text-align: center; }
.dash-stat-number { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--green-mid); }
.dash-stat-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.bookings-table { width: 100%; border-collapse: collapse; background: white; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.bookings-table th, .bookings-table td { padding: 12px 16px; text-align: left; font-size: 0.88rem; }
.bookings-table th { background: var(--off-white); font-weight: 600; color: var(--text); border-bottom: 1px solid var(--border); }
.bookings-table td { border-bottom: 1px solid var(--border-light); }
.bookings-table tr:last-child td { border-bottom: none; }
.status-badge { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.status-pending { background: #fef3cd; color: #856404; }
.status-confirmed { background: var(--green-pale); color: var(--green-mid); }
.status-cancelled { background: #fde8e8; color: #9b1c1c; }
.status-completed { background: var(--off-white); color: var(--text-muted); }

/* Footer */
.footer { background: var(--green-deep); color: rgba(255,255,255,0.8); padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: white; margin-bottom: 12px; }
.footer-desc { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.footer-col h4 { color: white; font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: var(--transition); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* Register Page */
.register-page { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.register-hero { background: linear-gradient(135deg, var(--green-deep), var(--green-mid)); padding: 60px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.register-hero::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1553284965-83fd3e82fa5a?w=1200&q=60') center/cover no-repeat; opacity: 0.12; }
.register-hero > * { position: relative; z-index: 1; }
.register-hero h2 { color: white; font-size: 2.2rem; margin-bottom: 16px; }
.register-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; margin-bottom: 32px; }
.benefit-list { list-style: none; }
.benefit-list li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.9); font-size: 0.95rem; margin-bottom: 16px; }
.benefit-icon { width: 28px; height: 28px; background: rgba(196,146,42,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold-light); font-size: 0.85rem; flex-shrink: 0; }
.register-form-wrap { padding: 60px; display: flex; flex-direction: column; justify-content: center; }
.register-form-wrap h2 { font-size: 2rem; margin-bottom: 8px; }
.register-form-wrap > p { color: var(--text-muted); margin-bottom: 28px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Booking form */
.booking-form { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.booking-form h3 { font-size: 1.3rem; margin-bottom: 20px; }

/* Responsive */
/* ── Page Hero (dark) ───────────────────────────────────────────────────── */
.page-hero-dark {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--green-deep) 0%, #0f2a1f 100%);
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.18;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,58,42,0.88) 0%, rgba(15,42,31,0.78) 100%);
}
.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 70px 24px;
}
.page-hero-content h1 { font-size: clamp(2rem, 4vw, 3rem); color: white; margin-bottom: 14px; }
.page-hero-content h1 em { color: var(--gold-light); font-style: normal; }

/* ── Stables Hub ───────────────────────────────────────────────────────── */
.stables-stat-row { display: flex; justify-content: center; gap: 32px; margin-top: 24px; }
.stables-stat { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.stables-stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold-light); margin-right: 6px; }

.stables-hub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.stables-hub-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    color: white;
    transition: var(--transition);
}
.stables-hub-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); color: white; }
.hub-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: var(--transition); }
.stables-hub-card:hover .hub-card-bg { transform: scale(1.05); }
.hub-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 100%); }
.hub-card-content { position: relative; z-index: 2; padding: 36px; width: 100%; }
.hub-card-icon { font-size: 2.5rem; margin-bottom: 12px; }
.hub-card-content h3 { font-family: 'Playfair Display', serif; font-size: 2rem; color: white; margin-bottom: 8px; }
.hub-card-content p { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-bottom: 16px; line-height: 1.6; }
.hub-card-count { font-size: 0.85rem; color: var(--gold-light); font-weight: 600; margin-bottom: 16px; }

.special-stables-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.special-stable-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text);
}
.special-stable-card:hover { border-color: var(--green-light); box-shadow: var(--shadow-md); transform: translateY(-3px); color: var(--text); }
.special-icon { font-size: 2.5rem; margin-bottom: 14px; }
.special-stable-card h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--green-deep); margin-bottom: 8px; }
.special-stable-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ── Stables Listing Pages ─────────────────────────────────────────────── */
.stable-page-breadcrumb { margin-bottom: 10px; }
.stable-page-breadcrumb a { color: var(--gold-light); font-size: 0.85rem; }

.discipline-tabs-bar {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 0;
    overflow-x: auto;
}
.discipline-tabs {
    display: flex;
    gap: 4px;
    padding: 12px 0;
    white-space: nowrap;
}
.discipline-tab {
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid transparent;
}
.discipline-tab:hover { background: var(--green-pale); color: var(--green-mid); }
.discipline-tab.active { background: var(--green-mid); color: white; border-color: var(--green-mid); }

.stable-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); gap: 24px; }
.stable-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}
.stable-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-light); }
.stable-card-header { padding: 24px 24px 12px; }
.stable-discipline-badge {
    display: inline-block;
    background: var(--gold-pale);
    color: var(--earth);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}
.stable-badge-english { background: var(--green-pale); color: var(--green-mid); }
.stable-badge-special { background: #f0e6ff; color: #6b46c1; }
.stable-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--green-deep); margin-bottom: 6px; }
.stable-location { font-size: 0.85rem; color: var(--text-muted); }
.stable-card-body { padding: 0 24px 16px; }
.stable-desc { font-size: 0.88rem; color: var(--text); line-height: 1.6; margin-bottom: 12px; }
.stable-amenities { display: flex; flex-wrap: wrap; gap: 5px; }
.stable-card-footer {
    padding: 16px 24px;
    background: var(--off-white);
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.stable-contact { font-size: 0.8rem; color: var(--text-muted); display: flex; flex-direction: column; gap: 2px; }

/* ── Horses for Sale ───────────────────────────────────────────────────── */
.horse-filters { width: 100%; }
.horse-filter-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }
.horse-filter-row:last-child { margin-bottom: 0; }
.price-range-group { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--text-muted); }
.price-range-group label { font-weight: 600; white-space: nowrap; }
.filter-num { width: 110px !important; min-width: 0 !important; }
.filter-num-sm { width: 70px !important; min-width: 0 !important; }
.text-muted { color: var(--text-muted); font-size: 0.8rem; }

.horse-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.horse-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}
.horse-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-3px); }
.horse-card-photo {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: var(--green-pale);
}
.horse-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.horse-card:hover .horse-card-photo img { transform: scale(1.04); }
.horse-card-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 4rem; background: var(--cream); }
.horse-price-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--green-deep);
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-md);
}
.horse-card-body { padding: 20px; }
.horse-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--green-deep); margin-bottom: 6px; }
.horse-meta { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; }
.horse-breed { font-weight: 600; color: var(--text); }
.horse-discipline-tag {
    display: inline-block;
    background: var(--gold-pale);
    color: var(--earth);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}
.horse-desc { font-size: 0.88rem; color: var(--text); line-height: 1.6; margin-bottom: 10px; }
.horse-location { font-size: 0.82rem; color: var(--text-muted); }
.horse-card-footer {
    padding: 16px 20px;
    background: var(--off-white);
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.horse-seller { font-size: 0.85rem; color: var(--text); }

/* ── Horse Listing Form ────────────────────────────────────────────────── */
.listing-form { max-width: 860px; margin: 0 auto; }
.form-section {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
}
.form-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--green-deep);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-light);
}

.upload-area {
    position: relative;
    border: 2px dashed var(--border);
    border-radius: var(--radius-md);
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--off-white);
}
.upload-area:hover, .upload-area.drag-over { border-color: var(--green-mid); background: var(--green-pale); }
.upload-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
.upload-placeholder p { margin: 4px 0; }
.upload-preview { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.preview-thumb {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid var(--border);
    position: relative;
}
.preview-thumb img { width: 100%; height: 100%; object-fit: cover; }
.preview-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 0.6rem;
    padding: 2px 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Pedigree Form */
.pedigree-chart { background: var(--off-white); border-radius: var(--radius-md); padding: 24px; }
.pedigree-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 16px; }
.pedigree-row:last-child { margin-bottom: 0; }
.pedigree-grandparents { display: flex; flex-direction: column; gap: 8px; }
.pedigree-grandparents .form-group { margin-bottom: 0; }

/* Pedigree Display (detail page) */
.pedigree-display { background: var(--off-white); border-radius: var(--radius-md); padding: 24px; }
.pedigree-horse-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--green-deep);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}
.pedigree-tree { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pedigree-branch { background: white; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 16px; }
.pedigree-parent { margin-bottom: 12px; }
.pedigree-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
.pedigree-value { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--green-deep); font-weight: 600; }
.pedigree-grandparents-display { border-top: 1px solid var(--border-light); padding-top: 10px; }
.pedigree-gp { font-size: 0.85rem; color: var(--text); margin-bottom: 4px; }
.pedigree-gp-label { font-weight: 700; color: var(--text-muted); font-size: 0.75rem; }

/* Horse Detail */
.horse-detail-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 20px; }
.horse-price-big { text-align: right; }
.price-amount { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold-light); }
.price-note { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

.horse-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.05); }
.horse-videos { display: grid; gap: 16px; }
.video-embed { border-radius: var(--radius-md); overflow: hidden; }

/* ── Travel ─────────────────────────────────────────────────────────────── */
.travel-region-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.travel-region-card {
    position: relative;
    height: 180px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    transition: var(--transition);
}
.travel-region-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.travel-region-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 100%);
}
.travel-region-label {
    position: relative;
    z-index: 2;
    padding: 16px 20px;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    width: 100%;
}

.travel-featured-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 24px; }
.travel-featured-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 200px 1fr;
    transition: var(--transition);
}
.travel-featured-card:hover { box-shadow: var(--shadow-md); }
.travel-featured-img {
    background-size: cover;
    background-position: center;
    min-height: 200px;
}
.travel-featured-body { padding: 20px; }
.travel-featured-body h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--green-deep); margin-bottom: 6px; }
.travel-featured-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }

.travel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); gap: 24px; }
.travel-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}
.travel-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-light); }
.travel-card-header { padding: 24px 24px 8px; }
.travel-card-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.travel-category-tag {
    display: inline-block;
    background: var(--gold-pale);
    color: var(--earth);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.travel-region-tag {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green-mid);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.travel-card-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--green-deep); margin-bottom: 4px; }
.travel-location { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 4px; }
.travel-card-body { padding: 0 24px 16px; }
.travel-card-desc { font-size: 0.88rem; color: var(--text); line-height: 1.6; }
.travel-card-footer {
    padding: 16px 24px;
    background: var(--off-white);
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.travel-card-details { display: flex; flex-direction: column; gap: 3px; }
.travel-price { font-size: 0.85rem; font-weight: 600; color: var(--green-mid); }
.travel-season { font-size: 0.8rem; color: var(--text-muted); }

/* ── Organizations ─────────────────────────────────────────────────────── */
.org-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 24px; }
.org-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}
.org-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-light); }
.org-card-header {
    padding: 20px 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.org-category-badge {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green-mid);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.org-abbrev {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
}
.org-card-body { padding: 16px 24px; }
.org-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--green-deep); margin-bottom: 10px; }
.org-desc { font-size: 0.88rem; color: var(--text); line-height: 1.6; margin-bottom: 12px; }
.org-hq { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 8px; }
.org-membership {
    font-size: 0.82rem;
    color: var(--text-muted);
    background: var(--off-white);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    line-height: 1.5;
}
.org-card-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border-light);
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .search-bar { flex-direction: column; border-radius: var(--radius-lg); }
    .search-field { border-right: none; border-bottom: 1px solid var(--border); }
    .search-field:last-of-type { border-bottom: none; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item + .stat-item { border-left: none; border-top: 1px solid var(--border-light); }
    .profile-grid { grid-template-columns: 1fr; }
    .profile-header-inner { grid-template-columns: 1fr; }
    .how-it-works { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .register-page { grid-template-columns: 1fr; }
    .register-hero { display: none; }
    .dashboard-grid { grid-template-columns: 1fr; }
    .form-row, .form-grid-2 { grid-template-columns: 1fr; }
    .category-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }
    .dashboard-sidebar { position: static !important; }
    .stables-hub-grid { grid-template-columns: 1fr; }
    .special-stables-grid { grid-template-columns: 1fr 1fr; }
    .stable-grid { grid-template-columns: 1fr; }
    .horse-grid { grid-template-columns: 1fr; }
    .org-grid { grid-template-columns: 1fr; }
    .discipline-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .horse-filter-row { flex-direction: column; align-items: stretch; }
    .travel-region-grid { grid-template-columns: 1fr 1fr; }
    .travel-featured-grid { grid-template-columns: 1fr; }
    .travel-featured-card { grid-template-columns: 1fr; }
    .travel-grid { grid-template-columns: 1fr; }
    .pedigree-row { grid-template-columns: 1fr; }
    .pedigree-tree { grid-template-columns: 1fr; }
}
