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

html {
    scroll-behavior: smooth
}

body {
    font-family: Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #0a0a0a;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

:root {
    --primary: #B91C1C;
    --primary-hover: #991B1B;
    --foreground: #0A0A0A;
    --background: #FFFFFF;
    --muted: #F5F5F5;
    --muted-foreground: #737373;
    --border: #E5E5E5;
    --white: #FFFFFF;
    --black: #0A0A0A;
    --font-heading: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    --container-max: 1280px;
    --container-padding: 24px
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
    line-height: 1.1
}
.mobile-book-now:hover {
    color: white;
}
h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem)
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem)
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem)
}
.btn-check:focus+.btn-primary, .btn-primary:focus {
    color: #fff;
    background-color: #b91c1c !important;
    border-color: #b91c1c !important;
    box-shadow: 0 0 0 .25rem rgb(185 28 28) !important;
}
p {
    font-family: var(--font-body);
    line-height: 1.7
}

a {
    text-decoration: none;
    color: inherit;
    transition: color .2s ease
}

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

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding)
}

.text-primary {
    color: var(--primary) !important;
}

.text-muted {
    color: var(--muted-foreground)
}

.text-white {
    color: var(--white)
}

.bg-primary {
    background-color: var(--primary)
}

.bg-muted {
    background-color: var(--muted)
}
.bg-dark {
    background-color: var(--foreground)
}

.bg-white {
    background-color: var(--white)
}

.uppercase {
    text-transform: uppercase
}

.text-center {
    text-align: center
}

.tracking-wide {
    letter-spacing: .1em
}

.tracking-wider {
    letter-spacing: .15em
}

.font-semibold {
    font-weight: 600
}

.font-bold {
    font-weight: 700
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    transition: all .3s ease
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white)
}

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

.btn-dark {
    background-color: #404040;
    color: var(--white)
}

.btn-dark:hover {
    background-color: #525252
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white)
}

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

.btn-white {
    background-color: var(--white);
    color: var(--primary)
}

.btn-white:hover {
    background-color: #f5f5f5
}

.btn-lg {
    padding: 10px 25px;
    font-size: 15px
}

.mobile-book-now {
    display: none
}

.top-bar {
    background-color: var(--foreground);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px
}

.top-bar a:hover {
    color: var(--primary)
}

.header {
    position: fixed;
    top: 42px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: all .3s ease
}

.header.scrolled {
    top: 0;
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1)
}

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

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

.header .logo img {
    width: auto;
    height: 70px
}

.header .logo img:nth-child(2) {
    display: none
}

.header.scrolled .logo img:first-child {
    display: none
}

.header.scrolled .logo img:nth-child(2) {
    display: block
}

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

.nav a {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .05em;
    color: var(--white);
    transition: color .2s ease
}

.header.scrolled .nav a {
    color: var(--foreground)
}

.nav a:hover {
    color: var(--primary)
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px
}

.mobile-menu-btn {
    display: none;
    background: 0 0;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--white)
}

.header.scrolled .mobile-menu-btn {
    color: #b91c1c;
}

.hero {
    position: relative;
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
    overflow: hidden
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, .85), rgba(0, 0, 0, .7), rgba(0, 0, 0, .5))
}

.hero-overlay-bottom {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent, transparent)
}

.hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 0
}

.hero-inner {
    max-width: 900px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.hero-badge-divider {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, .4);
    border-radius: 50%
}

.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 50px
}

.hero h1 span {
    display: block;
    margin-top: 8px
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, .85);
    max-width: 640px;
    margin-bottom: 32px;
    line-height: 1.7
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-bottom: 32px
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white)
}

.hero-feature-icon {
    width: 36px;
    height: 36px;
    background: rgba(185, 28, 28, .2);
    display: flex;
    align-items: center;
    justify-content: center
}
.hero-features.hero-features-top span{
    font-size: 20px;}
.hero-feature span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .05em;
}

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

.hero-stats {
    position: relative;
    z-index: 10;
    background: var(--white)
}

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

.hero-stat {
    padding: 24px 16px;
    text-align: center;
    border-right: 1px solid var(--border)
}

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

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px
}

.hero-stat-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted-foreground)
}

.why-section {
    padding: 80px 0 100px;
    background: var(--white)
}

.section-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--primary);
    margin-bottom: 16px
}

.section-header {
    text-align: center;
    margin-bottom: 56px
}

.section-header h2 {
    margin-bottom: 20px;
    font-size: 43px;
    max-width: 800px;
    margin: 0 auto 20px auto
}

.section-header p {
    font-size: 18px;
    color: var(--muted-foreground);
    max-width: 768px;
    margin: 0 auto
}

.why-box {
    background: var(--foreground);
    color: var(--white);
    padding: 48px
}

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

.why-item {
    position: relative;
    padding-left: 24px
}

.why-item:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, .2)
}

.why-item:first-child {
    padding-left: 0
}

.why-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px
}

.why-item h3 {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.3;
    height: 40px
}

.why-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 16px;
    line-height: 1.6
}

.why-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--primary)
}

.location-callout {
    margin-top: 32px;
    background: var(--muted);
    border: 1px solid var(--border);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px
}

.location-callout-content {
    flex: 1
}

.location-callout h3 {
    font-size: 24px;
    margin-bottom: 12px
}

.location-callout p {
    color: var(--muted-foreground)
}

.location-stats {
    display: flex;
    gap: 40px
}

.location-stat {
    text-align: center
}

.location-stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px
}

.location-stat-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted-foreground)
}

.working-parents-section {
    padding: 80px 0 100px;
    background: var(--muted)
}

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

.advantage-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 32px;
    transition: all .3s ease
}

.advantage-card:hover {
    border-color: rgba(185, 28, 28, .3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1)
}

.advantage-icon {
    width: 56px;
    height: 56px;
    background: rgba(185, 28, 28, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all .3s ease
}

.advantage-card:hover .advantage-icon {
    background: var(--primary)
}

.advantage-icon i {
    color: var(--primary)
}

.advantage-card:hover i {
    color: var(--white)
}

.advantage-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    text-transform: none
}

.advantage-card p {
    color: var(--muted-foreground);
    line-height: 1.6
}

.stats-bar {
    margin-top: 64px;
    background: var(--foreground);
    color: var(--white);
    padding: 40px 48px
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center
}

.stats-bar-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px
}

.stats-bar-item span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: rgba(255, 255, 255, .7)
}

.day-section {
    padding: 80px 0 100px;
    background: var(--white)
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
    transform: translateX(-50%)
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    margin-bottom: 32px
}

.timeline-child,
.timeline-parent {
    padding: 24px;
    background: var(--muted)
}

.timeline-item.highlight .timeline-child,
.timeline-item.highlight .timeline-parent {
    background: rgba(185, 28, 28, .05);
    border: 1px solid rgba(185, 28, 28, .2)
}

.timeline-parent {
    text-align: right
}

.timeline-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted-foreground);
    margin-bottom: 8px
}

.timeline-time {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--foreground);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    z-index: 1
}

.timeline-item.highlight .timeline-time {
    background: var(--primary)
}

.day-quote {
    max-width: 900px;
    margin: 64px auto 0;
    text-align: center
}

.day-quote blockquote {
    font-size: 22px;
    font-style: italic;
    color: var(--foreground);
    margin-bottom: 24px;
    line-height: 1.6
}

.day-quote cite {
    font-style: normal;
    color: var(--muted-foreground)
}

.day-quote cite strong {
    color: var(--foreground)
}

.age-section {
    padding: 100px 0;
    background: var(--muted)
}

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

.age-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all .3s ease
}

.age-card:hover {
    border-color: rgba(185, 28, 28, .3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .1)
}

.age-card-image {
    position: relative;
    height: 220px;
    overflow: hidden
}

.age-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform .5s ease
}

.age-card:hover .age-card-image img {
    transform: scale(1.05)
}

.age-card-badge {
    position: absolute;
    bottom: -11px;
    right: -18px;
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    width: 100px;
    height: 100px
}

.age-card-content {
    padding: 24px;
    position: relative
}

.age-card-content .bear-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 90px;
    height: 90px
}

.age-card-age {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--primary);
    margin-bottom: 8px
}

.age-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    text-transform: none
}

.age-card p {
    color: var(--muted-foreground);
    line-height: 1.6
}

.transport-section {
    padding: 100px 0;
    background: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden
}

.transport-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;
    filter: blur(100px)
}

.transport-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.transport-content {
    position: relative;
    z-index: 1
}

.transport-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px
}

.transport-section h2 {
    font-size: 43px;
    margin-bottom: 24px
}

.transport-section h2 em {
    font-style: italic;
    font-weight: 700
}

.transport-description {
    font-size: 18px;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 24px;
    line-height: 1.7
}

.transport-description-secondary {
    font-size: 16px;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 32px;
    line-height: 1.7
}

.coverage-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 16px
}

.coverage-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px
}

.coverage-area {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 8px 16px;
    font-size: 14px
}

.transport-benefits {
    margin-bottom: 40px
}

.transport-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px
}

.transport-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px
}

.transport-visual {
    position: relative
}

.transport-image {
    position: relative
}

.transport-image img {
    width: 100%;
    height: auto;
    object-fit: cover
}

.transport-image-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    background: var(--foreground);
    color: var(--white);
    padding: 12px 24px;
    font-weight: 600
}

.transport-stats-card {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--white);
    color: var(--foreground);
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2)
}

.transport-stats-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px
}

.transport-stats-card span {
    font-size: 14px;
    color: var(--muted-foreground)
}

.transport-stats-card small {
    display: block;
    font-size: 12px;
    color: var(--muted-foreground);
    margin-top: 4px
}

.video-tour-section {
    padding: 80px 0 100px;
    background: var(--white)
}

.video-tour-section h2 {
    font-size: 43px
}

.video-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 48px;
    align-items: center
}

.video-thumbnail {
    position: relative;
    cursor: pointer
}

.video-thumbnail img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease
}

.video-thumbnail:hover .video-overlay {
    background: rgba(0, 0, 0, .3)
}

.video-play-btn {
    width: 96px;
    height: 96px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease;
        color: white;
}

.video-thumbnail:hover .video-play-btn {
    transform: scale(1.1)
}

.video-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em
}

.gallery-section {
    padding: 80px 0 100px;
    background: var(--foreground);
    color: var(--white)
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 16px
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer
}

.gallery-item.span-2x2 {
    grid-column: span 2;
    grid-row: span 2
}

.gallery-item.span-1x2 {
    grid-row: span 2
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.gallery-item:hover img {
    transform: scale(1.1)
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .5), transparent);
    opacity: 0;
    transition: opacity .3s ease
}

.gallery-item:hover::after {
    opacity: 1
}

.testimonials-section {
    padding: 80px 0 100px;
    background: var(--white)
}

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

.testimonial-card {
    background: var(--muted);
    border: 1px solid var(--border);
    padding: 32px;
    transition: all .3s ease;
    position: relative
}

.testimonial-card:hover {
    border-color: rgba(185, 28, 28, .3)
}

.testimonial-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(185, 28, 28, .1);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 6px 12px
}

.testimonial-quote-icon {
    margin-bottom: 16px
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px
}

.testimonial-stars i {
    width: 16px;
    height: 16px;
    fill: var(--primary);
    color: var(--primary)
}

.testimonial-text {
    font-size: 14px;
    color: var(--foreground);
    line-height: 1.7;
    margin-bottom: 24px
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border)
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--white)
}

.testimonial-author-name {
    font-size: 14px;
    font-weight: 600
}

.testimonial-author-role {
    font-size: 12px;
    color: var(--muted-foreground)
}

.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--muted);
    border: 1px solid var(--border);
    padding: 16px 32px;
    margin-top: 56px
}

.google-rating img {
    width: 24px;
    height: 24px
}

.google-rating-stars {
    display: flex;
    gap: 4px
}

.google-rating-stars i {
    color: #fbbc04
}

.google-rating-text {
    font-weight: 600
}

.google-rating-label {
    color: var(--muted-foreground)
}

.faq-section {
    padding: 80px 0 100px;
    background: var(--white)
}

.faq-container {
    max-width: 800px;
    margin: 0 auto
}

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

.faq-item {
    background: var(--muted);
    border: 1px solid var(--border);
    overflow: hidden
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: 0 0;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background .2s ease
}

.faq-question:hover {
    background: rgba(0, 0, 0, .02)
}

.faq-question span {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding-right: 16px;color: black;
}
.faq-question i.fa-solid.fa-plus {
    color: #b91c1c;
}
.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .2s ease
}

.faq-item.active .faq-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white)
}

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

.faq-item.active .faq-answer {
    max-height: 500px
}

.faq-answer-content {
    padding: 0 24px 24px;
    color: var(--muted-foreground);
    line-height: 1.7
}

.cta-banner {
    padding: 64px 0;
    background: var(--primary);
    color: var(--white)
}

.cta-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px
}

.cta-banner h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 16px
}

.cta-banner p {
    font-size: 18px;
    color: rgba(255, 255, 255, .85);
    max-width: 640px
}

.tour-process-section {
    padding: 80px 0 100px;
    background: var(--muted)
}

.tour-process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto
}

.tour-process-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 40px;
    position: relative
}

.tour-process-number {
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 700;
    color: rgba(0, 0, 0, .05);
    line-height: 1
}

.tour-process-icon {
    width: 48px;
    height: 48px;
    background: rgba(185, 28, 28, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px
}

.tour-process-card h3 {
    font-size: 20px;
    margin-bottom: 16px
}

.tour-process-card p {
    color: var(--muted-foreground);
    line-height: 1.7
}

.book-form-section {
    padding: 80px 0 100px;
    background: var(--white)
}

.book-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start
}

.book-form-content h2 {
    margin-bottom: 20px;
    font-size: 43px
}

.book-form-content>p {
    font-size: 18px;
    color: var(--muted-foreground);
    margin-bottom: 25px
}

.location-box {
    background: var(--foreground);
    color: var(--white);
    padding: 32px;
    margin-bottom: 32px
}

.location-box h3 {
    font-size: 16px;
    margin-bottom: 24px;
    text-transform: none
}

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

.location-item a:hover {
    color: var(--white)
}

.map-placeholder {
    background: var(--muted);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px
}

.map-placeholder span {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--muted-foreground)
}

.form-card {
    background: var(--muted);
    border: 1px solid var(--border);
    padding: 40px
}

.form-header {
    margin-bottom: 32px
}

.form-header h3 {
    font-size: 24px;
    margin-bottom: 8px;
    text-transform: none
}

.form-header p {
    color: var(--muted-foreground)
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px
}

.form-group {
    margin-bottom: 20px
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 8px
}

.form-input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    font-family: var(--font-body);
    font-size: 16px;
    border: 1px solid var(--border);
    background: var(--white);
    transition: border-color .2s ease
}

.form-input:focus {
    outline: 0;
    border-color: var(--primary)
}

.form-input::placeholder {
    color: #a3a3a3
}

.form-select {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    font-family: var(--font-body);
    font-size: 16px;
    border: 1px solid var(--border);
    background: var(--white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px
}

.form-select:focus {
    outline: 0;
    border-color: var(--primary)
}

.phone-group {
    display: flex;
    gap: 12px
}

.phone-code {
    width: 100px;
    flex-shrink: 0
}

.form-submit {
    width: 100%;
    margin-top: 16px
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    font-size: 14px;
    color: var(--muted-foreground)
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px
}

.footer {
    background: var(--foreground);
    color: var(--white)
}

.footer-cta {
    padding: 64px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.footer-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px
}

.footer-cta h2 {
    font-size: 32px;
    margin-bottom: 12px;
    text-transform: none
}

.footer-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, .7)
}

.footer-cta-buttons {
    display: flex;
    gap: 16px
}

.footer-main {
    padding: 64px 0
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px
}

.footer-brand img {
    width: 90px;
    height: auto
}

.footer-brand-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px
}

.footer-brand-text {
    font-family: var(--font-heading);
    font-size: 20px
}

.footer-brand-subtext {
    font-size: 14px;
    color: rgba(255, 255, 255, .5)
}

.footer-col p {
    color: rgba(255, 255, 255, .7);
    line-height: 1.6;
    font-size: 14px
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: all .3s ease
}

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

.footer-col h3 {
    font-size: 16px;
    margin-bottom: 24px;
    text-transform: none;
    letter-spacing: 0
}

.footer-links {
    list-style: none;
        margin: 0;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 12px
}

.footer-links a {
    color: rgba(255, 255, 255, .7);
    transition: color .2s ease
}

.footer-links a:hover {
    color: var(--white)
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, .7)
}

.footer-contact a:hover {
    color: var(--white)
}

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

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, .5)
}

.footer-legal {
    display: flex;
    gap: 24px
}

.footer-legal a:hover {
    color: var(--white)
}

.floating-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
    transition: transform .2s ease
}

.floating-btn:hover {
    transform: scale(1.1)
}

.floating-btn-whatsapp {
    background: #25d366;
    color: #fff
}

.floating-btn-tour {
    background: var(--primary);
    color: #fff
}

.tour-process-icon i {
    color: var(--primary)
}






/*footer items chat and modal popup _form.php*/
.chat-badge { transition: ease-in-out 0.3s; position: fixed; right: 0; top: 35%; padding: 17px 32px 17px 32px; border-radius: 40px 0px 0px 40px; border: 1px solid #CF1F25; background: #CF1F25; box-shadow: 2px -2px 22px 2px rgba(0, 0, 0, 0.10); z-index: 30; }
.chat-badge-close { position: absolute; top: 6px; right: 5px; width: 17px; height: 17px; cursor: pointer; }
#chat-badge-step-2 .chat-badge-title, #chat-badge-step-3 .chat-badge-title, #chat-badge-step-3 .chat-badge-top-title { text-align: left; }
.chat-badge-title { line-height: 100%; font-size: 20px; font-weight: 900; letter-spacing: -0.2px; text-transform: uppercase; margin-bottom: 10px; text-align: center; color: #FFF; }
.theme-btn { border: 2px solid var(--main-color); transition: all 0.3s; text-align: center; text-decoration: none; color: #fff; font-size: 18px; line-height: 18px; font-weight: 500; padding: 15.30px 30px; background-color: var(--main-color); border-radius: 60px;  max-width: 240px; width: 100%; text-transform: none; box-sizing: border-box; }
.chat-badge .theme-btn { padding: 8px; width: 150px; border: 0; font-size: 14px; justify-content: center; }
.chat-badge .theme-btn.green { background-color: #1DCA5D; color: white; }
.chat-badge .theme-btn.white { background-color: white; color: #1D1D1D; margin-bottom: 4px; }
.chat-badge-top-title { color: white; font-size: 14px; font-style: normal; font-weight: 400; margin-bottom: 4px; }
.chat-badge .iti { width: 100%; margin-bottom: 10px; } 
.iti {width: 100%!important; position: relative; display: inline-block;}
.chat-badge input[type="tel"] { padding: 16px 24px; border-radius: 6px; border: 1px solid #DEDEDE; width: 100%; }
.chat-list { list-style-type: none; margin: 16px 0 24px 0; padding: 0; display: flex; gap: 4px; flex-direction: column; margin-bottom: 10px; }
.chat-list li { padding: 8px 12px; border-radius: 60px; border: 1px solid #FFF; position: relative; min-width: 160px; height: 33px; border-radius: 60px; border: 1px solid #FFF; position: relative; overflow: hidden; }
.chat-list input[type="radio"] { opacity: 0.011; z-index: 100; }
.chat-list label, .chat-list input { display: block; position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
.chat-list label { cursor: pointer; color: white; z-index: 90; font-size: 14px; font-weight: 600; display: flex; justify-content: center; align-items: center; gap: 8px; }
.chat-list label img { display: none; }


.updated_bookTourPopUp .modal-dialog.modal-dialog-centered { max-width: 1175px !important; width: 100% !important; margin: auto; }
#bookTour button.btn-close { position: absolute; right: 10px; top: 10px; z-index: 99; }
.updated_bookTourPopUp .modal-dialog.modal-dialog-centered h2 { text-align: center; max-width: 700px; width: 100%; margin: 15px auto 10px !important; font-size: 36px; line-height: 36px; font-weight: 900;; letter-spacing: -0.36px; text-transform: uppercase;}
.updated_bookTourPopUp ul { padding: 20px 10px; display: flex; justify-content: center; text-align: center; list-style: none; }
.updated_bookTourPopUp ul li { margin: 0 5px; width: 33%; background: #f5f5f5; border-radius: 20px; }
.heading_iconCs { color: white; background: #cd1316; text-align: center; border-radius: 25px; border-bottom-left-radius: 0; border-bottom-right-radius: 0; padding: 20px 10px; }
.updated_bookTourPopUp ul li i.fa { font-size: 24px; box-shadow: 0px 0px 0px 2px white !important; padding: 15px; border-radius: 50%; margin-bottom: 15px; }
.updated_bookTourPopUp .modal-dialog.modal-dialog-centered .heading_iconCs h2 { text-align: center; max-width: 700px; width: 100%; font-size: 20px; font-weight: 400; max-width: unset; width: unset; margin: 0 !important; }
.updated_bookTourPopUp ul li:nth-child(2) .heading_iconCs { background: #eac474 !important; }
.updated_bookTourPopUp ul li i.fa { font-size: 24px; box-shadow: 0px 0px 0px 2px white !important; padding: 15px; border-radius: 50%; margin-bottom: 15px; }
.content_ListCs { padding: 19px; }
.updated_bookTourPopUp ul li p { text-align: left; font-size: 15px; color: black; }
.updated_bookTourPopUp ul ul { display: inline-block; padding: 0; text-align: left; width: 100%; margin-bottom: 30px; list-style: none; }
.updated_bookTourPopUp ul li ul li { margin: 0 0 5px; width: 100%; padding: 0; font-size: 13px; display: flex; align-items: center; }
.updated_bookTourPopUp ul li ul li i.fa { font-size: 15px; box-shadow: unset !important; padding: 0; border-radius: 0; margin-bottom: 0; color: #cd1316; margin-right: 5px; position: relative; top: 1px; } 
.updated_bookTourPopUp ul li:nth-child(2) a.updated_widget_btn { background: #eac474; }
a.updated_widget_btn { border-radius: 30px !important; padding: 10px !important; text-decoration: unset; background: #cd1316; color: white; text-align: center; background-size: 15px; font-weight: 600; font-size: 16px !important; width: 100% !important; display: inline-block; }
.modal.updated_bookTourPopUp ul li form.contact-form { display: none; }
.contact-form .form-select, .contact-form .form-control { font-size: 16px !important; }
.contact-form.career-form-sc-cs input, .contact-form select { width: 100%; }
form#mc-embedded-subscribe-form .contact-form input, .contact-form select { border: 1px solid #B0B0B0 !important; }
select#nurserySelect-onlineClass1, #nurserySelect-onlineClass12 { border-radius: 30px !important; padding: 10px !important; background: #eac474 !important; color: white; text-align: center; background-image: url(https://mogulsdemo.com/mb-gulf/wp-content/themes/maple-bear-school-wp-theme/static/img/down-arrow-222-white.png) !important; background-repeat: no-repeat !important; background-position: 94% 17px !important; background-size: 15px !important; font-weight: 600; }
.updated_bookTourPopUp ul li:last-child .heading_iconCs { background: #00b73f; }
.updated_bookTourPopUp ul li:last-child a { background: #00b73f !important; border-color: #00b73f; transition: all 0.3s; text-align: center; text-decoration: none; color: #fff; font-size: 16px; line-height: 18px; font-weight: 600; padding: 12px 37.5px; border-radius: 60px; font-family: "Roboto"; text-transform: none; box-sizing: border-box; max-width: 250px; cursor: pointer; width: 100%; }
.chat-list input[type="radio"]:checked + label { background: white; color: #1D1D1D; }
.chat-list input[type="radio"]:checked + label img { display: inline; }

.form-outline.w-100 {
    margin-bottom: 20px;
}
.form-wrapper form input, .form-wrapper form select { border-radius: 6px; border: 1px solid #DEDEDE; height: 53px; color: #2F2F2F; font-family: 'Roboto'; font-size: 16px; font-weight: 400; line-height: 20.8px; padding: 16px 24px; }
button.theme-btn.mt-3.form-submit { background: #b91c1c; border-radius: 6px; max-width:100% !important;}


.chat-badge--minimize { padding: 18px 14px 17px 21px; }
.chat-badge--minimize .chat-badge-title, .chat-badge--minimize .theme-btn span, .chat-badge--minimize .chat-badge-close { display: none; }
.chat-badge--minimize { padding: 18px 14px 17px 21px; } 
.chat-badge--minimize .theme-btn { width: auto; } 
.chat-badge--minimize .theme-btn img { margin: 0 !important; }
#videoModal .modal-content {
    max-width: 900px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
#videoModal .modal-content span.close-modal {
    cursor: pointer;
    font-size: 48px;
    position: absolute;
    top: 10px;
    right: -10px;
    z-index: 99;
    color: #fff;
}
.modal { 
    background: #0000008c;
}



.hero-feature i {
    width: 20px;
    height: 20px;
    color: #b91c1c;
    background: #ffffff;
    padding: 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
} 
.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
}






@media (max-width: 767px) {
    .updated_bookTourPopUp ul {
        padding: 30px 0 0;
        flex-wrap: wrap;
    }
        .updated_bookTourPopUp ul li {
        margin: 0 5px 15px;
        width: 47%;
    }
    .updated_bookTourPopUp .modal-dialog.modal-dialog-centered .heading_iconCs h2 {
        font-size: 14px;
    }
}


@media (max-width: 480px) {
    .updated_bookTourPopUp ul li {
        margin: 0 0 20px !important;
        width: 100%;
    }
}






/*footer items chat and modal popup _form.php*/


 

.right_csMenu{display:none;}



@keyframes shake {
  0%, 80%, 100% { transform: translateX(0); }
  84%, 88%, 92%, 96% { transform: translateX(-4px); }
  86%, 90%, 94%, 98% { transform: translateX(4px); }
}

.shake {
  animation: shake 2s infinite;
}































@media (min-width:1024px) {
    :root {
        --container-padding: 48px
    }
}

@media (max-width:1023px) {
    .mobile-book-now {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--primary);
        z-index: 999;
        text-align: center;
        padding: 20px 10px;
        color: #fff;
        font-size: 16px;
        font-weight: 600
    }

    .floating-buttons {
        bottom: 67px;
        right: 10px
    }

    .top-bar {
        display: none
    }

    .header {
        top: 0;
        background-color: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, .05)
    }

    .header-content {
        height: 70px
    }

    .header .logo img:first-child {
        display: none
    }

    .header .logo img:nth-child(2) {
        display: block
    }

    .nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--white);
        padding: 40px var(--container-padding);
        gap: 24px;
        transform: translateX(100%);
        transition: transform .3s cubic-bezier(.4, 0, .2, 1);
        z-index: 999;
        overflow-y: auto
    }

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

    .nav a {
        color: var(--foreground);
        font-size: 20px;
        font-weight: 700;
        border-bottom: 1px solid var(--border);
        padding-bottom: 12px
    }

    .header-cta {
        display: none;
    }

   .mobile-menu-btn {
        display: block;
        color: #b91c1c;
        z-index: 1001;
        font-size: 20px;
    }
    .mob_num a {
        color: #b91c1c;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;;
    }

    .why-item {
        padding-left: 0;
    }

    .why-item::before {
        display: none;
    }

    .why-item {
        border-bottom: 1px solid gray !important;
    }

    .location-callout {
        flex-direction: column;
        text-align: center;
    }

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

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

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

    .transport-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .transport-visual {
        order: -1;
    }

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

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

    .cta-banner-content {
        flex-direction: column;
        text-align: center;
    }

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

    .footer-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
         .right_csMenu {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        gap: 20px;
    }
    .header .logo img { 
        height: 60px;
    }
    .right_csMenu a:hover {
        color: #b91c1c;
    }
}

@media (max-width:767px) {
    .hero h1 {
        font-size: 35px
    }

    .section-header h2 {
        font-size: 35px
    }

    .transport-section h2 {
        font-size: 35px
    }

    .video-tour-section h2 {
        font-size: 35px
    }

    .book-form-content h2 {
        font-size: 35px
    }

    .location-callout {
        padding: 40px 20px
    }

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

    .hero-stat:nth-child(2) {
        border-right: none
    }

    .hero-stat:first-child,
    .hero-stat:nth-child(2) {
        border-bottom: 1px solid var(--border)
    }

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

    .why-box {
        padding: 32px 24px
    }

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

    .stats-bar {
        padding: 32px 24px
    }

    .timeline::before {
        z-index: 0;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 16px;        justify-items: anchor-center;z-index: 9;
        position: relative;
    }

    .timeline-child, .timeline-parent {
        text-align: center;        order: 1;        width: 100%;background: #f5f5f5 !important;
    }

    .timeline-time {
        width: 60px;
        height: 60px;
        font-size: 12px
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }

    .gallery-item.span-2x2 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item.span-1x2 {
        grid-row: span 1;
    }

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

    .tour-process-grid {
        grid-template-columns: 1fr;
    }

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

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

    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
}

@media(max-width:576px) {
    .hero h1 {
        font-size: 28px;
                margin-bottom: 15px;
    }

    .section-header h2 {
        font-size: 33px
    }

    .transport-section h2 {
        font-size: 33px
    }

    .video-tour-section h2 {
        font-size: 33px
    }

    .book-form-content h2 {
        font-size: 33px
    }
    
    .hero-description {
         
        line-height: 1.3;font-size: 16px;margin-bottom: 25px !important;
    }
    .hero-content { 
         padding:80px 0 120px;
    }
    .hero h1 span { 
        margin-top: 5px;
    }
    .hero-badge {
        margin-bottom: 10px !important;
    }
    .hero-features { 
        gap: 10px 15px; 
    }
    .hero-bg img {object-position: 65%; }
    .hero-features.hero-features-top span {font-size: 14px;}
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

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

.animate-fadeInUp {
    animation: fadeInUp .6s ease forwards
}

::selection {
    background: rgba(185, 28, 28, .2);
    color: var(--foreground)
}

::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: #f5f5f5
}

::-webkit-scrollbar-thumb {
    background: var(--primary)
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover)
}

/*.modal {*/
/*    display: none;*/
/*    position: fixed;*/
/*    z-index: 2000;*/
/*    left: 0;*/
/*    top: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-color: rgba(0, 0, 0, .9);*/
/*    backdrop-filter: blur(5px)*/
/*}*/

/*.modal-content {*/
/*    position: relative;*/
/*    margin: auto;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    width: 90%;*/
/*    max-width: 800px*/
/*}*/

/*.close-modal {*/
/*    position: absolute;*/
/*    top: -40px;*/
/*    right: 0;*/
/*    color: #fff;*/
/*    font-size: 35px;*/
/*    font-weight: 700;*/
/*    cursor: pointer;*/
/*    line-height: 1*/
/*}*/

/*.close-modal:hover {*/
/*    color: var(--primary)*/
/*}*/

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 50px rgba(0, 0, 0, .5)
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}


.hero-badge { display: inline-block; font-size: 12px; font-weight: 700; color: white !important; text-transform: uppercase; letter-spacing: 0.2em; background-color: #cf1f25; padding: 8px 20px; border-radius: 50px; margin-bottom: 24px; }