/* ===================================
   FBO Page - Premium Elegant Styling
   Similar to Aircraft Charter Page
   =================================== */

/* Elegant Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Section */
#fbo-hero {
    position: relative;
    height: 75vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin: 0;
    background-image: url('../images/fbo-montgomery-gibbs-fbo-sandiego.jpg');
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
    overflow: hidden;
}



.fbo-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 650px;
    padding: 30px 35px 40px 35px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.fbo-hero-badge {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 15px;
    color: #fff;
    background: linear-gradient(135deg, #AB966C 0%, #8a7555 100%);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(171, 150, 108, 0.4);
}

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

.fbo-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
    color: #0D1B3E;
    letter-spacing: -0.5px;
    /* text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); */
}

.fbo-hero-subtitle {
    font-size: 14px;
    line-height: 1.6;
    color: #0D1B3E;
    margin-bottom: 25px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.fbo-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #AB966C 0%, #8a7555 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(171, 150, 108, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.fbo-hero-btn:hover {
    background: linear-gradient(135deg, #8a7555 0%, #AB966C 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(171, 150, 108, 0.6);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.fbo-hero-btn i {
    transition: transform 0.3s ease;
}

.fbo-hero-btn:hover i {
    transform: translateX(4px);
}

/* Amenities Section */
.fbo-amenities-section {
    padding: 80px 0;
    background: #fff;
}

.fbo-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.fbo-section-badge {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #AB966C 0%, #8B7A5A 100%);
    color: #fff;
    border-radius: 50%;
    font-family: 'Open Sans-bold', sans-serif;
    font-size: 20px;
    line-height: 50px;
    text-align: center;
    margin-bottom: 20px;
}

.fbo-section-title {
    font-family: 'Cormorant Garamond-bold', serif;
    font-size: 48px;
    line-height: 1.2;
    color: #2D5085;
    margin-bottom: 16px;
}

.fbo-section-subtitle {
    font-family: 'Open Sans-regular', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Amenities Grid */
.fbo-amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.fbo-amenity-card {
    background: #F9FAFB;
    border: 1.5px solid #E5E7EB;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.fbo-amenity-card:hover {
    background: #fff;
    border-color: #AB966C;
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(171, 150, 108, 0.15);
}

.fbo-amenity-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, #AB966C 0%, #8B7A5A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
}

.fbo-amenity-title {
    font-family: 'Open Sans-bold', sans-serif;
    font-size: 17px;
    color: #2D5085;
    margin-bottom: 10px;
}

.fbo-amenity-desc {
    font-family: 'Open Sans-regular', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

/* Gallery Slider */
.fbo-gallery-slider-wrapper {
    margin-top: 60px;
    position: relative;
}

.fbo-gallery-swiper {
    padding: 20px 60px;
}

.fbo-gallery-slide {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 4/3;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.fbo-gallery-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

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

.fbo-gallery-slide:hover img {
    transform: scale(1.1);
}

.fbo-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(20, 20, 23, 0.9) 0%, transparent 100%);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.fbo-gallery-slide:hover .fbo-gallery-overlay {
    transform: translateY(0);
}

.fbo-gallery-overlay span {
    font-family: 'Open Sans-semibold', sans-serif;
    font-size: 16px;
    color: #fff;
    display: block;
}

.fbo-gallery-prev,
.fbo-gallery-next {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #AB966C 0%, #8B7A5A 100%);
    border-radius: 50%;
    color: #fff !important;
    transition: all 0.3s ease;
}

.fbo-gallery-prev:hover,
.fbo-gallery-next:hover {
    background: linear-gradient(135deg, #2D5085 0%, #1A3A5F 100%);
    transform: scale(1.1);
}

.fbo-gallery-prev::after,
.fbo-gallery-next::after {
    font-size: 18px;
    font-weight: bold;
}

.fbo-gallery-pagination {
    position: static !important;
    margin-top: 50px !important;
}

.fbo-gallery-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #D1D5DB;
    opacity: 1;
    transition: all 0.3s ease;
}

.fbo-gallery-pagination .swiper-pagination-bullet-active {
    background: #AB966C;
    width: 30px;
    border-radius: 6px;
}

/* Hangars Section - Fancy Animation */
.fbo-hangars-section {
    position: relative;
    padding: 140px 0;
    background: url('../images/contact-image.png') center/cover no-repeat;
    background-attachment: fixed;
    color: #fff;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.fbo-hangars-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 80, 133, 0.92) 0%, rgba(20, 20, 23, 0.88) 100%);
    z-index: 1;
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fbo-hangars-section .container {
    position: relative;
    z-index: 2;
}

.fbo-hangars-content-center {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    animation: revealContent 1.2s ease-out 0.3s forwards;
}

@keyframes revealContent {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.fbo-hangars-title {
    font-family: 'Cormorant Garamond-bold', serif;
    font-size: 52px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 16px;
}

.fbo-hangars-subtitle {
    font-family: 'Open Sans-semibold', sans-serif;
    font-size: 24px;
    color: #AB966C;
    margin-bottom: 24px;
}

.fbo-hangars-text {
    font-family: 'Open Sans-regular', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.fbo-hangars-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 20px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.fbo-hangar-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Open Sans-semibold', sans-serif;
    font-size: 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(171, 150, 108, 0.3);
    border-radius: 50px;
    padding: 12px 20px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: slideInUp 0.6s ease-out forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fbo-hangar-feature:nth-child(1) { animation-delay: 0.6s; }
.fbo-hangar-feature:nth-child(2) { animation-delay: 0.7s; }
.fbo-hangar-feature:nth-child(3) { animation-delay: 0.8s; }
.fbo-hangar-feature:nth-child(4) { animation-delay: 0.9s; }
.fbo-hangar-feature:nth-child(5) { animation-delay: 1s; }
.fbo-hangar-feature:nth-child(6) { animation-delay: 1.1s; }

.fbo-hangar-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #AB966C;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(171, 150, 108, 0.3);
}

.fbo-hangar-feature i {
    color: #AB966C;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.fbo-hangar-feature:hover i {
    transform: rotate(360deg);
}

.fbo-hangars-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.fbo-stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(171, 150, 108, 0.3);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.fbo-stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #AB966C;
    transform: translateY(-5px);
}

.fbo-stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #AB966C 0%, #8B7A5A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
}

.fbo-stat-number {
    font-family: 'Cormorant Garamond-bold', serif;
    font-size: 36px;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1;
}

.fbo-stat-label {
    font-family: 'Open Sans-regular', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Services Section */
.fbo-services-section {
    padding: 80px 0;
    background: #fff;
}

.fbo-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.fbo-service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.fbo-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.fbo-service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.fbo-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.fbo-service-card:hover .fbo-service-image img {
    transform: scale(1.05);
}

.fbo-service-content {
    padding: 28px 24px;
}

.fbo-service-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.fbo-service-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #E5E7EB;
}

.fbo-service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fbo-service-title {
    font-family: 'Cormorant Garamond-bold', serif;
    font-size: 22px;
    color: #2D5085;
    margin: 0;
}

.fbo-service-desc {
    font-family: 'Open Sans-regular', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .fbo-hero-title {
        font-size: 56px;
    }
    
    .fbo-amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fbo-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    #fbo-hero {
        height: 50vh;
        background-position: center center;
        background-size: cover;
        align-items: center;
    }
    .fbo-hero-title {
        font-size: 42px;
    }
    
    .fbo-hero-subtitle {
        font-size: 16px;
    }
    
    .fbo-section-title {
        font-size: 36px;
    }
    
    .fbo-amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .fbo-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fbo-services-grid {
        grid-template-columns: 1fr;
    }
    
    .fbo-amenities-section,
    .fbo-hangars-section,
    .fbo-services-section {
        padding: 80px 0;
    }
}
