/* ===================================================
   THE ADHITRI FILMS - main.css
   Brand Colors: #4A90E2 (Blue) | #1A2332 (Dark Navy)
=================================================== */

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-pad {
    padding: 6rem 0;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-medium);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header .section-desc {
    margin-top: .75rem;
}

.section-label {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.label-line {
    width: 32px;
    height: 2px;
    background: var(--primary);
    display: inline-block;
    flex-shrink: 0;
}

.section-header .section-label {
    justify-content: center;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .875rem 2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: .95rem;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    letter-spacing: .3px;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-100%) skewX(-12deg);
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.btn:hover::before {
    transform: translateX(100%) skewX(-12deg);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(74, 144, 226, .35);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(74, 144, 226, .45);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .6);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #1ebe5b;
    border-color: #1ebe5b;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, .35);
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 24, 42, .96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: all .4s ease;
}

.site-header.scrolled {
    background: rgba(10, 18, 32, .99);
    box-shadow: 0 2px 30px rgba(0, 0, 0, .5);
}

/* ── Header Wrap ── */
.header-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 1.5rem;
}

/* ── Logo ── */
.site-logo {
    flex-shrink: 0;
}

.site-logo img {
    height: 64px;
    width: auto;
    object-fit: contain;
    display: block;
}

.site-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

/* ── Primary Nav (centered) ── */
.primary-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .primary-nav {
        display: none;
    }
}

.primary-nav .nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.primary-nav .nav-list>li {
    display: flex;
    align-items: center;
    position: relative;
}

/* Pipe separator */
.primary-nav .nav-list>li+li::before {
    content: '|';
    color: rgba(255, 255, 255, .32);
    font-size: .75rem;
    flex-shrink: 0;
    margin: 0 2px;
    pointer-events: none;
}

.primary-nav .nav-list li a {
    display: flex;
    align-items: center;
    gap: .25rem;
    padding: .5rem .85rem;
    font-size: .77rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    position: relative;
    white-space: nowrap;
    transition: color .25s;
}

/* Gold underline on hover/active */
.primary-nav .nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: .85rem;
    right: .85rem;
    height: 2px;
    background: #ababab;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}

.primary-nav .nav-list li a:hover {
    color: #fff;
}

.primary-nav .nav-list li a:hover::after,
.primary-nav .nav-list li.current-menu-item>a::after {
    transform: scaleX(1);
    transform-origin: left;
}

.primary-nav .nav-list li.current-menu-item>a {
    color: #fff;
}

/* Dropdown arrow */
.primary-nav .nav-list li.menu-item-has-children>a::before {
    content: '▾';
    order: 1;
    font-size: .68rem;
    margin-left: 3px;
    color: rgba(255, 255, 255, .55);
}

/* Sub-menu */
.primary-nav .nav-list li ul.sub-menu {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    min-width: 200px;
    background: rgba(18, 8, 8, .96);
    border-top: 2px solid #c9a84c;
    list-style: none;
    padding: .4rem 0;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity .25s, transform .25s;
    z-index: 200;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .4);
}

.primary-nav .nav-list li ul.sub-menu>li::before {
    display: none;
}

.primary-nav .nav-list li:hover>ul.sub-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.primary-nav .nav-list li ul.sub-menu li {
    display: block;
}

.primary-nav .nav-list li ul.sub-menu li a {
    text-transform: none;
    letter-spacing: .4px;
    font-size: .82rem;
    padding: .6rem 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .72);
}

.primary-nav .nav-list li ul.sub-menu li a:hover {
    color: #c9a84c;
    background: rgba(255, 255, 255, .04);
    padding-left: 1.5rem;
}

.primary-nav .nav-list li ul.sub-menu li a::after {
    display: none;
}

/* ── Old class compat ── */
.header__inner {
    display: none !important;
}

.header__nav {
    display: none !important;
}

.header__actions {
    display: none !important;
}

/* ── Header Right ── */
.header-right {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0;
}

/* ── Book Now Pill Button ── */
.header-book-btn {
    display: inline-flex;
    align-items: center;
    padding: .6rem 1.5rem;
    background: #3a7bd5;
    color: #fff;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .3px;
    text-decoration: none;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 3px 16px rgba(58, 123, 213, .4);
    transition: background .25s, transform .2s, box-shadow .2s;
}

.header-book-btn:hover {
    background: #2a6ac5;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(58, 123, 213, .5);
    color: #fff;
}

/* ── Hamburger ── */
.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    transition: background .25s, transform .2s;
    position: relative;
    z-index: 1100;
}

@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }
}

.hamburger:hover,
.hamburger.active {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .25);
}

button.hamburger .hamburger__line {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    background-color: #ffffff !important;
    border-radius: 2px !important;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1), opacity .25s !important;
    pointer-events: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.hamburger.active .hamburger__line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active .hamburger__line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger__line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Search Overlay ── */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 14, 26, .95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
}

.search-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.search-overlay__inner {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    position: relative;
}

.search-overlay__close {
    position: absolute;
    top: -3rem;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
}

.search-overlay__close:hover {
    background: rgba(255, 255, 255, .16);
}

.search-overlay .search-form {
    display: flex;
    gap: .75rem;
}

.search-overlay .search-field {
    flex: 1;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color .2s;
}

.search-overlay .search-field::placeholder {
    color: rgba(255, 255, 255, .4);
}

.search-overlay .search-field:focus {
    border-color: var(--primary);
}

.search-overlay .search-submit {
    width: 52px;
    height: 52px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background .2s, transform .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-overlay .search-submit:hover {
    transform: scale(1.08);
}

/* Old classes kept for compat */
.mobile-menu-overlay {
    display: none;
}

.header-cta {
    display: none;
}


/* ── Overlay ── */
.mob-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 10, 18, .72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1200;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
}

.mob-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* ── Mobile Drawer ── */
.mob-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 88vw;
    background: linear-gradient(160deg, #0e1523 0%, #111e33 100%);
    z-index: 1300;
    display: flex;
    flex-direction: column;
    transform: translateX(105%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -12px 0 60px rgba(0, 0, 0, .5);
    overflow: hidden;
}

.mob-drawer.open {
    transform: translateX(0);
}

.mob-drawer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), transparent 70%);
}

.mob-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.mob-drawer__logo .logo-wordmark {
    gap: .5rem;
}

.mob-drawer__logo .logo-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
}

.mob-drawer__logo .logo-name {
    font-size: 1rem;
}

.mob-drawer__close {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, color .2s;
    flex-shrink: 0;
}

.mob-drawer__close:hover {
    background: rgba(255, 255, 255, .14);
    color: #fff;
}

.mob-drawer__nav {
    flex: 1;
    overflow-y: auto;
    padding: 1.2rem 0;
}

.mob-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mob-nav-list li {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity .35s ease calc(var(--i, 1) * 60ms),
        transform .35s ease calc(var(--i, 1) * 60ms);
}

.mob-drawer.open .mob-nav-list li {
    opacity: 1;
    transform: translateX(0);
}

.mob-nav-list li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: color .22s, background .22s, border-color .22s, padding-left .22s;
}

.mob-nav-list li a:hover,
.mob-nav-list li.mob-active a {
    color: #fff;
    background: rgba(74, 144, 226, .09);
    border-left-color: var(--primary);
    padding-left: 2rem;
}

.mob-num {
    font-family: var(--font-heading);
    font-size: .7rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    opacity: .7;
    flex-shrink: 0;
}

.mob-label {
    flex: 1;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: .2px;
}

.mob-arrow {
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .2s, transform .2s;
}

.mob-nav-list li a:hover .mob-arrow {
    opacity: 1;
    transform: translateX(0);
}

.mob-drawer__foot {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.mob-phone {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: rgba(255, 255, 255, .55);
    font-size: .85rem;
    text-decoration: none;
    transition: color .2s;
}

.mob-phone:hover {
    color: rgba(255, 255, 255, .9);
}

.mob-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .8rem;
    background: linear-gradient(135deg, var(--primary), #5ba3f5);
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(74, 144, 226, .35);
    transition: transform .2s, box-shadow .2s;
}

.mob-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(74, 144, 226, .5);
}

/* ── Mobile Overlay & Drawer Fix ── */
.mob-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 14, 26, .85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
}

.mob-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mob-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #0e1523;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, .5);
    overflow-y: auto;
}

.mob-drawer.open {
    transform: translateX(0);
}

@media (max-width: 480px) {
    .header-wrap {
        height: 70px;
        padding: 0 1rem;
    }

    .site-logo img {
        height: 48px;
    }

    .header-book-btn {
        padding: .5rem 1rem;
        font-size: .75rem;
    }
}

/* Old classes kept for compat */
.mobile-menu-overlay {
    display: none;
}

.header-cta {
    display: none;
}

.hamburger span {
    display: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-primary);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    overflow: hidden;
    padding: 120px 1.5rem 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(74, 144, 226, .15);
    border: 1px solid rgba(74, 144, 226, .25);
    animation: floatParticle linear infinite;
}

.particle-1 {
    width: 80px;
    height: 80px;
    left: 10%;
    top: 20%;
    animation-duration: 12s;
    animation-delay: 0s;
}

.particle-2 {
    width: 50px;
    height: 50px;
    left: 80%;
    top: 15%;
    animation-duration: 15s;
    animation-delay: -3s;
}

.particle-3 {
    width: 120px;
    height: 120px;
    left: 5%;
    top: 60%;
    animation-duration: 18s;
    animation-delay: -6s;
}

.particle-4 {
    width: 40px;
    height: 40px;
    left: 90%;
    top: 70%;
    animation-duration: 10s;
    animation-delay: -2s;
}

.particle-5 {
    width: 60px;
    height: 60px;
    left: 50%;
    top: 5%;
    animation-duration: 14s;
    animation-delay: -8s;
}

.particle-6 {
    width: 100px;
    height: 100px;
    left: 70%;
    top: 80%;
    animation-duration: 16s;
    animation-delay: -4s;
}

.particle-7 {
    width: 30px;
    height: 30px;
    left: 25%;
    top: 85%;
    animation-duration: 11s;
    animation-delay: -1s;
}

.particle-8 {
    width: 70px;
    height: 70px;
    left: 40%;
    top: 40%;
    animation-duration: 20s;
    animation-delay: -10s;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: .5;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: .5;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: rgba(74, 144, 226, .2);
    border: 1px solid rgba(74, 144, 226, .4);
    backdrop-filter: blur(10px);
    color: var(--white);
    border-radius: var(--radius-full);
    padding: .45rem 1.2rem;
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: .7;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, .3);
    white-space: pre-line;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, .85);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: .5px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    font-family: var(--font-heading);
    line-height: 1.1;
}

.stat-label {
    display: block;
    font-size: .8rem;
    color: rgba(255, 255, 255, .7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: .25rem;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, .2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: rgba(255, 255, 255, .6);
    font-size: .8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounceScroll 2s infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .5), transparent);
}

@keyframes bounceScroll {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text {
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 1.25rem 0 2rem;
}

.about-features {
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-weight: 500;
    color: var(--text-dark);
}

.feature-check {
    width: 22px;
    height: 22px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.about-image-wrap {
    position: relative;
}

.about-img-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform .6s ease;
}

.about-img:hover {
    transform: scale(1.03);
}

.about-img-badge {
    position: absolute;
    bottom: 2rem;
    left: -2rem;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-img-badge strong {
    display: block;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--primary);
}

.about-img-badge span {
    display: block;
    font-size: .8rem;
    color: var(--text-medium);
}

.badge-icon {
    font-size: 2rem;
}

.about-img-placeholder {
    min-height: 450px;
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-inner {
    text-align: center;
    color: var(--medium-gray);
    padding: 2rem;
}

.placeholder-inner p {
    margin-top: 1rem;
    font-size: .9rem;
}

/* ===== BRAND SLIDER ===== */
.brand-slider-section {
    background: var(--off-white);
    padding: 3rem 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    overflow: hidden;
}

.brand-label {
    text-align: center;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.brand-track-wrap {
    position: relative;
    display: flex;
    overflow: hidden;
}

.brand-track-wrap::before,
.brand-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.brand-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--off-white), transparent);
}

.brand-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--off-white), transparent);
}

.brand-track {
    display: flex;
    gap: 3rem;
    align-items: center;
    animation: scrollBrands 25s linear infinite;
}

.brand-track-clone {
    animation-delay: -12.5s;
}

.brand-slide {
    flex-shrink: 0;
}

.brand-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: var(--transition);
}

.brand-logo:hover {
    filter: grayscale(0) opacity(1);
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - 3rem));
    }
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: var(--secondary);
}

.gallery-section .section-title {
    color: var(--white);
}

.gallery-section .section-label {
    color: var(--primary-light);
}

.gallery-section .label-line {
    background: var(--primary-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 3/4;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.gallery-card:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--secondary-light);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity .4s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    transform: translateY(15px);
    transition: transform .4s ease;
}

.gallery-card:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-cat {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-light);
    display: block;
    margin-bottom: .4rem;
}

.gallery-title {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: .5rem;
}

.gallery-title a {
    color: inherit;
    text-decoration: none;
    transition: color .3s ease;
}

.gallery-title a:hover {
    color: var(--primary-light);
}

.gallery-excerpt {
    font-size: .8rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: .75rem;
}

.gallery-excerpt a {
    color: inherit;
    text-decoration: none;
    transition: color .3s ease;
}

.gallery-excerpt a:hover {
    color: var(--white);
}

.gallery-view-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--white);
    font-size: .8rem;
    font-weight: 600;
    padding: .4rem .9rem;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.gallery-view-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--off-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--light-gray);
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item.faq-open {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(74, 144, 226, .12);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    background: none;
    border: none;
    font-family: inherit;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-item.faq-open .faq-question {
    color: var(--primary);
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    flex-shrink: 0;
    font-family: var(--font-primary);
}

.faq-arrow {
    margin-left: auto;
    flex-shrink: 0;
    color: var(--medium-gray);
    transition: transform .3s ease;
}

.faq-item.faq-open .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4, 0, .2, 1);
}

.faq-item.faq-open .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem 4rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.faq-admin-note {
    color: var(--text-light);
    font-size: .85rem;
    margin-top: .5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
}

.faq-cta-card {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
}

.faq-cta-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.faq-cta-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: .75rem;
}

.faq-cta-card p {
    color: rgba(255, 255, 255, .8);
    margin-bottom: 1.5rem;
}

.faq-cta-card .btn {
    margin-bottom: 1rem;
    width: 100%;
    justify-content: center;
}

.faq-sidebar {
    position: sticky;
    top: 100px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--secondary);
}

.contact-section .section-title {
    color: var(--white);
}

.contact-section .section-desc {
    color: rgba(255, 255, 255, .7);
}

.contact-section .section-label {
    color: var(--primary-light);
}

.contact-section .label-line {
    background: var(--primary-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-card:hover {
    background: rgba(74, 144, 226, .12);
    border-color: rgba(74, 144, 226, .35);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: .9rem;
    color: rgba(255, 255, 255, .6);
    font-weight: 500;
    margin-bottom: .25rem;
    font-family: var(--font-primary);
}

.contact-card p,
.contact-card a {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--primary-light);
}

.contact-social h4 {
    color: rgba(255, 255, 255, .6);
    font-size: .85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    font-weight: 500;
}

.social-row {
    display: flex;
    gap: .75rem;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-facebook {
    background: #1877F2;
}

.social-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-youtube {
    background: #FF0000;
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .3);
}

/* Contact Form */
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
    font-size: 1.75rem;
    margin-bottom: .5rem;
}

.contact-form-card>p {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: .875rem;
    color: var(--text-dark);
    margin-bottom: .4rem;
}

.req {
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .875rem 1.1rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: .95rem;
    color: var(--text-dark);
    background: var(--off-white);
    transition: border-color .3s, box-shadow .3s;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, .12);
    background: var(--white);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238A9BB0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-success {
    background: #ECFDF5;
    border: 1px solid #6EE7B7;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    color: #065F46;
    margin-bottom: 1.5rem;
}

.form-success svg {
    margin: 0 auto .75rem;
    color: #10B981;
}

.form-error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
    color: #991B1B;
    margin-bottom: 1.5rem;
}

/* Contact Page */
.contact-page-section {
    background: var(--off-white);
}

.contact-page-section .contact-info {
    background: var(--secondary);
    border-radius: var(--radius-xl);
    padding: 3rem;
    overflow: hidden;
}

@media (max-width: 768px) {
    .contact-page-section .contact-info {
        padding: 2rem 1.5rem;
        border-radius: var(--radius-lg);
    }
}

.contact-page-section .contact-card {
    background: rgba(255, 255, 255, .08);
}

.contact-card p,
.contact-card a {
    word-break: break-word;
}

.contact-whatsapp-box {
    margin: 1.5rem 0;
}

@media (max-width: 480px) {
    .contact-whatsapp-box .btn-lg {
        padding: .8rem 1.2rem;
        font-size: .9rem;
    }
}

.contact-map {
    margin-top: 1.5rem;
    border-radius: var(--radius-md);
    overflow: hidden;
}

/* ===== BLOG SECTION ===== */
.blog-section {
    background: var(--off-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .35s ease, box-shadow .35s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
}

.blog-date-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    padding: .4rem .75rem;
    text-align: center;
    line-height: 1.2;
}

.blog-day {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.blog-month {
    display: block;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: .75rem;
}

.blog-cat {
    background: rgba(74, 144, 226, .1);
    color: var(--primary);
    font-size: .75rem;
    font-weight: 600;
    padding: .25rem .75rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-read-time,
.blog-author {
    font-size: .8rem;
    color: var(--text-light);
}

.blog-title {
    font-size: 1.15rem;
    margin-bottom: .75rem;
}

.blog-title a {
    color: var(--text-dark);
}

.blog-title a:hover {
    color: var(--primary);
}

.blog-excerpt {
    font-size: .9rem;
    color: var(--text-medium);
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--primary);
    font-size: .875rem;
    font-weight: 600;
}

.blog-read-more svg {
    transition: transform .3s;
}

.blog-read-more:hover svg {
    transform: translateX(4px);
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

.blog-cta .btn-outline {
    color: var(--secondary);
    border-color: var(--secondary);
}

.blog-cta .btn-outline:hover {
    background: var(--secondary);
    color: var(--white);
}

.blog-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ===== PAGE BANNER ===== */
.page-banner {
    min-height: 320px;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
    padding: 120px 0 60px;
}

.page-banner-sm {
    min-height: 220px;
    padding: 100px 0 40px;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 35, 50, .7);
}

.page-banner-content {
    position: relative;
    z-index: 1;
}

.page-banner-content h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: .75rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, .7);
}

.breadcrumb a:hover {
    color: var(--white);
}

.bc-sep {
    color: rgba(255, 255, 255, .4);
}

/* ===== ABOUT PAGE ===== */
.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-story-text {
    color: var(--text-medium);
    line-height: 1.8;
    margin: 1.25rem 0 2rem;
}

.mission-box {
    background: linear-gradient(135deg, rgba(74, 144, 226, .07), rgba(91, 179, 196, .07));
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.mission-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.mission-box h4 {
    font-size: 1.1rem;
    margin-bottom: .5rem;
}

.mission-box p {
    color: var(--text-medium);
}

.about-page-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Stats */
.stats-section {
    background: var(--secondary);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.stat-text {
    display: block;
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
    margin-top: .4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Team */
.team-section {
    background: var(--off-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .35s ease, box-shadow .35s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.team-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-social-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 35, 50, .7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    opacity: 0;
    transition: opacity .3s;
}

.team-card:hover .team-social-overlay {
    opacity: 1;
}

.team-social-link {
    width: 38px;
    height: 38px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform .3s;
}

.team-social-link:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

.team-info {
    padding: 1.25rem;
    text-align: center;
}

.team-name {
    font-size: 1.1rem;
    margin-bottom: .25rem;
}

.team-role {
    font-size: .85rem;
    color: var(--primary);
    font-weight: 600;
    display: block;
    margin-bottom: .75rem;
}

.team-bio {
    font-size: .875rem;
    color: var(--text-medium);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* CTA Strip */
.cta-strip {
    background: var(--gradient-primary);
    padding: 5rem 0;
}

.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-strip-text h2 {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: .5rem;
}

.cta-strip-text p {
    color: rgba(255, 255, 255, .75);
    font-size: 1.05rem;
}

/* ===== GALLERY PAGE ===== */
.gallery-filter-tabs {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-tab {
    padding: .6rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: .875rem;
    border: 2px solid var(--light-gray);
    background: var(--white);
    color: var(--text-medium);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: .4rem;
}

.filter-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(74, 144, 226, .35);
}

.filter-count {
    font-size: .75rem;
    opacity: .75;
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.gallery-page-item {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gallery-page-item.hidden {
    display: none;
}

.gallery-actions {
    display: flex;
    gap: .5rem;
    margin-top: .75rem;
}

.gallery-lightbox-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.gallery-lightbox-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.gallery-pagination {
    text-align: center;
    margin-top: 3rem;
}

.gallery-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .9rem;
    border: 2px solid var(--light-gray);
    color: var(--text-medium);
    transition: var(--transition);
    margin: .25rem;
}

.gallery-pagination .page-numbers:hover,
.gallery-pagination .page-numbers.current {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.gallery-page-section {
    background: var(--off-white);
}

/* Lightbox */
.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lightbox-modal.open {
    display: flex;
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    cursor: pointer;
    z-index: 1;
}

.lightbox-content {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 90vh;
    pointer-events: none;
    /* Image wrapper shouldn't block clicks to buttons */
}

.lightbox-img-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    transition: opacity 0.3s ease;
    pointer-events: auto;
    /* Image remains interactive for right-click etc */
}

.lightbox-controls {
    position: absolute;
    inset: 0;
    z-index: 100;
    pointer-events: none;
    /* Container doesn't block clicks */
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    pointer-events: auto;
    /* Active elements are clickable */
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    z-index: 110;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: white;
    color: black;
    transform: scale(1.1);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    top: 50%;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-title {
    color: white;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    opacity: 0.8;
}

@media (max-width: 768px) {

    .lightbox-prev,
    .lightbox-next {
        width: 48px;
        height: 48px;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
    }
}

.lightbox-title {
    color: white;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 768px) {

    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
    }
}

/* ===== SINGLE POST ===== */
.single-inner {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: start;
}

.single-thumb {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
}

.single-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.single-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1.5rem;
}

.single-text {
    line-height: 1.9;
    color: var(--text-medium);
}

.single-text h2,
.single-text h3 {
    color: var(--text-dark);
    margin: 1.5rem 0 .75rem;
}

.single-text p {
    margin-bottom: 1rem;
}

.single-tags {
    margin-top: 1.5rem;
}

.single-tags .tag-label {
    font-weight: 600;
}

.single-tags a {
    color: var(--primary);
    font-size: .85rem;
}

.post-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
}

.post-nav-btn {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
    color: var(--primary);
    font-size: .9rem;
}

.post-nav-next {
    margin-left: auto;
}

.comments-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
}

/* Sidebar */
.single-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--light-gray);
}

.sidebar-post {
    display: flex;
    gap: .75rem;
    align-items: center;
    padding: .75rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.sidebar-post:last-child {
    border-bottom: none;
}

.sidebar-post-img {
    width: 60px;
    height: 50px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.sidebar-post-title {
    font-size: .875rem;
    font-weight: 600;
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-post-title:hover {
    color: var(--primary);
}

.sidebar-post small {
    display: block;
    color: var(--text-light);
    font-size: .75rem;
    margin-top: .2rem;
}

.sidebar-cats li {
    padding: .4rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.sidebar-cats a {
    color: var(--text-medium);
    font-size: .9rem;
    display: flex;
    justify-content: space-between;
}

.sidebar-cats a:hover {
    color: var(--primary);
}

.sidebar-cta {
    background: var(--gradient-primary);
    color: var(--white);
}

.sidebar-cta-inner {
    text-align: center;
}

.sidebar-cta-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.sidebar-cta h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: .5rem;
}

.sidebar-cta p {
    color: rgba(255, 255, 255, .75);
    font-size: .875rem;
    margin-bottom: 1.25rem;
}

/* ===== PROJECT SINGLE ===== */
.project-single-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 3rem;
}

.project-single-img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
}

.project-info-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
}

.project-meta-tags {
    display: flex;
    gap: .75rem;
    margin-bottom: 1rem;
    align-items: center;
}

.project-cat-tag {
    background: rgba(74, 144, 226, .1);
    color: var(--primary);
    font-size: .8rem;
    font-weight: 600;
    padding: .3rem .9rem;
    border-radius: var(--radius-full);
}

.project-date,
.project-single-title {
    color: var(--text-light);
    font-size: .85rem;
}

.project-single-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.project-single-excerpt {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

/* Project Custom Gallery */
.project-custom-gallery {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 4rem 0;
    width: 100%;
}

.project-gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    background: var(--off-white);
    aspect-ratio: 4/5;
    display: block;
    width: 100%;
}

.project-gallery-item a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

.project-gallery-item img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    max-width: 100% !important;
    transition: var(--transition-slow);
}

.project-gallery-item:hover img {
    transform: scale(1.05);
}

.project-video-wrap {
    margin-top: 2rem;
}

.project-video-wrap h3 {
    margin-bottom: 1rem;
}

.project-video-embed {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.project-details-card {
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 2rem;
    position: sticky;
    top: 100px;
}

.project-details-card h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--light-gray);
}

.project-detail-row {
    display: flex;
    justify-content: space-between;
    padding: .75rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.detail-label {
    font-size: .85rem;
    color: var(--text-light);
}

.detail-value {
    font-weight: 600;
    font-size: .9rem;
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--text-light);
}

.empty-state svg {
    margin: 0 auto 1.5rem;
    color: var(--medium-gray);
}

.empty-state h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: .75rem;
}

.empty-state p {
    font-size: .95rem;
    max-width: 400px;
    margin: 0 auto;
}

/* Entry Content (WP Editor Content) */
.entry-content h2,
.entry-content h3 {
    margin: 1.5rem 0 .75rem;
    color: var(--text-dark);
}

.entry-content p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.entry-content ul,
.entry-content ol {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--text-medium);
}

.entry-content img {
    border-radius: var(--radius-md);
    margin: 1rem 0;
}

.entry-content a {
    color: var(--primary);
    font-weight: 500;
}

.entry-content a:hover {
    text-decoration: underline;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--secondary);
    color: var(--white);
}

.footer-top {
    padding: 5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(10);
}

.footer-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    display: block;
    margin-bottom: .75rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, .6);
    font-size: .95rem;
    margin: 1rem 0 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: .75rem;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-primary);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, .7);
    font-size: .925rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: .875rem;
}

.footer-contact-list li {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, .7);
}

.footer-contact-list a:hover {
    color: var(--primary-light);
}

.contact-icon {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, .45);
    font-size: .85rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.heart {
    color: #ef4444;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 500;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(74, 144, 226, .4);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    border: none;
    cursor: pointer;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(74, 144, 226, .5);
}

/* ===== SPINNER ===== */
.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ===== RESPONSIVE: Tablet ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-wrap {
        order: -1;
    }

    .about-img {
        height: 350px;
    }

    .about-img-badge {
        left: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        position: static;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .single-inner {
        grid-template-columns: 1fr;
    }

    .single-sidebar {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .about-page-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .project-info-grid {
        grid-template-columns: 1fr;
    }

    .project-details-card {
        position: static;
    }

    .blog-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== RESPONSIVE: Mobile ===== */
@media (max-width: 768px) {
    .section-pad {
        padding: 4rem 0;
    }

    .hamburger {
        display: flex;
    }

    /* Hide desktop nav and action buttons on mobile */
    .primary-nav {
        display: none;
    }

    .header-book-btn {
        display: none;
    }

    /* Tighten header on mobile */
    .header-wrap {
        height: 60px;
        padding: 0 1rem;
        gap: 1rem;
    }

    .site-header .container {
        padding: 0 1rem;
    }

    .site-logo img {
        height: 42px;
    }

    .hero-title {
        white-space: normal;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-num {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-archive-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-strip-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .contact-form-card {
        padding: 2rem 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .about-grid {
        gap: 2rem;
    }

    .page-banner {
        padding: 90px 0 40px;
    }

    .filter-tab {
        font-size: .8rem;
        padding: .5rem 1.1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-page-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-stats {
        gap: 1rem;
    }
}

/* ===================================================
   DIRECTOR PROFILE SECTION
=================================================== */
.director-section {
    background: var(--white);
}

.director-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 5rem;
    align-items: start;
    margin-top: 3rem;
}

/* Photo Column */
.director-photo-col {
    position: sticky;
    top: 100px;
}

.director-photo-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.director-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform .6s ease;
}

.director-photo-frame:hover .director-photo {
    transform: scale(1.03);
}

.director-photo-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    background: rgba(26, 35, 50, .85);
    backdrop-filter: blur(10px);
    color: var(--white);
    border-radius: var(--radius-full);
    padding: .4rem 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, .15);
}

.director-photo-placeholder {
    min-height: 440px;
    background: linear-gradient(135deg, var(--light-gray), var(--off-white));
    border-radius: var(--radius-xl);
    border: 2px dashed var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.director-photo-placeholder .placeholder-inner {
    color: var(--text-light);
}

.director-photo-placeholder svg {
    margin: 0 auto 1rem;
    color: var(--medium-gray);
    display: block;
}

.director-role-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-top: 1.25rem;
    transition: var(--transition);
}

.director-role-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(74, 144, 226, .1);
}

.director-role-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.director-role-info strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
}

.director-role-info span {
    display: block;
    font-size: .85rem;
    color: var(--primary);
    font-weight: 500;
}




.director-name-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin: .5rem 0 .75rem;
    line-height: 1.1;
}

.director-title-tag {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    font-size: .9rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.director-title-tag svg {
    flex-shrink: 0;
    color: var(--primary);
}

.director-bio {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.85;
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 3px solid var(--primary);
}

/* Education */
.director-education {
    margin-bottom: 2rem;
}

.dir-section-label {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.dir-section-label svg {
    color: var(--primary);
}

.edu-cards {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.edu-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(74, 144, 226, .06), rgba(91, 179, 196, .04));
    border: 1px solid rgba(74, 144, 226, .15);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    transition: var(--transition);
}

.edu-card:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(74, 144, 226, .1), rgba(91, 179, 196, .07));
    transform: translateX(4px);
}

.edu-card-num {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary);
    opacity: .4;
    flex-shrink: 0;
    width: 2.5rem;
    line-height: 1;
}

.edu-card-text {
    font-size: .95rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.45;
}

/* Worked With */
.director-worked-with {
    margin-bottom: 1.5rem;
}

.worked-with-tags {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

.brand-tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--secondary);
    color: var(--white);
    font-size: .85rem;
    font-weight: 600;
    padding: .45rem 1rem;
    border-radius: var(--radius-full);
    letter-spacing: .3px;
    transition: var(--transition);
}

.brand-tag svg {
    color: var(--primary-light);
    flex-shrink: 0;
}

.brand-tag:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* ===== Responsive: Director ===== */
@media (max-width: 1024px) {
    .director-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .director-photo-col {
        position: static;
    }

    .director-photo {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .director-photo {
        height: 300px;
    }

    .director-name-heading {
        font-size: 2rem;
    }

    .director-title-tag {
        font-size: .85rem;
    }
}

/* ===================================================
   SERVICES PAGE
=================================================== */

/* Intro Stats Row */
.svc-intro-section {
    background: var(--white);
}

.svc-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 3rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    flex-wrap: wrap;
}

.svc-stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 3rem;
}

.svc-stat-num {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    font-family: var(--font-heading);
    line-height: 1;
}

.svc-stat-label {
    font-size: .85rem;
    color: rgba(255, 255, 255, .75);
    margin-top: .4rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.svc-stat-sep {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, .2);
}

/* Service Cards Grid */
.svc-cards-section {
    background: var(--dark-bg);
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.svc-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    cursor: default;
}

.svc-card:hover {
    background: rgba(255, 255, 255, .09);
    border-color: var(--primary-alpha, rgba(180, 140, 100, .4));
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.svc-card-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.svc-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-heading);
}

.svc-card-desc {
    font-size: .9rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.7;
    flex: 1;
}

.svc-features-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.svc-features-list li {
    font-size: .85rem;
    color: rgba(255, 255, 255, .75);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.svc-check {
    color: var(--primary);
    font-weight: 700;
    font-size: .9rem;
}

.svc-card-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--primary);
    font-weight: 600;
    font-size: .85rem;
    margin-top: .5rem;
    transition: gap .25s ease;
}

.svc-card-btn:hover {
    gap: .8rem;
    color: var(--white);
}

.svc-card:hover .svc-card-btn {
    gap: .8rem;
}

/* Process Steps */
.svc-process-section {
    background: var(--white);
}

.svc-process-steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.svc-process-step {
    flex: 1;
    min-width: 200px;
    background: linear-gradient(135deg, var(--light-bg), var(--white));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all .3s ease;
}

.svc-process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.svc-step-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
    opacity: .3;
    line-height: 1;
    margin-bottom: .75rem;
}

.svc-step-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .5rem;
}

.svc-step-content p {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.svc-process-arrow {
    font-size: 1.8rem;
    color: var(--primary);
    padding: 0 .75rem;
    opacity: .5;
    flex-shrink: 0;
}

/* Team Section */
.svc-team-section {
    background: var(--dark-bg);
}

.svc-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.svc-team-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all .35s ease;
}

.svc-team-card:hover {
    background: rgba(255, 255, 255, .09);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.svc-team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, .12);
}

.svc-team-icon {
    font-size: 2.2rem;
}

.svc-team-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-heading);
    margin-bottom: .3rem;
}

.svc-team-role {
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .75rem;
}

.svc-team-bio {
    font-size: .85rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .svc-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .svc-stats-row {
        gap: 1rem;
    }

    .svc-stat-box {
        padding: 0 1.5rem;
    }

    .svc-stat-sep {
        display: none;
    }

    .svc-grid {
        grid-template-columns: 1fr;
    }

    .svc-process-steps {
        flex-direction: column;
    }

    .svc-process-arrow {
        transform: rotate(90deg);
        padding: .25rem 0;
    }

    .svc-team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .svc-team-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive: Project Gallery */
@media (max-width: 1024px) {
    .project-custom-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .project-custom-gallery {
        grid-template-columns: 1fr !important;
        margin: 2rem 0;
    }
}