/* ============================================================
   TARUN TOUR AND TRAVEL — Inner Pages Stylesheet (pages.css)
   Extends style.css — same design system, new page components
============================================================ */

/* ────────────────────────────────────────────────
   INNER PAGE HERO / BANNER
──────────────────────────────────────────────── */
.page-hero {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.page-hero:hover .page-hero-bg {
    transform: scale(1);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(10, 35, 66, 0.85) 0%,
            rgba(10, 35, 66, 0.55) 60%,
            rgba(10, 35, 66, 0.75) 100%);
    z-index: 1;
}

/* Decorative diagonal stripe */
/* .page-hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--warm-white);
    clip-path: ellipse(55% 100% at 50% 100%);
} */

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 1rem;
}

.page-hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.9rem;
    animation: fadeInDown 0.7s ease both;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.1rem;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.page-hero-title em {
    color: var(--gold);
    font-style: italic;
}

.page-hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 560px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.25s both;
}

/* Breadcrumb */
.page-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    animation: fadeInUp 0.8s ease 0.35s both;
}

.page-breadcrumb a {
    color: var(--gold-light);
    transition: var(--transition);
}

.page-breadcrumb a:hover {
    color: var(--gold);
}

.page-breadcrumb .sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.65rem;
}

.page-breadcrumb .current {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ────────────────────────────────────────────────
   SHARED INNER-PAGE NAV OVERRIDE
   (Navbar always scrolled/dark on inner pages)
──────────────────────────────────────────────── */
.inner-page #mainNavbar {
    background: var(--navy) !important;
    padding: 0.8rem 0 !important;
    box-shadow: 0 4px 20px rgba(10, 35, 66, 0.35) !important;
}

/* ────────────────────────────────────────────────
   ===== ABOUT PAGE =====
──────────────────────────────────────────────── */

/* Our Story Section */
.story-section {
    background: var(--warm-white);
}

.story-lead {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy);
    line-height: 1.6;
    font-weight: 500;
    border-left: 4px solid var(--gold);
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.story-body p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.1rem;
}

.story-image-stack {
    position: relative;
}

.story-img-main {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.story-img-accent {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    width: 200px;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.story-founded-badge {
    position: absolute;
    top: 2rem;
    right: -1.5rem;
    background: var(--gold);
    color: var(--navy);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    text-align: center;
    line-height: 1.1;
}

.story-founded-badge .yr {
    font-size: 1.7rem;
    font-family: var(--font-display);
}

.story-founded-badge .lbl {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ── Mission / Vision Cards */
.mv-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--gold));
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.mv-card h3 {
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 0.8rem;
}

.mv-card p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.75;
}

/* ── Timeline */
.timeline-section {
    background: var(--off-white);
}

.timeline {
    position: relative;
    padding: 1rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--navy));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 2.5rem);
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 2.5rem);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 1.25rem;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--gold);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--gold);
    z-index: 1;
}

.timeline-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    max-width: 400px;
    width: 100%;
    transition: var(--transition-slow);
}

.timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.timeline-year {
    display: inline-block;
    background: var(--navy);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.25rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    letter-spacing: 0.06em;
}

.timeline-card h4 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.timeline-card p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.65;
    margin: 0;
}

/* ── About Stats Bar */
.about-stats-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 4rem 0;
}

.about-stat-item {
    text-align: center;
    padding: 1.5rem;
}

.about-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.about-stat-plus {
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 700;
}

.about-stat-label {
    display: block;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-stat-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.2rem;
}

/* ── Team Section */
.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.team-img-wrap {
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-card:hover .team-img-wrap img {
    transform: scale(1.06);
}

.team-img-placeholder {
    width: 100px;
    height: 100px;
    background: rgba(232, 184, 75, 0.15);
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--gold);
    font-family: var(--font-display);
    font-weight: 700;
}

.team-body {
    padding: 1.5rem;
}

.team-body h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.82rem;
    color: var(--gold-dark);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.team-body p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.6;
}

/* ── Values Grid */
.values-section {
    background: var(--warm-white);
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.value-card:hover::after {
    transform: scaleX(1);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--navy);
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--navy);
    color: var(--gold);
}

.value-card h4 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.65;
    margin: 0;
}

/* ────────────────────────────────────────────────
   ===== SERVICES PAGE =====
──────────────────────────────────────────────── */

/* Service Detail Card */
.service-detail-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    margin-bottom: 1rem;
}

.service-detail-card:hover {
    box-shadow: var(--shadow-xl);
}

.service-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    display: block;
}

.service-detail-card:hover .service-detail-img {
    transform: scale(1.04);
}

.service-img-box {
    height: 340px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    position: relative;
}

.service-img-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 35, 66, 0.08), transparent);
    pointer-events: none;
}

.service-detail-body {
    padding: 2.5rem;
}

.service-detail-number {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    color: var(--off-white);
    line-height: 1;
    margin-bottom: -1rem;
    display: block;
}

.service-detail-body h2 {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.service-detail-body .service-tagline {
    font-size: 0.9rem;
    color: var(--gold-dark);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.service-detail-body p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.service-highlight-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.service-highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-mid);
}

.service-highlight-list li i {
    color: var(--gold);
    font-size: 0.8rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.service-price-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 0.75rem 1.25rem;
    margin-bottom: 1.5rem;
}

.service-price-tag .price-label {
    font-size: 0.78rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.service-price-tag .price-value {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
}

.service-price-tag .price-unit {
    font-size: 0.78rem;
    color: var(--text-mid);
}

.btn-service-book {
    background: var(--navy);
    color: var(--gold);
    border: 2px solid var(--navy);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-service-book:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ── Process Steps */
.process-section {
    background: var(--off-white);
}

.process-step {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 2.5rem;
    right: -10%;
    width: 20%;
    height: 2px;
    background: linear-gradient(to right, var(--gold), rgba(232, 184, 75, 0.2));
    display: none;
}

@media (min-width: 992px) {
    .process-step:not(:last-child)::after {
        display: block;
    }
}

.process-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 20px rgba(10, 35, 66, 0.25);
    transition: var(--transition);
}

.process-step:hover .process-number {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.1);
}

.process-step h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.6;
}

/* ── Coverage Map */
.coverage-section {
    background: linear-gradient(165deg, var(--navy), var(--navy-mid));
}

.coverage-section .section-title {
    color: var(--white);
}

.coverage-section .section-eyebrow {
    color: var(--gold-light);
}

.coverage-section .section-desc {
    color: rgba(255, 255, 255, 0.6);
}

.coverage-city {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    transition: var(--transition);
}

.coverage-city i {
    color: var(--gold);
    font-size: 0.8rem;
}

.coverage-city:hover {
    background: rgba(232, 184, 75, 0.12);
    border-color: var(--gold);
    color: var(--gold);
}

/* ── Packages CTA */
.services-packages-cta {
    background: var(--warm-white);
}

.cta-big-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: var(--radius-xl);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-big-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(232, 184, 75, 0.06);
}

.cta-big-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(232, 184, 75, 0.04);
}

.cta-big-card h2 {
    color: var(--white);
    font-size: 2.6rem;
    margin-bottom: 0.75rem;
}

.cta-big-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto 2rem;
}

.btn-cta-gold {
    background: var(--gold);
    color: var(--navy);
    border: 2px solid var(--gold);
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(232, 184, 75, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    position: relative;
    z-index: 1;
}

.btn-cta-gold:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(232, 184, 75, 0.5);
}

.btn-cta-outline-white {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    position: relative;
    z-index: 1;
}

.btn-cta-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--white);
}

/* ────────────────────────────────────────────────
   ===== GALLERY PAGE =====
──────────────────────────────────────────────── */

.gallery-section {
    background: var(--warm-white);
}

/* Filter tabs */
.gallery-filters {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    background: transparent;
    border: 2px solid var(--off-white);
    color: var(--text-mid);
    padding: 0.55rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.gallery-filter-btn i {
    font-size: 0.8rem;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--gold);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-slow);
    aspect-ratio: 1;
}

.gallery-item.tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item.wide {
    grid-column: span 2;
    aspect-ratio: auto;
}

.gallery-item.tall.wide {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    display: block;
}

.gallery-item:hover {
    transform: scale(1.01);
    z-index: 2;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 35, 66, 0.8) 0%, transparent 55%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.2rem;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-label {
    color: var(--white);
}

.gallery-item-label h4 {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 0.15rem;
}

.gallery-item-label span {
    font-size: 0.72rem;
    color: var(--gold-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.gallery-zoom-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.gallery-item:hover .gallery-zoom-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Hidden items */
.gallery-item.g-hidden {
    display: none;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 15, 30, 0.96);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    padding: 2rem;
}

.lightbox-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.lightbox-inner {
    position: relative;
    max-width: 1000px;
    width: 100%;
    transform: scale(0.9);
    transition: transform 0.35s ease;
}

.lightbox-overlay.open .lightbox-inner {
    transform: scale(1);
}

.lightbox-img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    display: block;
}

.lightbox-caption {
    text-align: center;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.lightbox-caption strong {
    color: var(--gold);
}

.lightbox-close {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--gold);
    color: var(--navy);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}

.lightbox-prev {
    left: -5rem;
}

.lightbox-next {
    right: -5rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* ── Video Section */
.video-section {
    background: var(--navy);
    padding: 4rem 0;
}

.video-embed-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: #000;
    aspect-ratio: 16/9;
    position: relative;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    background: linear-gradient(135deg, #0d2440 0%, #1a4a80 100%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    min-height: 360px;
}

.video-play-icon {
    width: 80px;
    height: 80px;
    background: rgba(232, 184, 75, 0.15);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold);
    transition: var(--transition);
    cursor: pointer;
}

.video-play-icon:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ────────────────────────────────────────────────
   ===== CONTACT PAGE =====
──────────────────────────────────────────────── */

.contact-page-section {
    background: var(--warm-white);
}

/* Full-width contact form card */
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.contact-form-sidebar {
    background: linear-gradient(165deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 3rem 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-form-sidebar::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(232, 184, 75, 0.05);
}

.contact-form-sidebar h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-form-sidebar>p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cdi-icon {
    width: 44px;
    height: 44px;
    background: rgba(232, 184, 75, 0.12);
    border: 1px solid rgba(232, 184, 75, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.cdi-content h5 {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.2rem;
    font-family: var(--font-body);
}

.cdi-content p,
.cdi-content a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
}

.cdi-content a:hover {
    color: var(--gold);
}

.contact-sidebar-social {
    margin-top: 2.5rem;
}

.contact-sidebar-social h5 {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.9rem;
    font-family: var(--font-body);
}

.contact-sidebar-social .social-icons {
    display: flex;
    gap: 0.6rem;
}

/* Contact form body */
.contact-form-body {
    padding: 3rem 2.5rem;
}

.contact-form-body h3 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.contact-form-body>p {
    font-size: 0.92rem;
    color: var(--text-mid);
    margin-bottom: 2rem;
}

.contact-form .form-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-mid);
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
}

.contact-form .form-control,
.contact-form .form-select {
    background: var(--off-white);
    border: 1.5px solid transparent;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: var(--white);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(232, 184, 75, 0.12);
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 130px;
}

.btn-contact-submit {
    background: var(--navy);
    color: var(--gold);
    border: 2px solid var(--navy);
    border-radius: 50px;
    padding: 0.9rem 2.5rem;
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: 0.04em;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-contact-submit:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* Contact success */
.contact-success {
    text-align: center;
    padding: 3rem;
}

.contact-success .success-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.contact-success h3 {
    font-size: 2rem;
    color: var(--navy);
}

.contact-success p {
    color: var(--text-mid);
}

/* ── Info Cards Row */
.info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    height: 100%;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.info-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 18px rgba(10, 35, 66, 0.2);
}

.info-card h4 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.65;
    margin: 0;
}

.info-card a {
    color: var(--navy-mid);
    font-weight: 600;
}

.info-card a:hover {
    color: var(--gold-dark);
}

/* ── FAQ */
.faq-section {
    background: var(--off-white);
}

.faq-accordion .accordion-item {
    border: none;
    border-radius: var(--radius-md) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.97rem;
    color: var(--navy);
    background: var(--white);
    border: none;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--gold-dark);
    background: var(--white);
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230A2342'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    filter: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c9961a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
    background: var(--white);
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.75;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

/* ── Map Section */
.contact-map-section {
    background: var(--warm-white);
    padding: 0;
}

.contact-map-wrap {
    position: relative;
}

.contact-map-wrap iframe {
    display: block;
    width: 100%;
    height: 480px;
    border: 0;
}

.map-popup-card {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    min-width: 240px;
    max-width: 300px;
    z-index: 5;
    border-top: 3px solid var(--gold);
}

.map-popup-card .mpcard-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.9rem;
}

.mpcard-logo .logo-icon {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
}

.mpcard-logo .brand-main {
    font-size: 1.1rem;
}

.mpcard-logo .brand-sub {
    font-size: 0.55rem;
}

.map-popup-card p {
    font-size: 0.82rem;
    color: var(--text-mid);
    line-height: 1.55;
    margin-bottom: 0.5rem;
}

.map-popup-card a {
    font-size: 0.82rem;
    color: var(--navy);
    font-weight: 600;
}

/* ────────────────────────────────────────────────
   RESPONSIVE — PAGES
──────────────────────────────────────────────── */
@media (max-width: 1199px) {
    .lightbox-prev {
        left: -3.5rem;
    }

    .lightbox-next {
        right: -3.5rem;
    }
}

@media (max-width: 991px) {
    .page-hero {
        height: 340px;
    }

    .timeline::before {
        left: 1.5rem;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-right: 0;
        padding-left: 4rem;
    }

    .timeline-dot {
        left: 1.5rem;
        transform: translateX(-50%);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.tall,
    .gallery-item.wide,
    .gallery-item.tall.wide {
        grid-row: span 1;
        grid-column: span 1;
        aspect-ratio: 1;
    }

    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }

    .story-img-accent {
        display: none;
    }

    .story-founded-badge {
        display: none;
    }

    .service-img-box {
        height: 250px;
    }

    .contact-form-sidebar {
        padding: 2rem;
    }

    .contact-form-body {
        padding: 2rem;
    }

    .map-popup-card {
        display: none;
    }
}

@media (max-width: 767px) {
    .page-hero {
        height: 300px;
    }

    .page-hero-title {
        font-size: 2.2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .service-highlight-list {
        grid-template-columns: 1fr;
    }

    .service-detail-body {
        padding: 1.5rem;
    }

    .cta-big-card {
        padding: 2.5rem 1.5rem;
    }

    .cta-big-card h2 {
        font-size: 1.9rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}