/* ========================================================
   YouthLab Solutions - Frontend Main Stylesheet
   Modern, Mobile-First, Rich Aesthetics
   ======================================================== */

:root {
    --primary: #ed0c14;
    --primary-dark: #c0000a;
    --primary-light: #fff0f1;
    --secondary: #454545;
    --dark: #1e1e24;
    --accent: #e5b3b4;
    --gray: #b5b5b5;
    --gray-light: #f8fafc;
    --white: #fefefe;
    --border: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--secondary);
    background-color: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 700;
    line-height: 1.25;
}

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

a:hover {
    color: var(--primary-dark);
}

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

/* Container */
.yl-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================================
   Buttons & UI Elements
   ======================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(237, 12, 20, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(237, 12, 20, 0.35);
}

.btn-secondary {
    background-color: var(--secondary);
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: var(--dark);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    color: #ffffff;
    backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
    background-color: #ffffff;
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-header-cta {
    background-color: var(--primary);
    color: #ffffff;
    padding: 10px 22px;
    font-size: 14px;
    box-shadow: 0 4px 14px rgba(237, 12, 20, 0.25);
}

.btn-header-cta:hover {
    background-color: var(--primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Badges */
.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 12.5px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: var(--primary-light);
    color: var(--primary);
}

/* ========================================================
   Header & Navigation
   ======================================================== */
.yl-topbar {
    background-color: var(--dark);
    color: #cbd5e0;
    font-size: 12.5px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.topbar-contact {
    display: flex;
    gap: 20px;
    align-items: center;
}

.topbar-contact a {
    color: #cbd5e0;
}

.topbar-contact a:hover {
    color: #ffffff;
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar-social a {
    color: #a0aec0;
    font-size: 13px;
    transition: var(--transition);
}

.topbar-social a:hover {
    color: var(--primary);
}

.topbar-admin-link {
    margin-left: 12px;
    padding: 3px 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #ffffff !important;
    font-size: 11.5px;
}

.topbar-admin-link:hover {
    background-color: var(--primary);
}

/* Main Header */
.yl-header {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition);
}

.yl-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

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

.yl-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    max-height: 48px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    line-height: 1.1;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.brand-sub {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
}

/* Nav Menu */
.yl-nav-menu .nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    position: relative;
    padding: 8px 0;
    transition: color 0.2s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    height: 2.5px;
    width: 100%;
    background-color: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-drawer {
    display: none;
    background-color: #ffffff;
    border-top: 1px solid var(--border);
    padding: 20px 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.mobile-drawer.open {
    display: block;
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-list li {
    margin-bottom: 12px;
}

.mobile-nav-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    border-bottom: 1px solid #f1f5f9;
}

.mobile-nav-list a.active {
    color: var(--primary);
}

/* ========================================================
   Hero Carousel (Swiper.js)
   ======================================================== */
.yl-hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 560px;
    background-color: var(--dark);
    overflow: hidden;
}

.swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 15, 20, 0.88) 0%, rgba(20, 20, 25, 0.72) 50%, rgba(20, 20, 25, 0.45) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    color: #ffffff;
    padding: 40px 0;
}

.hero-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(237, 12, 20, 0.25);
    border: 1px solid rgba(237, 12, 20, 0.5);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    backdrop-filter: blur(6px);
}

.hero-slide-title {
    font-size: clamp(34px, 5.2vw, 56px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-slide-desc {
    font-size: clamp(16px, 1.8vw, 19px);
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 34px;
    max-width: 680px;
}

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

.swiper-button-next, .swiper-button-prev {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.15);
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: 700;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--primary);
}

.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: #ffffff !important;
    opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
    width: 32px !important;
    border-radius: 8px !important;
    background: var(--primary) !important;
    opacity: 1 !important;
}

/* ========================================================
   Inner Page Banners
   ======================================================== */
.yl-page-banner {
    position: relative;
    padding: 100px 0 80px;
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 20, 25, 0.92) 0%, rgba(40, 30, 35, 0.82) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.banner-breadcrumb {
    font-size: 13.5px;
    color: #cbd5e0;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.banner-breadcrumb a {
    color: #cbd5e0;
}

.banner-breadcrumb a:hover {
    color: var(--accent);
}

.bc-sep {
    color: var(--primary);
}

.bc-active {
    color: var(--accent);
    font-weight: 600;
}

.banner-title {
    font-size: clamp(32px, 4.5vw, 48px);
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 12px;
}

.banner-subtitle {
    font-size: 17px;
    color: #e2e8f0;
    line-height: 1.6;
}

/* ========================================================
   Section Standards
   ======================================================== */
.yl-section {
    padding: 90px 0;
}

.yl-section-gray {
    background-color: var(--gray-light);
}

.yl-section-dark {
    background-color: var(--dark);
    color: #e2e8f0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 55px;
}

.section-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--dark);
    margin: 12px 0 16px;
    letter-spacing: -0.5px;
}

.yl-section-dark .section-title {
    color: #ffffff;
}

.section-desc {
    font-size: 16.5px;
    color: var(--secondary);
    line-height: 1.65;
}

.yl-section-dark .section-desc {
    color: #a0aec0;
}

/* ========================================================
   Consulting Pillars Cards
   ======================================================== */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 28px;
}

.pillar-card {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 36px 30px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.pillar-card:hover::before {
    width: 6px;
}

.pillar-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(237, 12, 20, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 24px;
    transition: var(--transition);
}

.pillar-card:hover .pillar-icon-box {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.08);
}

.pillar-title {
    font-size: 21px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
}

.pillar-desc {
    font-size: 14.5px;
    color: var(--secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.pillar-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pillar-link i {
    transition: transform 0.2s;
}

.pillar-card:hover .pillar-link i {
    transform: translateX(5px);
}

/* ========================================================
   Split Section / Story Feature
   ======================================================== */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.split-image-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.split-floating-card {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 18px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 16px;
}

.split-floating-card .fc-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.split-floating-card .fc-label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.3;
}

/* ========================================================
   Impact Metrics Counters
   ======================================================== */
.impact-counter-section {
    background: linear-gradient(135deg, #18181f 0%, #2b2b35 100%);
    color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.impact-counter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(237, 12, 20, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.counter-item {
    padding: 20px;
}

.counter-number {
    font-family: var(--font-heading);
    font-size: clamp(42px, 5vw, 60px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 2px;
}

.counter-number span.accent {
    color: var(--primary);
}

.counter-label {
    font-size: 15px;
    color: #cbd5e0;
    font-weight: 500;
}

/* ========================================================
   Leadership / Board of Directors Cards
   ======================================================== */
.directors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.director-card {
    background: #ffffff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.director-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.director-photo-box {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #f1f5f9;
}

.director-photo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.director-card:hover .director-photo-box img {
    transform: scale(1.05);
}

.director-social-overlay {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.director-social-overlay a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.director-social-overlay a:hover {
    background: var(--primary);
    color: #ffffff;
}

.director-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.director-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.director-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 14px;
    line-height: 1.4;
}

.director-summary {
    font-size: 14px;
    color: var(--secondary);
    line-height: 1.55;
    margin-bottom: 20px;
    flex: 1;
}

.btn-read-bio {
    background: var(--primary-light);
    color: var(--primary);
    border: none;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-heading);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
}

.btn-read-bio:hover {
    background: var(--primary);
    color: #ffffff;
}

/* Modal Bio Popup */
.bio-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 15, 20, 0.75);
    backdrop-filter: blur(8px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.bio-modal-overlay.open {
    display: flex;
}

.bio-modal-box {
    background: #ffffff;
    border-radius: var(--radius-lg);
    max-width: 720px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    padding: 40px;
    position: relative;
}

.bio-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.bio-modal-close:hover {
    background: var(--primary);
    color: #ffffff;
}

.bio-modal-header {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

.bio-modal-header img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

/* ========================================================
   Case Studies / Portfolio Showcase
   ======================================================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.case-card {
    background: #ffffff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.case-cover {
    width: 100%;
    height: 230px;
    overflow: hidden;
    position: relative;
}

.case-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-card:hover .case-cover img {
    transform: scale(1.05);
}

.case-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-client {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.case-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.35;
}

.case-metrics-badge {
    background: #f8fafc;
    border-left: 3px solid var(--primary);
    padding: 10px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 18px;
}

.case-desc {
    font-size: 14.5px;
    color: var(--secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

/* ========================================================
   Media Gallery
   ======================================================== */
.gallery-filter-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.gallery-filter-btn {
    padding: 9px 22px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    background: #f1f5f9;
    color: var(--secondary);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-filter-btn:hover {
    background: #e2e8f0;
    color: var(--dark);
}

.gallery-filter-btn.active {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(237, 12, 20, 0.25);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 270px;
    cursor: pointer;
    background-color: var(--dark);
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(15, 15, 20, 0.85) 100%);
    opacity: 0.85;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    color: #ffffff;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-tag-pill {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    background: var(--primary);
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 4px;
    align-self: flex-start;
    margin-bottom: 8px;
}

.gallery-title {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.gallery-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(237, 12, 20, 0.9);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.gallery-item:hover .gallery-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--primary);
}

/* ========================================================
   Contact Us Section
   ======================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-form-card {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.contact-info-card {
    background: var(--dark);
    color: #ffffff;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-info-card h3 {
    color: #ffffff;
    margin-bottom: 24px;
}

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

.contact-detail-row i {
    font-size: 20px;
    color: var(--primary);
    margin-top: 4px;
}

.contact-detail-row a {
    color: #cbd5e0;
}

.contact-detail-row a:hover {
    color: #ffffff;
}

.map-container {
    width: 100%;
    height: 380px;
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 50px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================================
   Call to Action (CTA) Banner
   ======================================================== */
.yl-cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #b3090f 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.yl-cta-banner h2 {
    color: #ffffff;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    margin-bottom: 16px;
}

.yl-cta-banner p {
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 32px;
    opacity: 0.92;
}

/* ========================================================
   Footer
   ======================================================== */
.yl-footer {
    background-color: #15151a;
    color: #a0aec0;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.8fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    display: inline-block;
    text-decoration: none;
}

.footer-mission {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary);
}

.footer-title {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 22px;
    position: relative;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #a0aec0;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a i {
    font-size: 11px;
    color: var(--primary);
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
    font-size: 14px;
}

.contact-item i {
    color: var(--primary);
    font-size: 17px;
    margin-top: 3px;
}

.contact-item a {
    color: #a0aec0;
}

.contact-item a:hover {
    color: #ffffff;
}

.footer-bottom {
    background-color: #0d0d10;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13px;
}

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

.footer-bottom-links {
    display: flex;
    gap: 14px;
    align-items: center;
}

.footer-bottom-links a {
    color: #718096;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* Scroll To Top Button */
.btn-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.btn-scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.btn-scroll-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-4px);
}

/* ========================================================
   Responsive Media Queries
   ======================================================== */
@media (max-width: 992px) {
    .yl-nav-menu, .header-action .btn-header-cta {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .split-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .yl-topbar {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-slide-actions {
        flex-direction: column;
    }
    .hero-slide-actions .btn {
        width: 100%;
    }
}
