/* ===== GOLDEN HEART RESIDENTIAL CARE ===== */
:root {
    --gold: #D4A017;
    --gold-light: #F0C850;
    --orange: #E67E22;
    --red: #C0392B;
    --black: #0A0A0A;
    --dark: #111;
    --dark2: #1A1A1A;
    --white: #fff;
    --light: #FAFAFA;
    --gray: #888;
    --font-head: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', 'Helvetica Neue', sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 8px 32px rgba(0, 0, 0, .18);
    --transition: all .4s cubic-bezier(.4, 0, .2, 1)
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

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

body.nav-open {
    overflow: hidden
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-head);
    font-weight: 600;
    line-height: 1.25
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition)
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

ul {
    list-style: none
}

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

section {
    padding: 100px 0
}

/* === PRELOADER === */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s
}

#preloader.hidden {
    opacity: 0;
    pointer-events: none
}

.loader-heart img {
    width: 80px;
    animation: pulse 1s infinite
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.15)
    }
}

/* === HEADER === */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition)
}

#main-header.scrolled {
    background: rgba(10, 10, 10, .92);
    backdrop-filter: blur(18px);
    padding: 10px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, .3)
}

#main-header.header-hidden {
    transform: translateY(-100%)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain
}

.logo-name {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: #ffb900;
    display: block;
    line-height: 1.1
}

.logo-sub {
    font-size: .8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-left: 5px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px
}

.nav-list a {
    color: rgba(255, 255, 255, .8);
    font-size: .9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
    transition: var(--transition)
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--gold)
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--orange)) !important;
    color: var(--white) !important;
    border-radius: 30px !important;
    padding: 10px 24px !important;
    font-weight: 600 !important
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, .4)
}

.nav-cta.active::after {
    display: none !important
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001
}

.hamburger .bar {
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 4px;
    transition: var(--transition)
}

.hamburger.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.hamburger.open .bar:nth-child(2) {
    opacity: 0
}

.hamburger.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black)
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 800px;
    padding: 0 24px
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 160, 23, .15);
    border: 1px solid rgba(212, 160, 23, .35);
    color: var(--gold);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(8px)
}

.hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    color: var(--white);
    margin-bottom: 20px
}

.hero h1 .gold {
    color: var(--gold)
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, .85);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 1
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    will-change: opacity, transform
}

.hero-slide.active {
    opacity: 1
}

.hero-slide.zoom-in {
    animation: kenburns-in 8s ease-out forwards
}

.hero-slide.zoom-out {
    animation: kenburns-out 8s ease-out forwards
}

.hero-slide.pan-left {
    animation: kenburns-pan-left 8s ease-out forwards
}

.hero-slide.pan-right {
    animation: kenburns-pan-right 8s ease-out forwards
}

@keyframes kenburns-in {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.12)
    }
}

@keyframes kenburns-out {
    0% {
        transform: scale(1.15)
    }

    100% {
        transform: scale(1)
    }
}

@keyframes kenburns-pan-left {
    0% {
        transform: scale(1.08) translateX(1%)
    }

    100% {
        transform: scale(1.12) translateX(-1%)
    }
}

@keyframes kenburns-pan-right {
    0% {
        transform: scale(1.08) translateX(-1%)
    }

    100% {
        transform: scale(1.12) translateX(1%)
    }
}

/* Multi-layer Overlay System */
.hero-overlay-base {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0, 0, 0, .6)
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(135deg, rgba(192, 57, 43, .15) 0%, transparent 50%, rgba(212, 160, 23, .2) 100%);
    mix-blend-mode: color-dodge;
}

.hero-overlay-vignette {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, .8) 100%)
}

/* Aurora Glow Orbs */
.hero-aurora {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none
}

.aurora-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .4;
    animation: aurora-float 20s infinite alternate ease-in-out;
    mix-blend-mode: screen;
}

.aurora-orb-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: rgba(212, 160, 23, .3)
}

.aurora-orb-2 {
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: rgba(230, 126, 34, .2);
    animation-delay: -5s
}

.aurora-orb-3 {
    top: 30%;
    left: 40%;
    width: 40vw;
    height: 40vw;
    background: rgba(192, 57, 43, .2);
    animation-delay: -10s
}

@keyframes aurora-float {
    0% {
        transform: translate(0, 0) scale(1)
    }

    100% {
        transform: translate(10%, 10%) scale(1.2)
    }
}

/* Light Rays */
.hero-rays {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: repeating-linear-gradient(90deg, transparent, transparent 10%, rgba(255, 255, 255, .02) 10%, rgba(255, 255, 255, .02) 12%);
    animation: rays-pan 60s linear infinite;
    pointer-events: none
}

@keyframes rays-pan {
    0% {
        background-position: 0 0
    }

    100% {
        background-position: 200vw 0
    }
}

/* Decorative Corner Frame */
.hero-frame {
    position: absolute;
    inset: 40px;
    z-index: 3;
    pointer-events: none;
    border: 1px solid rgba(212, 160, 23, .15)
}

.hero-frame-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--gold)
}

.hero-frame-tl {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none
}

.hero-frame-br {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none
}

/* Hero Separator */
.hero-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    opacity: 0;
    animation: heroTitleIn 1s ease-out .5s forwards
}

.hero-separator span {
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent)
}

.hero-separator i {
    color: var(--gold);
    font-size: .8rem
}

/* Glow Button */
.btn-glow {
    position: relative;
    box-shadow: 0 0 20px rgba(212, 160, 23, .4)
}

.btn-glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    filter: blur(10px);
    z-index: -1;
    opacity: 0;
    transition: opacity .4s
}

.btn-glow:hover::after {
    opacity: .8
}

/* Bottom Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 4;
    pointer-events: none
}

.hero-wave svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    transform: scaleX(-1)
}

/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle linear infinite
}

@keyframes float-particle {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0)
    }

    10% {
        opacity: .6
    }

    90% {
        opacity: .4
    }

    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1)
    }
}

/* Slide Indicators */
.hero-indicators {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .4);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative
}

.hero-dot.active {
    border-color: var(--gold);
    background: var(--gold);
    box-shadow: 0 0 12px rgba(212, 160, 23, .5)
}

.hero-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: var(--transition)
}

.hero-dot.active::after {
    border-color: rgba(212, 160, 23, .3)
}

/* Hero title entrance animation */
.hero-title-animated {
    opacity: 0;
    transform: translateY(30px);
    animation: heroTitleIn 1s ease-out .3s forwards
}

@keyframes heroTitleIn {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* Page Hero (shorter) — keeps old overlay for inner pages */
.page-hero {
    min-height: 55vh
}

.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center
}

.page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, .75) 0%, rgba(10, 10, 10, .5) 50%, rgba(10, 10, 10, .8) 100%)
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: var(--font-body)
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(212, 160, 23, .3)
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 160, 23, .45)
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, .4)
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px)
}

.btn-dark {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--white)
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 160, 23, .35)
}

/* === SECTION HEADERS === */
.section-header {
    text-align: center;
    margin-bottom: 60px
}

.section-label {
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--dark2);
    margin-bottom: 16px
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8
}

.section-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    margin: 16px auto 0;
    border-radius: 3px
}

/* Dark section variants */
.dark-section {
    background: var(--black);
    color: var(--white)
}

.dark-section .section-header h2 {
    color: var(--white)
}

.dark-section .section-header p {
    color: rgba(255, 255, 255, .65)
}

/* === STATS BAR === */
.stats-bar {
    background: linear-gradient(135deg, var(--dark), #1a1a1a);
    padding: 0;
    position: relative;
    z-index: 5
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.stat-item {
    padding: 40px 20px;
    text-align: center;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, .08)
}

.stat-item:last-child {
    border-right: none
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 12px
}

.stat-num {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px
}

.stat-label {
    color: var(--gray);
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 1px
}

/* === CARDS === */
.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .06)
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .15)
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    transform: scaleX(0);
    transition: transform .4s;
    transform-origin: left
}

.card:hover::before {
    transform: scaleX(1)
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212, 160, 23, .12), rgba(230, 126, 34, .08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 20px
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark2)
}

.card p {
    color: var(--gray);
    font-size: .95rem;
    line-height: 1.7
}

/* Dark cards */
.dark-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px)
}

.dark-card:hover {
    border-color: rgba(212, 160, 23, .25);
    background: rgba(255, 255, 255, .07)
}

.dark-card h3 {
    color: var(--white)
}

.dark-card p {
    color: rgba(255, 255, 255, .6)
}

/* === GRIDS === */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

/* === IMAGE BLOCKS === */
.img-block {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow)
}

.img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

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

.img-block::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    border: 1px solid rgba(212, 160, 23, .2)
}

.img-accent {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 3px solid var(--gold);
    border-radius: var(--radius);
    z-index: -1
}

.img-accent-tl {
    top: -15px;
    left: -15px
}

.img-accent-br {
    bottom: -15px;
    right: -15px
}

/* === CONTENT SECTIONS === */
.content-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 20px
}

.content-text .gold-text {
    color: var(--gold)
}

.content-text p {
    color: #555;
    line-height: 1.85;
    margin-bottom: 16px;
    font-size: 1rem
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, var(--dark), #1a1a1a);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 160, 23, .1), transparent 70%);
    border-radius: 50%
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    margin-bottom: 16px
}

.cta-section p {
    color: rgba(255, 255, 255, .65);
    max-width: 550px;
    margin: 0 auto 32px;
    font-size: 1.05rem
}

/* === QUOTE === */
.quote-section {
    background: linear-gradient(135deg, rgba(212, 160, 23, .06), rgba(230, 126, 34, .04));
    padding: 80px 0;
    text-align: center
}

.quote-text {
    font-family: var(--font-head);
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    font-style: italic;
    color: var(--dark2);
    max-width: 750px;
    margin: 0 auto 20px;
    line-height: 1.7;
    position: relative;
    padding: 0 40px
}

.quote-text::before {
    content: '\201C';
    font-size: 5rem;
    color: var(--gold);
    position: absolute;
    top: -30px;
    left: 0;
    line-height: 1;
    font-family: var(--font-head)
}

.quote-author {
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem
}

.quote-role {
    color: var(--gray);
    font-size: .9rem
}

/* === SERVICES LIST === */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition)
}

.service-list li:hover {
    background: rgba(212, 160, 23, .06)
}

.service-list li i {
    color: var(--gold);
    font-size: 1.1rem;
    width: 24px;
    text-align: center
}

/* === WHO WE SERVE (Tags) === */
.serve-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px
}

.serve-tag {
    background: linear-gradient(135deg, rgba(212, 160, 23, .1), rgba(230, 126, 34, .06));
    border: 1px solid rgba(212, 160, 23, .2);
    color: var(--dark2);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 500;
    transition: var(--transition)
}

.serve-tag:hover {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--white);
    transform: translateY(-2px)
}

/* === TIMELINE === */
.timeline {
    position: relative;
    padding-left: 40px
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold), var(--orange))
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 24px
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--gold)
}

.timeline-item h4 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: var(--dark2)
}

.timeline-item p {
    color: #555;
    font-size: .95rem
}

/* === FAQ === */
.faq-item {
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition)
}

.faq-item:hover {
    border-color: rgba(212, 160, 23, .25)
}

.faq-item.open {
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(212, 160, 23, .1)
}

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

.faq-question i {
    color: var(--gold);
    transition: transform .3s;
    font-size: .9rem
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease
}

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

.faq-answer p {
    padding: 0 24px 20px;
    color: #555;
    line-height: 1.7
}

/* === VETERANS BANNER === */
.vet-banner {
    background: linear-gradient(135deg, var(--dark), #1a1a1a);
    border-radius: var(--radius);
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 48px;
    position: relative;
    overflow: hidden
}

.vet-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 160, 23, .08), transparent);
    border-radius: 0 var(--radius) var(--radius) 0
}

.vet-banner-text {
    flex: 1
}

.vet-banner-text h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 12px
}

.vet-banner-text p {
    color: rgba(255, 255, 255, .65);
    margin-bottom: 24px
}

/* === CONTACT FORM === */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.form-group {
    position: relative;
    margin-bottom: 4px
}

.form-group.full {
    grid-column: 1/-1
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: .85rem;
    color: var(--dark2);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(0, 0, 0, .08);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: .95rem;
    transition: var(--transition);
    background: var(--light)
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 4px rgba(212, 160, 23, .1);
    background: var(--white)
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--red)
}

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

.contact-info-card {
    background: var(--dark);
    border-radius: var(--radius);
    padding: 48px 40px;
    color: var(--white);
    height: 100%
}

.contact-info-card h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 24px
}

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

.contact-info-item .ci-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(212, 160, 23, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0
}

.contact-info-item h4 {
    font-size: .95rem;
    margin-bottom: 4px
}

.contact-info-item p,
.contact-info-item a {
    color: rgba(255, 255, 255, .65);
    font-size: .9rem
}

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

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 40px;
    box-shadow: var(--shadow)
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0
}

/* === SUCCESS MESSAGE === */
.alert-success {
    background: rgba(39, 174, 96, .1);
    border: 1px solid rgba(39, 174, 96, .3);
    color: #27ae60;
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-weight: 500
}

/* === FOOTER === */
#main-footer {
    background: var(--black);
    color: rgba(255, 255, 255, .7);
    padding-top: 80px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px
}

.footer-logo {
    width: 60px;
    margin-bottom: 16px
}

.footer-tagline {
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, .5)
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    transition: var(--transition)
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px)
}

#main-footer h4 {
    font-family: var(--font-head);
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px
}

#main-footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px
}

.footer-links ul li,
.footer-contact ul li,
.footer-hours ul li {
    margin-bottom: 10px
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, .5);
    font-size: .9rem;
    transition: var(--transition)
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold);
    padding-left: 4px
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem
}

.footer-contact li i {
    color: var(--gold);
    width: 16px;
    font-size: .85rem
}

.accept-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    color: rgba(255, 255, 255, .5)
}

.accept-list li i {
    color: var(--gold);
    font-size: .8rem
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    margin-top: 50px;
    padding: 24px 0
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px
}

.footer-bottom p {
    font-size: .82rem;
    color: rgba(255, 255, 255, .35)
}

/* === BACK TO TOP === */
#back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 160, 23, .3);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    font-size: .9rem
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible
}

#back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(212, 160, 23, .5)
}

/* === ANIMATIONS === */
.anim-fade,
.anim-slide-up,
.anim-slide-left,
.anim-slide-right,
.anim-scale {
    opacity: 0;
    transition: all .7s cubic-bezier(.4, 0, .2, 1)
}

.anim-slide-up {
    transform: translateY(40px)
}

.anim-slide-left {
    transform: translateX(-40px)
}

.anim-slide-right {
    transform: translateX(40px)
}

.anim-scale {
    transform: scale(.92)
}

.anim-fade.visible,
.anim-slide-up.visible,
.anim-slide-left.visible,
.anim-slide-right.visible,
.anim-scale.visible {
    opacity: 1;
    transform: none
}

.stagger-children>* {
    opacity: 0;
    transform: translateY(20px);
    transition: all .5s cubic-bezier(.4, 0, .2, 1)
}

.stagger-children>*.visible {
    opacity: 1;
    transform: none
}

/* === RESPONSIVE === */
@media(max-width:1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .vet-banner {
        flex-direction: column;
        padding: 40px
    }
}

@media(max-width:768px) {
    section {
        padding: 70px 0
    }

    .hamburger {
        display: flex
    }

    #main-nav {
        position: fixed;
        inset: 0;
        background: rgba(10, 10, 10, .97);
        backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform .4s cubic-bezier(.4, 0, .2, 1)
    }

    #main-nav.open {
        transform: translateX(0)
    }

    .nav-list {
        flex-direction: column;
        gap: 8px
    }

    .nav-list a {
        font-size: 1.3rem;
        padding: 14px 24px
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr
    }

    .form-grid {
        grid-template-columns: 1fr
    }

    .hero h1 {
        font-size: 2rem
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr
    }

    .stat-item {
        padding: 24px 12px
    }
}

@media(max-width:480px) {
    .hero-btns {
        flex-direction: column;
        align-items: center
    }

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

    .stat-num {
        font-size: 1.6rem
    }

    /*****Manou ******/

    .logo-name {
        font-size: 1.5rem;
    }

    .logo-sub {
        font-size: .8rem;
        margin-left: 0px;
    }

    .logo-img {
        width: 37px;
        height: 37px;
    }

    .hero-content {
        padding-top: 30px;
    }
}