/* ========================================
   AIRCRAFT MANAGEMENT PAGE STYLES
   ======================================== */

/* Hero Section */
#management-hero {
    position: relative;
    height: 75vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin: 0;
    overflow: hidden;
}

.management-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    z-index: 0;
}

.management-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(10,8,6,0.45) 0%,
        rgba(10,8,6,0.30) 50%,
        rgba(10,8,6,0.60) 100%
    );
}

.management-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 480px;
    padding: 20px 32px 18px;
    margin: 0 auto 56px auto;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: saturate(180%) blur(22px);
    -webkit-backdrop-filter: saturate(180%) blur(22px);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.30);
}

.management-hero-badge {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    color: #fff;
    background: linear-gradient(135deg, #C9A96E 0%, #A8863E 100%);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 700;
}

.management-hero-badge::before {
    content: '★';
    margin-right: 6px;
    font-size: 12px;
}

.management-hero-sub {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,.5);
    margin: 10px 0 0;
    font-weight: 500;
}

.management-hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 2.6vw, 28px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0;
    color: #fff;
    letter-spacing: -0.2px;
}

.management-hero-content .hero-subtitle {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* ── FBO Access Section ────────────────────────────────── */
#fbo-access-section {
    padding: 120px 0;
    background: #F5F5F5;
    position: relative;
    overflow: hidden;
}

#fbo-access-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,169,110,0.07) 0%, transparent 65%);
    pointer-events: none;
}

/* Two-col layout */
.fbo-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

/* Left content */
.fbo-content {
    position: relative;
}

/* Ghost number */
.fbo-ghost-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 140px;
    font-weight: 700;
    line-height: 1;
    color: rgba(201,169,110,0.08);
    position: absolute;
    top: -40px;
    left: -16px;
    pointer-events: none;
    user-select: none;
}

.fbo-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #C9A96E;
    border: 1px solid rgba(201,169,110,0.30);
    border-radius: 100px;
    padding: 6px 18px;
    margin-bottom: 22px;
    position: relative;
}

#fbo-access-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 700;
    color: #111110;
    line-height: 1.1;
    margin-bottom: 28px;
    position: relative;
}

#fbo-access-section h2 em {
    color: #C9A96E;
    font-style: italic;
}

#fbo-access-section p {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(17, 17, 16, 0.58);
    margin-bottom: 18px;
    position: relative;
}

/* Airport tags */
.fbo-airports {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
    position: relative;
}

.fbo-airport {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(201,169,110,0.10);
    border: 1px solid rgba(201,169,110,0.25);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    color: #C9A96E;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.fbo-airport i { font-size: 10px; }

/* Right image */
.fbo-image-wrap {
    position: relative;
}

.fbo-img-inner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

.fbo-img-inner img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.fbo-img-inner:hover img { transform: scale(1.04); }

/* Floating badge */
.fbo-float-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(255,255,255,0.10);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.fbo-float-badge i {
    font-size: 18px;
    color: #C9A96E;
    flex-shrink: 0;
}

.fbo-float-badge span {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.3px;
}

/* Mobile */
@media (max-width: 991px) {
    .fbo-inner { grid-template-columns: 1fr; gap: 48px; }
    .fbo-ghost-num { font-size: 100px; }
    .fbo-img-inner img { height: 380px; }
}

/* ── Program Includes ──────────────────────────────────── */
#program-includes-section {
    padding: 110px 0;
    background: #F8F6F2;
}

.pm-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.pm-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #A8863E;
    border: 1px solid rgba(168,134,62,0.35);
    border-radius: 100px;
    padding: 6px 20px;
    margin-bottom: 20px;
}

.pm-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: #111110;
    line-height: 1.2;
    margin: 0;
}

.pm-title em {
    color: #A8863E;
    font-style: italic;
}

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

.pm-card {
    background: #fff;
    border-top: 3px solid #C9A96E;
    border-radius: 0 0 14px 14px;
    padding: 32px 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.09);
}

.pm-icon {
    width: 48px;
    height: 48px;
    background: rgba(201,169,110,0.10);
    border: 1px solid rgba(201,169,110,0.22);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.pm-icon i { font-size: 20px; color: #C9A96E; }

.pm-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-weight: 700;
    color: #111110;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pm-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #A8863E;
    background: rgba(168,134,62,0.10);
    border-radius: 100px;
    padding: 2px 10px;
    font-family: 'Poppins', sans-serif;
}

.pm-card p {
    font-size: 13.5px;
    color: #888;
    line-height: 1.7;
    margin: 0;
}

/* ── Services Section ──────────────────────────────────── */
#services-section {
    padding: 110px 0;
    background: #F5F5F5;
    position: relative;
    overflow: hidden;
}

#services-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 65%);
    pointer-events: none;
}

/* Image Slider on Left - Stacked Cards Effect */
.services-slider {
    position: relative;
    height: 600px;
    perspective: 1000px;
}

.slider-image {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
}

.slider-image:nth-child(1) {
    z-index: 6;
    transform: translateY(0) translateX(0) scale(1);
}

.slider-image:nth-child(2) {
    z-index: 5;
    transform: translateY(15px) translateX(-8px) scale(0.95);
    opacity: 0.9;
}

.slider-image:nth-child(3) {
    z-index: 4;
    transform: translateY(30px) translateX(-16px) scale(0.9);
    opacity: 0.8;
}

.slider-image:nth-child(4) {
    z-index: 3;
    transform: translateY(45px) translateX(-24px) scale(0.85);
    opacity: 0.7;
}

.slider-image:nth-child(5) {
    z-index: 2;
    transform: translateY(60px) translateX(-32px) scale(0.8);
    opacity: 0.6;
}

.slider-image:nth-child(6) {
    z-index: 1;
    transform: translateY(75px) translateX(-40px) scale(0.75);
    opacity: 0.5;
}

.slider-image.active {
    animation: cardFlip 0.8s ease-in-out;
}

.slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes cardFlip {
    0% {
        transform: translateY(0) translateX(0) scale(1) rotateY(0deg);
    }
    50% {
        transform: translateY(-30px) translateX(50px) scale(1.05) rotateY(10deg);
    }
    100% {
        transform: translateY(75px) translateX(-40px) scale(0.75) rotateY(0deg);
    }
}

/* Services inner grid */
.svc-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.svc-slider-wrap { position: relative; }

/* Service blocks on right */
.svc-content {
    display: flex;
    flex-direction: column;
}

.svc-block { padding: 8px 0; }

.svc-num {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #C9A96E;
    margin-bottom: 12px;
}

.svc-block h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    color: #111110;
    margin-bottom: 24px;
    line-height: 1.1;
}

.svc-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 32px 0;
}

.svc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.svc-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #111110;
    line-height: 1.5;
}

.svc-list li i {
    font-size: 11px;
    color: #111110;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: rgba(201,169,110,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile */
@media (max-width: 991px) {
    .pm-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 480px) {
    .pm-grid { grid-template-columns: 1fr; }
}

/* Services Gallery Section */
#services-gallery-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.service-item {
    margin-bottom: 80px;
}

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

.service-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 30px;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.2;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.service-list li i {
    color: #AB966C;
    margin-right: 12px;
    font-size: 18px;
    margin-top: 4px;
    flex-shrink: 0;
}

.service-list li span {
    flex: 1;
}

/* Gallery Grid */
.service-gallery {
    position: relative;
}

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

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.gallery-item.gallery-large {
    grid-column: 1 / -1;
}

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

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

.gallery-item.gallery-large img {
    height: 300px;
}

.gallery-item:not(.gallery-large) img {
    height: 200px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .management-hero-content h1 {
        font-size: 48px;
    }

    #fbo-access-section h2,
    .section-header h2 {
        font-size: 38px;
    }

    #fbo-access-section {
        padding: 80px 0;
    }

    #program-includes-section {
        padding: 80px 0;
    }

    #services-section {
        padding: 80px 0;
    }

    .services-slider {
        height: 500px;
        margin-bottom: 40px;
    }

    .slider-image:nth-child(2) {
        transform: translateY(12px) translateX(-6px) scale(0.95);
    }

    .slider-image:nth-child(3) {
        transform: translateY(24px) translateX(-12px) scale(0.9);
    }

    .slider-image:nth-child(4) {
        transform: translateY(36px) translateX(-18px) scale(0.85);
    }

    .slider-image:nth-child(5) {
        transform: translateY(48px) translateX(-24px) scale(0.8);
    }

    .slider-image:nth-child(6) {
        transform: translateY(60px) translateX(-30px) scale(0.75);
    }

    .services-content {
        padding-left: 0;
    }

    .service-block {
        margin-bottom: 40px;
    }

    .service-block h2 {
        font-size: 32px;
    }

    .service-list li {
        font-size: 16px;
    }

    .gallery-grid {
        gap: 12px;
    }
}

@media (max-width: 767px) {
    .management-hero-content h1 {
        font-size: 36px;
    }

    .management-hero-content .hero-subtitle {
        font-size: 18px;
    }

    #fbo-access-section,
    #program-includes-section {
        padding: 60px 0;
    }

    #fbo-access-section h2,
    .section-header h2 {
        font-size: 32px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .program-card {
        padding: 30px 25px;
    }

    .program-icon {
        width: 60px;
        height: 60px;
    }

    .program-icon i {
        font-size: 24px;
    }

    .program-card h3 {
        font-size: 20px;
    }

    .service-box {
        min-height: 400px;
        padding: 50px 30px;
    }

    .service-box h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .service-list li {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .service-list li i {
        font-size: 18px;
    }

    #services-section {
        padding: 60px 0;
    }

    .services-slider {
        height: 400px;
        margin-bottom: 40px;
    }

    .slider-image:nth-child(2) {
        transform: translateY(10px) translateX(-5px) scale(0.96);
    }

    .slider-image:nth-child(3) {
        transform: translateY(20px) translateX(-10px) scale(0.92);
    }

    .slider-image:nth-child(4) {
        transform: translateY(30px) translateX(-15px) scale(0.88);
    }

    .slider-image:nth-child(5) {
        transform: translateY(40px) translateX(-20px) scale(0.84);
    }

    .slider-image:nth-child(6) {
        transform: translateY(50px) translateX(-25px) scale(0.8);
    }

    .service-block {
        margin-bottom: 35px;
    }

    .service-block h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .service-list li {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .gallery-item:not(.gallery-large) img {
        height: 170px;
    }
}

@media (max-width: 575px) {
    .management-hero-content h1 {
        font-size: 28px;
    }

    .management-hero-content .hero-subtitle {
        font-size: 16px;
    }

    #fbo-access-section h2,
    .section-header h2 {
        font-size: 28px;
    }

    #fbo-access-section p {
        font-size: 16px;
    }

    #services-section {
        padding: 60px 0;
    }

    .service-item {
        margin-bottom: 50px;
    }

    .service-content h2 {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .service-list li {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .gallery-item.gallery-large img {
        height: 250px;
    }

    .gallery-item:not(.gallery-large) img {
        height: 170px;
    }

    .gallery-grid {
        gap: 10px;
        margin-top: 30px;
    }
}
