/* ============================================================
   CORE DESIGN SYSTEM
   ============================================================ */
:root {
    --primary-gold: #C5A15B;
    --primary-gold-dark: #A58045;
    --primary-gold-light: #E8D3A8;
    --navy-dark: #0A192F;
    --navy-mid: #112240;
    --navy-text: #172A45;
    --charcoal: #2D2D2D;
    --mid-gray: #6B7280;
    --light-gray: #F5F5F7;
    --border-gray: #E5E7EB;
    --white: #FFFFFF;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius: 4px;
    --section-pad: 100px 6%;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy-dark);
}

h3 {
    font-size: 1.4rem;
    color: var(--navy-dark);
}

p {
    color: var(--mid-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

p:last-child {
    margin-bottom: 0;
}

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

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   SECTION LABEL
   ============================================================ */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-gold);
    margin-bottom: 14px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--primary-gold);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--primary-gold);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-gold);
}

.btn-primary.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: 2px solid var(--navy-dark);
    color: var(--navy-dark);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.btn-outline-dark:hover {
    background: var(--navy-dark);
    color: var(--white);
}

.btn-consult {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 44px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(197, 161, 91, 0.3);
}

.btn-consult:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 161, 91, 0.5);
    background: linear-gradient(135deg, #d4b46c 0%, var(--primary-gold) 100%);
}

.nav-consult {
    padding: 10px 24px !important;
    font-size: 0.75rem !important;
    letter-spacing: 1.5px !important;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    z-index: 1000;
    padding: 18px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

/* Nav Overlay (glassmorphism) */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 25, 47, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    z-index: 1400;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav-overlay.active {
    visibility: visible;
}

#site-header.scrolled {
    padding: 12px 6%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--navy-dark);
    letter-spacing: 2px;
    text-transform: lowercase;
    transition: var(--transition);
}

.logo-img {
    height: 65px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: var(--transition);
}

#site-header.scrolled .logo-img {
    height: 50px;
}

.logo:hover {
    color: var(--primary-gold);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

nav ul li a {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--navy-dark);
    transition: var(--transition);
    position: relative;
    padding-bottom: 4px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-gold);
}

nav ul li a:not(.btn-consult):hover::after {
    width: 100%;
}

.nav-close-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--navy-dark);
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 10;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--navy-dark);
    z-index: 2000;
    padding: 4px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 110px;
    padding-bottom: 20px;
    /* Accounts for fixed header height */
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 25, 47, 0.55) 0%,
            rgba(10, 25, 47, 0.70) 60%,
            rgba(10, 25, 47, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding: 0 5%;
}

.hero-badge {
    display: inline-block;
    background: rgba(197, 161, 91, 0.2);
    border: 1px solid rgba(197, 161, 91, 0.5);
    color: var(--primary-gold-light);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 8px 20px;
    margin-bottom: 24px;
    border-radius: 30px;
}

.hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.8rem);
    color: var(--white);
    margin-bottom: 22px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.15;
}

.hero p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: 4px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 0 30px;
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    background: var(--navy-dark);
    padding: 18px 6%;
    position: relative;
    z-index: 10;
}

.trust-bar-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 50px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.trust-item i {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
}

.about-image-container {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.about-image-container img {
    transition: transform 0.6s ease;
}

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

.about-image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-gold);
    color: var(--white);
    padding: 16px 22px;
    text-align: center;
    border-radius: var(--radius);
}

.badge-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.badge-text {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
}

.about-text-container {
    padding: 80px 8%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text-container h2 {
    margin-bottom: 24px;
}

.about-checklist {
    list-style: none;
    margin: 28px 0 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--charcoal);
    font-weight: 500;
}

.about-checklist li i {
    color: var(--primary-gold);
    margin-top: 2px;
    flex-shrink: 0;
}

/* ============================================================
   SERVICES BENTO LAYOUT
   ============================================================ */
.services {
    padding: var(--section-pad);
    background: var(--light-gray);
}

.section-head {
    max-width: 720px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-head h2 {
    margin-bottom: 20px;
}

.section-head p {
    font-size: 1.05rem;
}

/* Bento wrapper */
.services-bento {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* ── Featured Card (full-width, horizontal split) ── */
.service-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-featured:hover {
    box-shadow: var(--shadow-lg);
}

.service-featured-img {
    position: relative;
    overflow: hidden;
    min-height: 420px;
}

.service-featured-img img {
    transition: transform 0.6s ease;
}

.service-featured:hover .service-featured-img img {
    transform: scale(1.04);
}

.service-featured-body {
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-tag {
    display: inline-block;
    background: var(--primary-gold-light);
    color: var(--primary-gold-dark);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    width: fit-content;
}

.service-featured-body>i {
    font-size: 2.2rem;
    color: var(--primary-gold);
    margin-bottom: 16px;
}

.service-featured-body h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.service-featured-body>p {
    font-size: 1rem;
    margin-bottom: 24px;
}

/* Bullet list inside featured card */
.service-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
}

.service-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.93rem;
    font-weight: 500;
    color: var(--charcoal);
}

.service-bullets li i {
    color: var(--primary-gold);
    font-size: 0.8rem;
    flex-shrink: 0;
    background: var(--primary-gold-light);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Secondary Grid (5 mini cards) ── */
.services-secondary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Mini card — horizontal thumbnail + text */
.service-mini-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-mini-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.service-mini-img {
    position: relative;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-mini-img img {
    transition: transform 0.5s ease;
}

.service-mini-card:hover .service-mini-img img {
    transform: scale(1.06);
}

/* Icon overlay badge on the image */
.service-mini-overlay {
    position: absolute;
    bottom: 12px;
    left: 16px;
    background: var(--navy-dark);
    color: var(--primary-gold);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.service-mini-body {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-mini-body h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-mini-body p {
    font-size: 0.9rem;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 18px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-gold);
    transition: gap 0.3s ease, color 0.3s ease;
    margin-top: auto;
}

.service-link:hover {
    gap: 14px;
    color: var(--primary-gold-dark);
}

.service-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .service-featured {
        grid-template-columns: 1fr;
    }

    .service-featured-img {
        min-height: 300px;
    }

    .service-featured-body {
        padding: 36px 28px;
    }

    .service-featured-body h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 580px) {
    .services-secondary-grid {
        grid-template-columns: 1fr;
    }
}



/* ============================================================
   SPLIT FEATURE (Programs / Why Us)
   ============================================================ */
.split-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
}

.split-image {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.split-image img {
    transition: transform 0.6s ease;
}

.split-image:hover img {
    transform: scale(1.04);
}

.split-content {
    padding: 80px 8%;
    background: var(--navy-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content .section-label {
    color: var(--primary-gold);
}

.split-content h2 {
    color: var(--white);
    margin-bottom: 22px;
}

.split-content p {
    color: rgba(255, 255, 255, 0.75);
}

.split-features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 36px;
}

.split-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.split-feature-item>i {
    font-size: 1.6rem;
    color: var(--primary-gold);
    margin-top: 4px;
    flex-shrink: 0;
}

.split-feature-item h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 6px;
}

.split-feature-item p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section {
    padding: var(--section-pad);
    background: var(--white);
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-top: 0;
    position: relative;
}

/* Connecting dashed line */
.process-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-gold-light), transparent);
    pointer-events: none;
}

.process-step {
    background: var(--light-gray);
    padding: 45px 30px;
    border-radius: var(--radius);
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.process-num {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 900;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
}

.process-step i {
    font-size: 2.2rem;
    color: var(--primary-gold);
    margin-bottom: 18px;
    display: block;
}

.process-step h3 {
    margin-bottom: 14px;
}

.process-step p {
    font-size: 0.93rem;
}

/* ============================================================
   BREED SECTION (alternating image+text)
   ============================================================ */


.breed-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
    align-items: stretch;
}

.breed-row.reverse .breed-img {
    order: 2;
}

.breed-row.reverse .breed-content {
    order: 1;
}

.breed-img {
    overflow: hidden;
}

.breed-img img {
    transition: transform 0.6s ease;
}

.breed-img:hover img {
    transform: scale(1.04);
}

.breed-content {
    padding: 80px 8%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.breed-row.reverse .breed-content {
    background: var(--light-gray);
}

.breed-content h2 {
    margin-bottom: 22px;
}

.breed-content p {
    margin-bottom: 22px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    padding: var(--section-pad);
    background: var(--navy-dark);
}

.testimonials .section-head .section-label {
    color: var(--primary-gold);
}

.testimonials .section-head h2 {
    color: var(--white);
}

.testimonials .section-head p {
    color: rgba(255, 255, 255, 0.65);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 36px 32px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-6px);
    border-color: rgba(197, 161, 91, 0.4);
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.97rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-gold);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
    padding: var(--section-pad);
    background: var(--light-gray);
}

.faq-inner {
    max-width: 860px;
    margin: 0 auto;
}

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

.faq-header h2 {
    margin-bottom: 18px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-dark);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary-gold);
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 28px 24px;
    font-size: 0.97rem;
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
    padding: var(--section-pad);
    background: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-label {
    margin-bottom: 12px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info>p {
    color: var(--mid-gray);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item>i {
    font-size: 1.2rem;
    color: var(--primary-gold);
    margin-top: 4px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.contact-item h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-gold);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.97rem;
    color: var(--charcoal);
    margin: 0;
}

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

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

/* Form */
.contact-form-container {
    background: var(--light-gray);
    padding: 50px;
    border-radius: var(--radius);
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--navy-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-gray);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--charcoal);
    border-radius: var(--radius);
    transition: border-color 0.3s;
    outline: none;
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-note {
    font-size: 0.82rem;
    color: var(--mid-gray);
    text-align: center;
    margin-top: -8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    padding: 80px 6%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 28px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background: rgba(197, 161, 91, 0.1);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-gold);
}

.city-links li a {
    font-size: 0.85rem;
}

.footer-bottom {
    padding: 22px 6%;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
    opacity: 1;
    /* transform: translateY(0); */
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    :root {
        --section-pad: 80px 5%;
    }

    .about,
    .split-feature,
    .breed-row {
        grid-template-columns: 1fr;
    }

    .about-image-container,
    .split-image,
    .breed-img {
        min-height: 400px;
    }

    .breed-row.reverse .breed-img,
    .breed-row.reverse .breed-content {
        order: unset;
    }

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

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .process-grid::before {
        display: none;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
    :root {
        --section-pad: 64px 5%;
    }

    /* Header */
    #site-header {
        padding: 14px 5%;
    }

    .hamburger {
        display: block;
    }

    nav {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: min(340px, 88%);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: -12px 0 45px rgba(0, 0, 0, 0.15);
        z-index: 2500;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 100px 30px 40px;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    nav.active {
        transform: translateX(0);
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        width: 100%;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        font-size: 1.05rem;
        font-weight: 700;
        display: block;
        padding: 12px 0;
        width: 100%;
        color: var(--navy-dark);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    nav ul li a:hover {
        color: var(--primary-gold);
        padding-left: 8px;
    }

    nav ul li a::after {
        display: none;
    }

    /* Consult button in mobile menu */
    .nav-consult {
        margin: 32px 0 0 !important;
        width: 100%;
        justify-content: center;
        padding: 16px 20px !important;
        font-size: 0.9rem !important;
    }

    .nav-close-btn {
        display: block;
    }

    /* Hero */
    .hero {
        padding-top: 140px;
        /* More padding for mobile overlap */
    }

    .hero-stats {
        padding: 16px 20px;
    }

    .stat {
        padding: 0 16px;
    }

    .stat-num {
        font-size: 1.5rem;
    }

    /* About */
    .about-text-container {
        padding: 60px 5%;
    }

    /* Split */
    .split-content {
        padding: 60px 5%;
    }

    /* Breed */
    .breed-content {
        padding: 60px 5%;
    }

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 30px 24px;
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 5%;
    }

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

    /* FAQ */
    .faq-question {
        padding: 18px 20px;
        font-size: 0.93rem;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.68rem;
    }

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

    .stat-divider {
        display: none;
    }

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

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

}

/* ============================================================
   CTA SECTION (Pre-Footer)
   ============================================================ */
.cta-section {
    padding: 120px 6%;
    background: linear-gradient(rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.85)),
        url('images/hero-image.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

.cta-inner h2 {
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 24px;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 48px;
    line-height: 1.6;
}

/* ── Mobile Nav Consult Adjustment ── */
@media (max-width: 1024px) {
    .nav-consult {
        display: block;
        width: fit-content;
        margin: 24px auto 0;
        padding: 14px 36px !important;
        font-size: 0.85rem !important;
    }
}