/* ========================================================
   Horse Riding DIVISION – Elite Premium Stylesheet
   Theme: Black | Gold (#C9A848) | Royal Blue (#1B3A6B) | White
   ======================================================== */

:root {
    --eq-black: #0A0A0A;
    --eq-dark: #111111;
    --eq-dark2: #1A1A1A;
    --eq-gold: #C9A848;
    --eq-gold-light: #E5C76A;
    --eq-gold-dark: #9A7A2E;
    --eq-royal: #1B3A6B;
    --eq-royal-dark: #0F2347;
    --eq-white: #FFFFFF;
    --eq-cream: #F5EDD8;
    --eq-gray: #888888;
}

/* ── Horse Riding Hero ── */
.eq-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--eq-black);
    overflow: hidden;
}

.eq-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/equestrian/equestrian-hero.jpg');
    background-size: cover;
    background-position: center 30%;
}

.eq-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(10, 10, 10, .97) 0%, rgba(10, 10, 10, .8) 50%, rgba(27, 58, 107, .3) 100%);
}

.eq-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.eq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--eq-gold);
    color: var(--eq-gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 22px;
}

.eq-badge i {
    font-size: .7em;
}

.eq-hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.8rem, 7vw, 6rem);
    color: var(--eq-white);
    line-height: 1.05;
    margin-bottom: 16px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, .5);
    letter-spacing: 2px;
}

.eq-hero-title span {
    color: var(--eq-gold);
}

.eq-hero-sub {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .72);
    margin-bottom: 40px;
    max-width: 560px;
    line-height: 1.8;
}

.eq-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--eq-gold), var(--eq-gold-dark));
    color: var(--eq-black);
    padding: 14px 36px;
    font-weight: 800;
    font-size: .93rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all .3s ease;
    border: none;
}

.eq-btn:hover {
    background: linear-gradient(135deg, var(--eq-gold-light), var(--eq-gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 168, 72, .35);
}

.eq-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--eq-white);
    padding: 14px 36px;
    font-weight: 600;
    font-size: .93rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1.5px solid rgba(255, 255, 255, .3);
    border-radius: 4px;
    transition: all .3s ease;
}

.eq-btn-outline:hover {
    border-color: var(--eq-gold);
    color: var(--eq-gold);
}

.eq-hero-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 40px 0 32px;
}

.eq-hero-divider::before,
.eq-hero-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--eq-gold), transparent);
}

.eq-hero-divider span {
    color: var(--eq-gold);
    font-size: 1.2rem;
}

/* ── Gold Stats Row ── */
.eq-stats-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding: 30px 0 0;
}

.eq-stat {
    text-align: center;
}

.eq-stat-num {
    font-family: 'Cinzel', serif;
    font-size: 2.6rem;
    color: var(--eq-gold);
    line-height: 1;
}

.eq-stat-lbl {
    font-size: .72rem;
    color: rgba(255, 255, 255, .45);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ── Gold Scrolling Line ── */
.eq-marquee {
    background: var(--eq-gold);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.eq-marquee-inner {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-family: 'Cinzel', serif;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--eq-black);
    text-transform: uppercase;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ── Horse Riding Sections ── */
.eq-section {
    background: var(--eq-dark);
    padding: 90px 0;
}

.eq-section-alt {
    background: var(--eq-black);
    padding: 90px 0;
}

.eq-section-royal {
    background: var(--eq-royal-dark);
    padding: 90px 0;
}

.eq-tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--eq-gold);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.eq-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--eq-white);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.eq-title span {
    color: var(--eq-gold);
}

.eq-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: .98rem;
    color: var(--eq-gray);
    max-width: 580px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.eq-gold-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, var(--eq-gold), transparent);
    margin-bottom: 24px;
}

/* ── Programme Cards ── */
.eq-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.eq-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(201, 168, 72, .2);
    border-radius: 12px;
    padding: 34px;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.eq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--eq-gold), transparent);
}

.eq-card:hover {
    border-color: var(--eq-gold);
    transform: translateY(-6px);
    background: rgba(201, 168, 72, .05);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .4);
}

.eq-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1.5px solid var(--eq-gold);
    color: var(--eq-gold);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.eq-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--eq-white);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

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

.eq-card-tag {
    display: inline-block;
    margin-top: 14px;
    background: rgba(201, 168, 72, .1);
    border: 1px solid rgba(201, 168, 72, .3);
    color: var(--eq-gold);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
}

/* ── Horse Riding Gallery ── */
.eq-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.eq-gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.eq-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    filter: sepia(.15) brightness(.85);
}

.eq-gallery-item:hover img {
    transform: scale(1.1);
    filter: none;
}

.eq-gallery-item .eq-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10, 10, 10, .9));
    color: var(--eq-white);
    padding: 20px 14px 12px;
    font-family: 'Cinzel', serif;
    font-size: .8rem;
    letter-spacing: 1px;
    transform: translateY(100%);
    transition: transform .3s ease;
}

.eq-gallery-item:hover .eq-gallery-caption {
    transform: translateY(0);
}

/* ── Feature Comparison ── */
.eq-feature-list {
    display: grid;
    gap: 14px;
}

.eq-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, .03);
    border-left: 3px solid var(--eq-gold);
    border-radius: 0 8px 8px 0;
}

.eq-feature-icon {
    color: var(--eq-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.eq-feature h4 {
    color: var(--eq-white);
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.eq-feature p {
    font-size: .83rem;
    color: var(--eq-gray);
}

/* ── Two Col Horse Riding ── */
.eq-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.eq-img {
    border-radius: 12px;
    overflow: hidden;
    height: auto;
    aspect-ratio: 1/1;
    position: relative;
    background: var(--eq-dark2);
}

.eq-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.eq-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(201, 168, 72, .15), transparent);
}

.eq-img-frame {
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(201, 168, 72, .3);
    border-radius: 8px;
    pointer-events: none;
    z-index: 1;
}

/* ── CTA Banner ── */
.eq-cta {
    background: linear-gradient(135deg, var(--eq-royal-dark) 0%, var(--eq-black) 50%, var(--eq-royal-dark) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.eq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--eq-gold), transparent);
}

.eq-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--eq-gold), transparent);
}

.eq-cta-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(201, 168, 72, .05) 1px, transparent 1px);
    background-size: 30px 30px;
}

@media (max-width: 768px) {
    .eq-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .eq-img {
        height: 300px;
    }

    .eq-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .eq-stats-row {
        gap: 24px;
    }
}

/* ── Horse Riding Video Hero Background ── */
.eq-hero-bg-video {
    position: absolute;
    inset: 0;
}

.eq-hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ── Horse Riding Video Gallery Item ── */
.eq-video-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--eq-radius);
    aspect-ratio: 9/16;
    background: #000;
    cursor: pointer;
    transition: transform .35s ease, box-shadow .35s ease;
}

.eq-video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.eq-video-item:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(201, 168, 72, .25);
}

.eq-video-item .eq-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .85) 0%, transparent 100%);
    color: var(--eq-gold);
    padding: 20px 14px 12px;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════
   Pilates With Horses – Special Event Section
   ═══════════════════════════════════════════════════ */

.pwh-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0a2e 0%, #0d0d1a 40%, #1a0a2e 100%);
    overflow: hidden;
}

/* Decorative background orbs */
.pwh-bg-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 40% at 10% 20%, rgba(168, 85, 247, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 35% at 90% 80%, rgba(236, 72, 153, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 50% 50%, rgba(201, 168, 72, 0.06) 0%, transparent 60%);
}

/* ── Header ── */
.pwh-header {
    text-align: center;
    margin-bottom: 70px;
}

.pwh-sparkle-row {
    font-size: .85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.pwh-sparkle-row span {
    color: #c084fc;
}

.pwh-badge-tag {
    display: inline-block;
    background: rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(192, 132, 252, 0.3);
    color: #c084fc;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 8px 22px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.pwh-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 0 0 60px rgba(168, 85, 247, 0.4);
}

.pwh-title span {
    background: linear-gradient(135deg, #c084fc, #f472b6, #C9A848);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pwh-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
}

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

@media (max-width: 768px) {
    .pwh-mosaic-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .pwh-mosaic-grid {
        grid-template-columns: 1fr;
    }
    .pwh-mosaic-grid > div {
        grid-row: auto !important;
        height: 250px !important;
    }
}

.pwh-dates-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 12px 32px;
    border-radius: 100px;
    margin-bottom: 12px;
    box-shadow: 0 8px 32px rgba(147, 51, 234, 0.4);
}

.pwh-limited {
    font-size: .85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    letter-spacing: 1px;
}

/* ── Two Column Layout ── */
.pwh-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* ── Experience Box ── */
.pwh-experience-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(192, 132, 252, 0.2);
    border-radius: 20px;
    padding: 36px;
    backdrop-filter: blur(10px);
}

.pwh-experience-header {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(192, 132, 252, 0.2);
}

.pwh-experience-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: exp-counter;
}

.pwh-experience-list li {
    counter-increment: exp-counter;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    font-size: .93rem;
    color: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 500;
}

.pwh-experience-list li:last-child {
    border-bottom: none;
}

.pwh-experience-list li::before {
    content: counter(exp-counter);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.pwh-experience-list li i {
    color: #c084fc;
    font-size: 1rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

/* ── Details Box ── */
.pwh-details-box {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pwh-workshop-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(192, 132, 252, 0.25);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
}

.pwh-workshop-title {
    text-align: center;
    font-family: 'Cinzel', serif;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pwh-divider-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.4);
    font-size: .82rem;
    text-align: center;
    justify-content: center;
}

.pwh-divider-line::before,
.pwh-divider-line::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(192, 132, 252, 0.25);
}

.pwh-divider-line span {
    white-space: nowrap;
    color: #c084fc;
    font-weight: 600;
}

/* ── Slots ── */
.pwh-slots-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.pwh-slot-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(147, 51, 234, 0.12);
    border: 1px solid rgba(192, 132, 252, 0.25);
    border-radius: 12px;
    padding: 16px 20px;
    transition: all .3s ease;
}

.pwh-slot-item:hover {
    background: rgba(147, 51, 234, 0.2);
    border-color: rgba(192, 132, 252, 0.5);
    transform: translateX(4px);
}

.pwh-slot-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}

.pwh-slot-name {
    font-weight: 700;
    color: #fff;
    font-size: .95rem;
    margin-bottom: 2px;
}

.pwh-slot-time {
    color: #c084fc;
    font-size: .85rem;
    font-weight: 600;
}

/* ── Venue Card ── */
.pwh-venue-card {
    border-top: 1px solid rgba(201, 168, 72, 0.3);
    padding-top: 20px;
    margin-top: 8px;
}

.pwh-venue-title {
    font-weight: 700;
    color: #C9A848;
    font-size: .95rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pwh-venue-address {
    font-size: .82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 0;
}

/* ── CTAs ── */
.pwh-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    color: #fff;
    padding: 16px 28px;
    font-weight: 800;
    font-size: .9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 10px;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 8px 28px rgba(147, 51, 234, 0.35);
}

.pwh-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(147, 51, 234, 0.5);
}

.pwh-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    padding: 14px 28px;
    font-size: .9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    text-decoration: none;
    transition: all .3s ease;
}

.pwh-whatsapp-btn:hover {
    border-color: #25d366;
    color: #25d366;
    background: rgba(37, 211, 102, 0.05);
}

.pwh-whatsapp-btn i {
    font-size: 1.1rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .pwh-two-col {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pwh-title {
        font-size: clamp(2.2rem, 10vw, 4rem);
    }
}

@media (max-width: 480px) {
    .eq-gallery {
        grid-template-columns: 1fr;
    }

    .eq-stats-row {
        justify-content: center;
    }

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

    .pwh-dates-banner {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .pwh-slot-item {
        flex-direction: column;
        text-align: center;
        padding: 24px 16px;
    }
}