/* ═══════════════════════════════════════
   LS Tours — Main Stylesheet
   ═══════════════════════════════════════ */

/* ─── CSS VARIABLES ─── */
:root {
    --color-primary: #FDD903;
    --color-primary-dark: #6e5e00;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-surface: #F8F9FB;
    --color-surface-low: #F2F4F6;
    --color-surface-container: #EDEEF0;
    --color-text-1: #191C1E;
    --color-text-2: #5E5E5E;
    --color-text-on-primary: #221B00;
    --color-border: #E5E7EB;
    --color-border-dark: #cfc6ab;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --radius-card: 16px;
    --radius-btn: 50px;
    --radius-input: 10px;
    --transition: 0.3s ease;
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
    --container-max: 1200px;
    --section-padding: 96px 0;
    --nav-height: 72px;
}

/* ─── GLOBAL RESET ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-1);
    background-color: var(--color-surface);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

/* ─── ACCESSIBILITY ─── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.skip-link:focus {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: var(--color-primary);
    color: var(--color-text-on-primary);
    padding: 12px 24px;
    font-weight: 700;
    clip: auto;
    width: auto;
    height: auto;
}

:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-1);
}

/* ─── CONTAINER ─── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── MATERIAL SYMBOLS ─── */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    display: inline-block;
    vertical-align: middle;
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--color-text-on-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 14px 36px;
    border-radius: var(--radius-btn);
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(253, 217, 3, 0.2);
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-primary:active {
    opacity: 0.9;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 14px 36px;
    border-radius: var(--radius-btn);
    border: 2px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition);
    font-size: 1rem;
    text-decoration: none;
    backdrop-filter: blur(4px);
}

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

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--color-text-1);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 14px 36px;
    border-radius: var(--radius-btn);
    border: 2px solid var(--color-text-1);
    cursor: pointer;
    transition: all var(--transition);
    font-size: 1rem;
    text-decoration: none;
}

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

.btn-lg {
    padding: 18px 44px;
    font-size: 1.125rem;
}

/* ═══════════════════════════════════════
   SECTION STYLES
   ═══════════════════════════════════════ */
.section-header {
    margin-bottom: 48px;
}

.section-header--center {
    text-align: center;
}

.section-overline {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
}

.section-overline--light {
    color: var(--color-primary);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.section-title--white {
    color: var(--color-white);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 2px;
    margin-bottom: 24px;
}

.section-divider--center {
    margin-left: auto;
    margin-right: auto;
    margin-top: 24px;
}

.section-subtitle {
    color: var(--color-text-2);
    font-size: 1rem;
    max-width: 600px;
}

/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 50;
    backdrop-filter: blur(20px);
    background-color: rgba(0, 0, 0, 0.92);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: background-color var(--transition);
}

.glass-nav.scrolled {
    background-color: rgba(0, 0, 0, 0.98);
}

.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-white);
    font-style: italic;
    letter-spacing: -0.05em;
    text-decoration: none;
}

.nav-brand .custom-logo-link img {
    max-height: 40px;
    width: auto;
}

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

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: -0.02em;
    transition: all var(--transition);
    text-decoration: none;
    padding: 4px 0;
}

.nav-link:hover {
    color: var(--color-white);
    transform: scale(1.05);
}

.nav-link--active {
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 2px;
}

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

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    background: var(--color-primary);
    color: var(--color-text-on-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 10px 24px;
    border-radius: var(--radius-btn);
    font-size: 0.875rem;
    transition: transform var(--transition);
    text-decoration: none;
}

.nav-cta-btn:hover {
    transform: scale(1.05);
}

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

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition);
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 45;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
}

/* Mobile Menu Drawer */
.mobile-menu-inner {
    position: absolute;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 85%;
    max-width: 400px;
    background: var(--color-surface);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 40px 40px;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 16px;
    margin: 0;
    padding: 0;
}

.mobile-nav-links .nav-link {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.mobile-nav-links .nav-link:hover,
.mobile-nav-links .nav-link--active {
    color: var(--color-primary);
    padding-left: 12px;
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.mobile-cta {
    margin-top: 32px;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

/* Nav Open State */
body.nav-open .mobile-menu {
    opacity: 1;
    visibility: visible;
}

body.nav-open .mobile-menu-inner {
    right: 0;
}

body.nav-open .mobile-nav-links .nav-link,
body.nav-open .mobile-cta {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delay for drawer items */
body.nav-open .mobile-nav-links .nav-link:nth-child(1) { transition-delay: 0.1s; }
body.nav-open .mobile-nav-links .nav-link:nth-child(2) { transition-delay: 0.15s; }
body.nav-open .mobile-nav-links .nav-link:nth-child(3) { transition-delay: 0.2s; }
body.nav-open .mobile-nav-links .nav-link:nth-child(4) { transition-delay: 0.25s; }
body.nav-open .mobile-nav-links .nav-link:nth-child(5) { transition-delay: 0.3s; }
body.nav-open .mobile-cta { transition-delay: 0.4s; }

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

body.nav-open .hamburger-line:nth-child(2) {
    opacity: 0;
}

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

body.nav-open {
    overflow: hidden;
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

/* Trust Badge Strip */
.trust-badge-strip {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: var(--color-primary);
    padding: 8px 0;
    z-index: 10;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-on-primary);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 24px;
    max-width: 900px;
}

.hero-overline {
    display: block;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--color-white);
    font-size: 5rem;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero-title-accent {
    color: var(--color-primary);
    font-style: italic;
}

.hero-subtext {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-arrow {
    color: var(--color-primary);
    font-size: 2.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ═══════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════ */
.stats-section {
    background: var(--color-primary);
    padding: 0;
}

.stats-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 16px;
}

.stat-divider {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--color-text-on-primary);
}

.stat-label {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(34, 27, 0, 0.6);
    margin-top: 4px;
}

/* ═══════════════════════════════════════
   SERVICES GRID
   ═══════════════════════════════════════ */
.services-section {
    background: var(--color-surface);
    padding: var(--section-padding);
    padding-left: 32px;
    padding-right: 32px;
}

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

.service-card {
    background: var(--color-surface-low);
    border-radius: var(--radius-card);
    padding: 32px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    border-top: 0 solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
    background: var(--color-white);
    border-top: 4px solid var(--color-primary);
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(253, 217, 3, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background var(--transition);
}

.service-card:hover .service-icon-wrap {
    background: var(--color-primary);
}

.service-icon {
    font-size: 1.875rem;
    color: var(--color-primary-dark);
    transition: color var(--transition);
}

.service-card:hover .service-icon {
    color: var(--color-text-on-primary);
}

.service-card-title {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.service-card-desc {
    color: var(--color-text-2);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-card-cta {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    transition: transform var(--transition);
    display: inline-block;
}

.service-card:hover .service-card-cta {
    transform: translateX(8px);
}

/* ═══════════════════════════════════════
   C.A.R.E VALUES
   ═══════════════════════════════════════ */
.care-section {
    background: var(--color-black);
    padding: var(--section-padding);
    padding-left: 32px;
    padding-right: 32px;
    overflow: hidden;
}

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

.care-card {
    position: relative;
    background: rgba(39, 39, 42, 0.5);
    padding: 40px;
    border-radius: var(--radius-card);
    border: 1px solid rgba(63, 63, 70, 1);
    transition: all 0.5s ease;
    overflow: hidden;
}

.care-card:hover {
    border-color: var(--color-primary);
}

.care-pattern-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
    pointer-events: none;
}

.care-card:hover .care-pattern-overlay {
    opacity: var(--hover-opacity, 0.15); /* Kelegapan dari Customizer */
}

.care-letter {
    position: absolute;
    top: 16px;
    right: 32px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 6rem;
    color: rgba(253, 217, 3, 0.1);
    user-select: none;
    transition: color var(--transition);
    line-height: 1;
}

.care-card:hover .care-letter {
    color: rgba(253, 217, 3, 0.25);
}

.care-title {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.care-desc {
    color: #a1a1aa;
    font-size: 0.875rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════
   ENQUIRY FORM SECTION
   ═══════════════════════════════════════ */
.enquiry-section {
    background: var(--color-white);
    padding: var(--section-padding);
    padding-left: 32px;
    padding-right: 32px;
}

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

.enquiry-badge {
    display: inline-block;
    background: var(--color-black);
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 6px 16px;
    margin-bottom: 24px;
}

.enquiry-title {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 32px;
}

.enquiry-contacts {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.enquiry-icon-wrap {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.enquiry-icon-wrap .material-symbols-outlined {
    font-size: 1.5rem;
    color: var(--color-text-on-primary);
}

.enquiry-contact-label {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 1rem;
}

.enquiry-contact-value {
    color: var(--color-text-2);
    font-size: 0.9375rem;
}

.enquiry-contact-value a {
    color: var(--color-text-2);
    transition: color var(--transition);
}

.enquiry-contact-value a:hover {
    color: var(--color-text-1);
}

.enquiry-form-wrap {
    background: var(--color-surface-low);
    padding: 40px;
    border-radius: 2rem;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.05);
}

.cf7-placeholder {
    text-align: center;
    padding: 40px;
    color: var(--color-text-2);
    font-style: italic;
}

/* ═══════════════════════════════════════
   PARTNERS MARQUEE
   ═══════════════════════════════════════ */
.partners-section {
    background: var(--color-surface-low);
    padding: 64px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.partners-label {
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-text-2);
    margin-bottom: 32px;
}

.marquee-wrapper {
    position: relative;
    overflow: hidden;
}

.marquee-fade {
    position: absolute;
    top: 0;
    height: 100%;
    width: 96px;
    z-index: 10;
    pointer-events: none;
}

.marquee-fade--left {
    left: 0;
    background: linear-gradient(to right, var(--color-surface-low), transparent);
}

.marquee-fade--right {
    right: 0;
    background: linear-gradient(to left, var(--color-surface-low), transparent);
}

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

.animate-marquee {
    display: flex;
    animation: marquee 18s linear infinite;
    gap: 96px;
    padding: 0 48px;
    width: max-content;
}

.animate-marquee:hover {
    animation-play-state: paused;
}

.partner-name {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    color: rgba(25, 28, 30, 0.4);
    white-space: nowrap;
    cursor: default;
    transition: color var(--transition);
    text-decoration: none;
    flex-shrink: 0;
}

.partner-name:hover {
    color: var(--color-text-1);
}

.partner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
}

.partner-logo {
    height: 48px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all var(--transition);
    flex-shrink: 0;
}

.partner-link:hover .partner-logo,
.partner-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* ═══════════════════════════════════════
   LOCATIONS
   ═══════════════════════════════════════ */
.locations-section {
    background: var(--color-white);
    padding: var(--section-padding);
    padding-left: 32px;
    padding-right: 32px;
}

.locations-page-section {
    padding: var(--section-padding);
    padding-left: 32px;
    padding-right: 32px;
}

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

.location-card {
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: border-color var(--transition);
    border: 2px solid transparent;
}

.location-card:hover {
    border-color: var(--color-primary);
}

.location-card-img {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

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

.location-card:hover .location-img {
    transform: scale(1.1);
}

.location-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.location-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
}

.location-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.625rem;
    padding: 4px 12px;
    border-radius: var(--radius-btn);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    z-index: 2;
}

.location-info {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 2;
}

.location-name {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 4px;
}

.location-services {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    margin-top: 4px;
}

/* ═══════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════ */
.page-hero {
    background: var(--color-black);
    padding: 140px 0 80px;
    text-align: center;
}

.page-hero-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 16px;
}

.breadcrumb {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: var(--color-primary);
    transition: color var(--transition);
}

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

.breadcrumb-sep {
    margin: 0 8px;
}

.breadcrumb-current {
    color: rgba(255, 255, 255, 0.8);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer {
    background: var(--color-black);
    color: var(--color-white);
}

.footer-main {
    padding: 96px 0;
}

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

.footer-logo {
    display: block;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.875rem;
    color: var(--color-primary);
    font-style: italic;
    margin-bottom: 24px;
}

.footer-desc {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    color: var(--color-white);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--color-primary);
    color: var(--color-text-on-primary);
    border-color: transparent;
}

.social-icon .material-symbols-outlined {
    font-size: 1.125rem;
}

.footer-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-bottom: 32px;
}

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

.footer-links a {
    color: #9ca3af;
    font-size: 0.875rem;
    transition: all var(--transition);
    display: inline-block;
}

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

.footer-service-link {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
}
.footer-service-icon {
    font-size: 1.1rem;
    color: var(--color-primary);
    transition: color var(--transition);
}
.footer-service-link:hover .footer-service-icon {
    color: var(--color-white);
}

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

.footer-contact span,
.footer-contact a {
    color: #9ca3af;
    font-size: 0.875rem;
}

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

.footer-icon {
    color: var(--color-primary);
    flex-shrink: 0;
}

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

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

.footer-copyright {
    font-size: 0.75rem;
    color: #6b7280;
}

.footer-legal {
    font-size: 0.625rem;
    color: #6b7280;
}

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

.footer-legal-links a {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #6b7280;
    transition: color var(--transition);
}

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

/* ═══════════════════════════════════════
   FLOATING CTA
   ═══════════════════════════════════════ */
@keyframes pulse-cta {
    0% { box-shadow: 0 0 0 0 rgba(253, 217, 3, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(253, 217, 3, 0); }
    100% { box-shadow: 0 0 0 0 rgba(253, 217, 3, 0); }
}

.floating-cta {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 64px;
    height: 64px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: pulse-cta 2s infinite;
    transition: transform var(--transition);
    text-decoration: none;
    color: var(--color-text-on-primary);
}

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

.floating-cta:active {
    transform: scale(0.95);
}

.floating-cta .material-symbols-outlined {
    font-size: 1.875rem;
}

/* ═══════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════
   CF7 FORM STYLES — Outlined Adaptive Label
   ═══════════════════════════════════════ */
.wpcf7 {
    margin: 0;
    padding: 0;
}

.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wpcf7-form p {
    margin: 0;
}

/* ─── 2-Column Form Row ─── */
.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ─── Field Container (holds label + input) ─── */
.wpcf7-form .form-col,
.wpcf7-form p:has(.wpcf7-form-control-wrap) {
    position: relative;
    padding-top: 8px;
}

/* ─── Label — Resting State (inside input) ─── */
.wpcf7-form .form-col > label,
.wpcf7-form p > label {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.9375rem;
    color: var(--color-text-2);
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    padding: 0 6px;
    background: transparent;
    line-height: 1;
    margin: 0;
    letter-spacing: normal;
    text-transform: none;
}

/* ─── Label — Floated State (on focus) ─── */
.wpcf7-form .form-col:focus-within > label,
.wpcf7-form p:focus-within > label {
    top: 8px;
    transform: translateY(-50%);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-on-primary);
    background: var(--color-primary);
    border-radius: 4px;
    padding: 2px 8px;
}

/* ─── Label — Floated State (has value, not focused) ─── */
.wpcf7-form .form-col.has-value > label,
.wpcf7-form p.has-value > label {
    top: 8px;
    transform: translateY(-50%);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-2);
    background: var(--color-surface-low);
    padding: 0 6px;
}

/* Focused overrides has-value */
.wpcf7-form .form-col.has-value:focus-within > label,
.wpcf7-form p.has-value:focus-within > label {
    color: var(--color-text-on-primary);
    background: var(--color-primary);
    border-radius: 4px;
    padding: 2px 8px;
}

/* ─── Label for Textarea — adjust top ─── */
.wpcf7-form .form-col:has(textarea) > label,
.wpcf7-form p:has(textarea) > label {
    top: 28px;
}

.wpcf7-form .form-col:focus-within:has(textarea) > label,
.wpcf7-form p:focus-within:has(textarea) > label,
.wpcf7-form .form-col.has-value:has(textarea) > label,
.wpcf7-form p.has-value:has(textarea) > label {
    top: 8px;
}

/* ─── Inputs ─── */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
    width: 100%;
    background: transparent;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-input);
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-text-1);
    transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

/* Hide placeholder when label acts as placeholder */
.wpcf7-form .form-col input::placeholder,
.wpcf7-form .form-col textarea::placeholder,
.wpcf7-form .form-col select option:first-child {
    color: transparent;
}

/* Show placeholder only when focused */
.wpcf7-form .form-col input:focus::placeholder,
.wpcf7-form .form-col textarea:focus::placeholder {
    color: var(--color-text-2);
    opacity: 0.5;
}

/* ─── Focus State ─── */
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    border-color: var(--color-text-1);
    border-width: 2px;
    padding: 13px 15px;
}

/* ─── Textarea ─── */
.wpcf7-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* ─── Select ─── */
.wpcf7-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-color: transparent;
    padding-right: 40px;
}

/* ─── Date input ─── */
.wpcf7-form input[type="date"] {
    padding-top: 14px;
    padding-bottom: 14px;
}

/* ─── Submit Button ─── */
.wpcf7-form input[type="submit"],
.wpcf7-submit {
    width: 100%;
    background: var(--color-primary);
    color: var(--color-text-on-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    padding: 20px;
    border: none;
    border-radius: var(--radius-card);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 16px rgba(253, 217, 3, 0.2);
}

.wpcf7-submit:hover {
    transform: scale(1.02);
}

.wpcf7-submit:active {
    opacity: 0.9;
}

/* ─── Response Messages ─── */
.wpcf7-response-output {
    margin: 16px 0 0 !important;
    padding: 16px 20px !important;
    border-radius: var(--radius-input) !important;
    font-size: 0.875rem;
    border: none !important;
}

.wpcf7-form.sent .wpcf7-response-output {
    background: #DCFCE7;
    color: #16A34A;
}

.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.aborted .wpcf7-response-output {
    background: #FEE2E2;
    color: #DC2626;
}

.wpcf7-not-valid-tip {
    color: #DC2626;
    font-size: 0.75rem;
    margin-top: 4px;
}

.wpcf7-spinner {
    display: none;
}

/* ═══════════════════════════════════════
   ABOUT PAGE STYLES
   ═══════════════════════════════════════ */
.about-story {
    padding: var(--section-padding);
    padding-left: 32px;
    padding-right: 32px;
}

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

.about-img {
    width: 100%;
    border-radius: var(--radius-card);
    object-fit: cover;
}

.about-img-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: var(--radius-card);
}

.about-text {
    color: var(--color-text-2);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-meta-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-meta-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-surface-low);
    padding: 16px;
    border-radius: var(--radius-input);
}

.about-meta-icon {
    color: var(--color-primary);
    font-size: 1.5rem;
}

.about-meta-card strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-2);
}

.about-meta-card span {
    font-size: 0.875rem;
    color: var(--color-text-1);
}

/* Vision & Mission */
.vision-mission-section {
    background: var(--color-surface-low);
    padding: var(--section-padding);
    padding-left: 32px;
    padding-right: 32px;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.vm-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
}

.vm-icon-wrap {
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.vm-icon-wrap .material-symbols-outlined {
    font-size: 1.5rem;
    color: var(--color-text-on-primary);
}

.vm-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.vm-text {
    color: var(--color-text-2);
    line-height: 1.7;
}

/* Objectives */
.objectives-section {
    padding: var(--section-padding);
    padding-left: 32px;
    padding-right: 32px;
}

.objectives-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.objective-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--color-surface-low);
    border-radius: var(--radius-card);
    transition: all var(--transition);
}

.objective-item:hover {
    box-shadow: var(--shadow-card);
}

.objective-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--color-primary);
    color: var(--color-text-on-primary);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.125rem;
    border-radius: 50%;
}

.objective-text {
    color: var(--color-text-2);
    line-height: 1.6;
    padding-top: 8px;
}

/* Timeline */
.timeline-section {
    background: var(--color-surface-low);
    padding: var(--section-padding);
    padding-left: 32px;
    padding-right: 32px;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -34px;
    top: 4px;
    width: 16px;
    height: 16px;
    background: var(--color-primary);
    border-radius: 50%;
    border: 3px solid var(--color-surface-low);
    z-index: 1;
}

.timeline-date {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--color-primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.timeline-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.timeline-desc {
    color: var(--color-text-2);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Licenses */
.licenses-section {
    padding: var(--section-padding);
    padding-left: 32px;
    padding-right: 32px;
}

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

.license-card {
    text-align: center;
    padding: 32px 24px;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-card);
    transition: all var(--transition);
}

.license-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.license-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.license-title {
    font-size: 1rem;
    margin-bottom: 8px;
}

.license-number {
    color: var(--color-primary-dark);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.license-issuer {
    color: var(--color-text-2);
    font-size: 0.75rem;
}

/* Director Card */
.director-section {
    background: var(--color-black);
    padding: var(--section-padding);
    padding-left: 32px;
    padding-right: 32px;
}

.director-card {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 600px;
    margin: 0 auto;
}

.director-photo-wrap {
    flex-shrink: 0;
}

.director-photo {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--color-primary);
}

.director-photo-placeholder {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(39, 39, 42, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--color-primary);
}

.director-photo-placeholder .material-symbols-outlined {
    font-size: 4rem;
    color: #6b7280;
}

.director-name {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 8px;
}

.director-title-text {
    color: #9ca3af;
    font-size: 1rem;
}

/* ═══════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════ */
.services-page-section {
    padding: var(--section-padding);
    padding-left: 32px;
    padding-right: 32px;
}

.services-page-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}

.services-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-title {
    font-size: 1rem;
    margin-bottom: 24px;
    color: var(--color-text-2);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-link {
    display: block;
    padding: 12px 16px;
    border-radius: var(--radius-input);
    font-size: 0.875rem;
    color: var(--color-text-2);
    transition: all var(--transition);
    border-left: 3px solid transparent;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: var(--color-surface-low);
    color: var(--color-text-1);
    border-left-color: var(--color-primary);
    font-weight: 600;
}

/* Service Full Section */
.service-section {
    padding-bottom: 64px;
    margin-bottom: 64px;
    border-bottom: 1px solid var(--color-border);
}

.service-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 40px;
}

.service-full--reverse {
    direction: rtl;
}

.service-full--reverse > * {
    direction: ltr;
}

.service-full-image {
    border-radius: var(--radius-card);
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-card);
}

.service-img-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
    border-radius: var(--radius-card);
    position: relative;
    overflow: hidden;
}

.service-img-placeholder .material-symbols-outlined {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 14rem;
    color: rgba(255, 255, 255, 0.35);
    transform: rotate(-10deg);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.service-full-icon-wrap {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.service-full-icon-wrap .material-symbols-outlined {
    font-size: 1.5rem;
    color: var(--color-text-on-primary);
}

.service-full-title {
    font-size: 2rem;
    margin-bottom: 16px;
}

.service-full-desc {
    color: var(--color-text-2);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-full-desc p {
    margin-bottom: 12px;
}

.service-full-desc ul,
.service-full-desc ol {
    margin-left: 20px;
    margin-bottom: 12px;
}

.service-full-desc li {
    list-style: disc;
    margin-bottom: 4px;
}

/* FAQ Accordion */
.faq-group {
    margin-top: 32px;
}

.faq-group-title {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-input);
    margin-bottom: 8px;
    overflow: hidden;
}

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

.faq-question:hover {
    background: var(--color-surface-container);
}

.faq-chevron {
    transition: transform var(--transition);
    font-size: 1.5rem;
    color: var(--color-text-2);
}

.faq-item.is-open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 20px;
}

.faq-item.is-open .faq-answer {
    max-height: 500px;
    padding: 16px 20px;
}

.faq-answer p {
    color: var(--color-text-2);
    line-height: 1.7;
    font-size: 0.875rem;
}

/* ═══════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════ */
.contact-section {
    padding: var(--section-padding);
    padding-left: 32px;
    padding-right: 32px;
}

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

.contact-info-title {
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

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

.contact-item-icon {
    width: 44px;
    height: 44px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon .material-symbols-outlined {
    font-size: 1.25rem;
    color: var(--color-text-on-primary);
}

.contact-item-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.contact-item-value {
    color: var(--color-text-2);
    font-size: 0.875rem;
    line-height: 1.5;
}

.contact-item-value a {
    color: var(--color-text-2);
}

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

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.contact-form-wrap {
    background: var(--color-surface-low);
    padding: 40px;
    border-radius: 2rem;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.05);
}

/* ═══════════════════════════════════════
   MAPS SECTION
   ═══════════════════════════════════════ */
.maps-section {
    background: var(--color-surface-low);
    padding: var(--section-padding);
    padding-left: 32px;
    padding-right: 32px;
}

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

.map-card {
    border-radius: var(--radius-card);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-card);
}

.map-title {
    padding: 20px 24px;
    font-size: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.map-embed {
    aspect-ratio: 16 / 9;
}

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

/* ═══════════════════════════════════════
   CTA STRIP
   ═══════════════════════════════════════ */
.cta-strip {
    background: var(--color-primary);
    padding: 64px 32px;
}

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

.cta-strip-title {
    font-size: 1.5rem;
    color: var(--color-text-on-primary);
    max-width: 600px;
}

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

.cta-strip .btn-primary:hover {
    transform: scale(1.05);
}

/* ═══════════════════════════════════════
   MISC / NO SERVICES
   ═══════════════════════════════════════ */
.no-services-message {
    text-align: center;
    padding: 80px 0;
    color: var(--color-text-2);
}

/* ═══════════════════════════════════════
   BOARD OF DIRECTORS
   ═══════════════════════════════════════ */
.bod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 40px;
}
.bod-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.bod-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-primary);
}
.bod-photo-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}
.bod-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bod-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.08) 100%);
}
.bod-placeholder span {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
}
.bod-info {
    padding: 24px;
    text-align: center;
}
.bod-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 8px;
}
.bod-role {
    font-size: 0.9rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* BOD MODAL */
.bod-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.bod-modal.active {
    opacity: 1;
    visibility: visible;
}
.bod-modal-backdrop {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.bod-modal-content {
    position: relative;
    background: var(--color-surface);
    width: 90%;
    max-width: 800px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    z-index: 10;
    transform: translateY(30px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.bod-modal.active .bod-modal-content {
    transform: translateY(0);
}
.bod-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    z-index: 11;
    transition: background 0.3s;
}
.bod-modal-close:hover {
    background: var(--color-primary);
    color: var(--color-on-primary);
}
.bod-modal-body {
    display: flex;
    flex-direction: column;
}
@media (min-width: 768px) {
    .bod-modal-body {
        flex-direction: row;
    }
}
.bod-modal-img-wrap {
    flex: 0 0 40%;
    aspect-ratio: 3/4;
    max-height: 500px;
    background: #111;
}
.bod-modal-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bod-modal-text {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#bod-modal-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}
.bod-modal-role {
    font-size: 1rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    display: inline-block;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}
.bod-modal-desc {
    font-size: 1.05rem;
    color: var(--color-gray-light);
    line-height: 1.6;
}

/* ═══════════════════════════════════════
   MOBILE BOTTOM APP BAR
   ═══════════════════════════════════════ */
.mobile-bottom-bar {
    display: none;
}

@media (max-width: 991px) {
    /* Hide old hamburger, desktop elements, and floating buttons */
    .main-nav,
    .nav-actions,
    .floating-cta { display: none !important; }
    
    /* Fix Stats Grid Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item:nth-child(2) {
        border-right: none !important;
    }
    .stat-item:nth-child(1), .stat-item:nth-child(2) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    /* Fix C.A.R.E Grid Mobile */
    .care-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Give space at bottom of page so content isn't hidden */
    body { padding-bottom: 90px; }

    .mobile-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 70px;
        background: rgba(15, 15, 20, 0.85); /* Dark frosted glass */
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        z-index: 1000;
        padding: 0 10px;
        align-items: center;
        justify-content: space-between;
    }
    
    .bottom-nav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        transition: color 0.3s;
        font-size: 0.70rem;
        gap: 4px;
        padding-top: 4px;
    }
    
    .bottom-nav-item.active,
    .bottom-nav-item:hover {
        color: var(--color-primary); /* Cyan / Theme primary color */
    }
    
    .bottom-nav-item span.material-symbols-outlined {
        font-size: 24px;
        margin-bottom: 2px;
    }
}
