/* ========================================
   THEME: YELLOW & WHITE (SKY AXIS REF)
   ======================================== */

:root {
    /* Modern Sky Blue & Yellow Theme */
    --primary: #ffc107;
    /* Updated to Amber Yellow */
    --primary-sky: #2878F5;
    --primary-teal: #00BFA5;
    --secondary: #0a1d37;
    --brand-yellow: #ffc107;
    /* Updated */
    --brand-blue: #2878F5;
    --accent-vibrant: #ff0000;
    --success: #10B981;
    --danger: #DC2626;

    /* Gradients (User Provided - Exact RGB) */
    --grad-blue: linear-gradient(135deg, rgb(66, 186, 255) 0%, rgb(155, 81, 224) 100%);
    /* Blue to Purple */
    --grad-green: linear-gradient(135deg, rgb(83, 252, 255) 0%, rgb(86, 255, 103) 100%);
    /* Light Green to Vivid Green */
    --grad-yellow: linear-gradient(135deg, #fab570 0%, rgb(255, 42, 0) 100%);
    /* Amber to Orange */

    /* Mapped Variables */
    --grad-teal: var(--grad-green);
    /* Map Teal to Green for consistency */
    --grad-primary: var(--grad-yellow);
    /* Primary Gradient is Yellow */
    --primary: #FFDE59;
    /* Updated to Vibrant Light Yellow (User Request) */

    /* Backgrounds */
    --bg-primary: #FFFFFF;
    --bg-secondary: #FFFCE8;
    /* Very Light Yellow Tint */
    --bg-light-yellow: #FFFCE8;
    --bg-light-yellow: #FFFCE8;
    --bg-white: #FFFFFF;

    /* Text Colors */
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --text-muted: #94A3B8;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #FFFFFF;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    color: var(--secondary);
}

.section-subtitle {
    color: var(--secondary);
    /* Darker for better read-on-white */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    display: block;
    position: relative;
    padding-left: 15px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.section-padding {
    padding: 100px 0;
}

.text-gradient {
    color: var(--primary);
}

.text-dim {
    color: var(--text-secondary);
}

.text-primary-sky {
    color: var(--primary-sky) !important;
}

.text-primary-teal {
    color: var(--primary-teal) !important;
}

.max-w-600 {
    max-width: 600px;
}

/* ========================================
   MODERN CARD STYLES
   ======================================== */

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-base);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.card-3d {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.navbar-brand .brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.navbar-brand .brand-line-1 {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--secondary);
    text-transform: uppercase;
}

.navbar-brand .brand-line-2 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    /* Dark Navy for background balance */
    letter-spacing: 1px;
}

.navbar-brand:hover .brand-line-1,
.navbar-brand:hover .brand-line-2 {
    color: var(--primary-dark);
}

.feature-card-premium {
    background: #FFFFFF;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px solid #F1F5F9;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--brand-yellow);
}

.feature-card-premium i {
    color: var(--brand-yellow);
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.feature-card-premium h5 {
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card-premium p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn-premium {
    background: #ffc107 !important;
    /* Force Sky Axis Yellow */
    border: 2px solid #ffc107 !important;
    color: #0a1d37 !important;
    /* Force Navy Text */
    padding: 12px 28px !important;
    font-weight: 800 !important;
    font-size: 0.85rem !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.btn-premium:hover {
    background: var(--primary) !important;
    /* Yellow Background */
    color: var(--secondary) !important;
    /* Navy Text */
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
}

.btn-outline {
    background: var(--primary);
    border: 2px solid var(--primary);
    color: var(--secondary);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
}

.btn-outline:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

/* ========================================
   NAVBAR
   ======================================== */

.navbar {
    padding: 15px 0;
    transition: var(--transition-base);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
    .navbar-brand span {
        font-size: 0.95rem !important;
    }

    .navbar-brand img {
        height: 35px !important;
    }

    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: var(--radius-lg);
        margin-top: 15px;
        box-shadow: var(--shadow-xl);
    }
}

.navbar-scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav-link {
    color: var(--text-primary) !important;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--brand-yellow);
    transition: var(--transition-base);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--secondary) !important;
}

.dropdown-menu {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateX(5px);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--secondary);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-slide .d-flex {
        justify-content: center;
        flex-direction: column;
        gap: 1rem !important;
    }

    .hero-slide .btn {
        width: 100%;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-slide .row {
        min-height: 70vh !important;
        padding-top: 100px;
        padding-bottom: 50px;
    }
}

@keyframes floating {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -40px) rotate(2deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-2deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.stats-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.2);
}

.stats-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stats-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ========================================
   SERVICE CARDS
   ======================================== */

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.service-icon {
    width: 100%;
    height: 280px;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: #ffcc00;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: var(--transition-base);
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

/* Service Card Buttons - Blue Theme */
.service-card .btn-outline {
    background: var(--brand-blue);
    color: white;
    border: 2px solid var(--brand-blue);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card .btn-outline:hover {
    background: transparent;
    color: var(--brand-blue);
    border-color: var(--brand-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(40, 120, 245, 0.2);
}

/* Global Service Banner & Banner Animations */
.service-banner,
.about-banner,
.blog-banner,
.hero-slide {
    position: relative;
    overflow: hidden;
}

.banner-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.banner-decor .circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.15) 0%, rgba(227, 30, 36, 0) 70%);
    filter: blur(50px);
    animation: floating 30s infinite alternate ease-in-out;
    mix-blend-mode: screen;
    opacity: 0.4;
}

.banner-decor .floating-icon {
    position: absolute;
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", sans-serif;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    font-size: 200px;
    z-index: 1;
    animation: floating 12s infinite ease-in-out;
    pointer-events: none;
    user-select: none;
    will-change: transform;
    display: block;
    line-height: 1;
}

.banner-decor .star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.5);
    animation: twinkle 5s infinite ease-in-out;
    opacity: 0.4;
}

.icon-plane::before {
    content: "\f072";
}

.icon-passport::before {
    content: "\f5ab";
}

.icon-globe::before {
    content: "\f3d1";
}

.icon-file::before {
    content: "\f570";
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.1) 0%, rgba(227, 30, 36, 0) 70%) !important;
}

.circle-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    right: -100px;
    animation-delay: -7s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%) !important;
}

.circle-3 {
    width: 250px;
    height: 250px;
    top: 15%;
    right: 10%;
    animation-delay: -12s;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.08) 0%, rgba(227, 30, 36, 0) 70%) !important;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}


.service-banner .container,
.about-banner .container,
.blog-banner .container,
.hero-slide .container {
    position: relative;
    z-index: 5;
}

/* Global Service Banner Heading & Text Fix */
.service-banner h1,
.service-banner h2,
.service-banner .display-4,
.blog-banner h1,
.about-banner h1,
.contact-banner h1,
.assessment-banner h1 {
    color: var(--primary) !important;
    /* Standout Yellow on Dark Backgrounds */
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    font-weight: 800;
}

.service-banner .breadcrumb-item a,
.service-banner .breadcrumb-item.active,
.blog-banner .breadcrumb-item,
.blog-banner .breadcrumb-item a,
.about-banner .breadcrumb-item,
.about-banner .breadcrumb-item a {
    color: #FFFFFF !important;
    /* Pure white for hierarchy */
    font-weight: 600;
}

.service-banner .breadcrumb-item+.breadcrumb-item::before,
.blog-banner .breadcrumb-item+.breadcrumb-item::before,
.about-banner .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(10, 29, 55, 0.4) !important;
}

/* Breadcrumbs for Light Backgrounds (Blog Posts) */
.blog-post-header .breadcrumb-item a {
    color: var(--primary) !important;
    font-weight: 700;
}

.blog-post-header .breadcrumb-item.active {
    color: var(--text-primary) !important;
}

.blog-post-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(0, 0, 0, 0.2) !important;
}

/* ========================================
   FOOTER
   ======================================== */

.footer-premium {
    background: var(--secondary);
    color: white;
    padding: 60px 0 30px;
}

.footer-heading {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--brand-yellow);
}

.footer-link {
    display: block;
    color: #94A3B8;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

.footer-text-muted {
    color: #94A3B8;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 10px;
    transition: var(--transition-base);
    text-decoration: none;
}

.social-btn:hover {
    background: var(--brand-yellow);
    transform: translateY(-3px);
    color: var(--secondary);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }

    .hero-section {
        min-height: 70vh;
    }

    .display-4 {
        font-size: 2.2rem !important;
    }

    .display-3 {
        font-size: 2.8rem !important;
    }

    .navbar-brand .brand-line-1 {
        font-size: 0.95rem !important;
    }

    .navbar-brand .brand-line-2 {
        font-size: 0.75rem !important;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .service-banner,
    .blog-banner,
    .about-banner,
    .contact-banner,
    .assessment-banner {
        padding: 100px 0 50px !important;
    }

    .service-banner h1,
    .blog-banner h1,
    .about-banner h1,
    .contact-banner h1,
    .assessment-banner h1 {
        font-size: 1.8rem !important;
    }

    .btn-premium {
        width: 100%;
        margin-bottom: 10px;
    }

    .map-container {
        height: 300px !important;
    }
}

.contact-box {
    padding: 25px 15px;
}

.contact-banner,
.about-banner,
.blog-banner,
.service-banner {
    padding: 120px 0 60px !important;
}

iframe {
    height: 500px !important;
}

/* ========================================
   PRELOADER
   ======================================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.airplane-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 250px;
    /* Increased height to accommodate dots */
    display: flex;
    flex-direction: column;
    /* Stack plane and dots vertically */
    align-items: center;
    justify-content: center;
}

.airplane-img {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
    animation: gentle-float 3s ease-in-out infinite;
}

@keyframes gentle-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.loading-dots-simple {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.loading-dots-simple span {
    width: 10px;
    height: 10px;
    background-color: var(--secondary);
    border-radius: 50%;
    opacity: 0.6;
    animation: dot-bounce 1.4s infinite ease-in-out both;
}

.loading-dots-simple span:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots-simple span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes dot-bounce {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .navbar-brand .brand-line-1 {
        font-size: 0.95rem !important;
    }

    .navbar-brand .brand-line-2 {
        font-size: 0.75rem !important;
    }

    .navbar-brand img {
        height: 35px !important;
    }
}

@media (max-width: 480px) {
    .navbar-brand .brand-line-1 {
        font-size: 0.85rem !important;
    }

    .navbar-brand .brand-line-2 {
        font-size: 0.65rem !important;
    }

    .service-icon {
        height: 220px !important;
    }

    .section-padding {
        padding: 40px 0;
    }

    .hero-slide h1 {
        font-size: 2.2rem !important;
        text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    }
}

/* ========================================
   STICKY ENQUIRE BUTTON
   ======================================== */
.sticky-enquire-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000;
    background: var(--secondary);
    color: var(--primary);
    padding: 18px 10px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: 10px 0 0 10px;
    text-decoration: none;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    box-shadow: -4px 0 25px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.sticky-enquire-btn:hover {
    background: var(--primary);
    color: var(--secondary);
    padding-right: 15px;
    box-shadow: -6px 0 30px rgba(255, 193, 7, 0.5);
}

@media (max-width: 768px) {
    .sticky-enquire-btn {
        writing-mode: horizontal-tb;
        top: auto;
        bottom: 25px;
        right: 20px;
        transform: none;
        padding: 14px 28px;
        border-radius: 50px;
        font-size: 12px;
        box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
    }

    .sticky-enquire-btn:hover {
        padding-right: 28px;
        transform: translateY(-5px);
    }
}

/* ========================================
   HERO CAROUSEL V2
   ======================================== */

.hero-v2-slide {
    height: 95vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    /* Align content to bottom */
    padding-bottom: 0;
}

/* Gradient removed as per user request */
/* .hero-v2-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
} */

.hero-v2-slide .row {
    align-items: flex-end;
    height: 100%;
    /* Ensure row takes full height to align properly if needed */
}

.hero-v2-content {
    position: relative;
    z-index: 10;
    padding-bottom: 15vh;
    /* Push text up to obscure center visually */
}

.hero-v2-title {
    font-size: 4rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-v2-title span {
    color: var(--primary);
}

.hero-v2-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-person-img {
    max-width: 100%;
    height: auto;
    max-height: 90vh;
    /* Increased to fill more space */
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.3));
    /* Blend mode ensures white background becomes transparent */
    mix-blend-mode: multiply;
    display: block;
    margin-bottom: 0;
}

/* Desktop Hero Slide Layout */
@media (min-width: 992px) {
    .hero-v2-slide {
        display: flex;
        align-items: flex-end !important;
        /* Force items to bottom */
        padding-bottom: 0 !important;
        /* Remove padding so image touches edge */
        min-height: 800px;
        padding-top: 100px;
    }

    .hero-v2-content {
        align-self: center !important;
        /* Keep text centered */
        padding-bottom: 15rem !important;
        /* Push text up to clear stats bar */
    }

    .hero-person-img {
        width: auto;
        max-height: 85vh;
        /* Limit height */
        margin-bottom: -5px;
        /* Ensure contact */
    }
}

html,
body {
    overflow-x: hidden;
    /* Prevent white sidebar/horizontal scroll */
    max-width: 100%;
}

@media (max-width: 991px) {
    .hero-v2-slide {
        height: auto;
        min-height: auto;
        padding: 50px 0 0;
        /* Further reduced padding */
        /* Reduced top padding, Removed bottom padding for image flush */
        text-align: center;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .hero-v2-content {
        margin-bottom: 0;
        padding: 2rem 15px 1rem 15px;
        /* Reduced bottom padding */
        position: relative;
        z-index: 5;
    }

    .hero-person-img {
        max-width: 95%;
        margin-top: 1rem;
        margin-bottom: 0;
        /* Flush with bottom */
        display: block;
        align-self: flex-end;
        margin-left: auto;
        margin-right: auto;
    }

    .d-flex.gap-3 {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-v2-title {
        font-size: 2rem;
    }

    .hero-person-img {
        max-width: 100%;
    }
}

/* Ensure image container has no background */
.hero-v2-slide .col-lg-6.text-center {
    background: transparent;
}

/* Feature Grid at Bottom of Hero */
.hero-feature-grid {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 20;
}

.feature-tag-card {
    background: var(--secondary);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #FFFFFF;
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 5px solid transparent;
}

.feature-tag-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--primary);
}

.feature-tag-card.active {
    background: var(--primary);
    color: var(--secondary);
}

.feature-tag-card i {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-tag-info h6 {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: inherit;
}

.feature-tag-info p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

@media (max-width: 991px) {
    .hero-v2-title {
        font-size: 3rem;
    }

    .hero-person-img {
        max-width: 80%;
        margin: 0 auto;
        display: block;
    }

    .hero-v2-slide {
        height: auto;
        /* Padding handled in main mobile query above */
    }

    .hero-feature-grid {
        position: relative;
        margin-top: -20px;
        /* Stronger pull-up to fix white gap */
        padding-top: 0;
        background: transparent;
    }
}

@media (max-width: 576px) {
    .hero-v2-title {
        font-size: 2.2rem;
    }

    .feature-tag-card {
        padding: 1.5rem;
    }
}

/* ========================================
   MOBILE FIXES & YELLOW CTA
   ======================================== */

/* Booking Banner Text Fix */
.booking-banner h1,
.booking-banner .lead {
    color: var(--primary) !important;
    position: relative;
    z-index: 2;
}

.booking-banner {
    position: relative;
    padding: 100px 0;
    text-align: center;
    background: var(--secondary);
    /* Fallback */
    margin-bottom: 2rem;
    overflow: hidden;
}

.booking-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 29, 55, 0.95) 0%, rgba(10, 29, 55, 0.8) 100%), url('../images/banner-office.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.preloader {
    background: var(--brand-yellow);
    /* Updated to Vibrant Light Yellow (#FFDE59) */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.airplane-center {
    width: 120px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.airplane-img {
    width: 100%;
    height: auto;
    animation: flight 2s infinite ease-in-out;
}

@media (max-width: 576px) {
    .airplane-center {
        width: 80px;
    }
}

/* CTA Section Yellow Background */
.bg-yellow-cta {
    background-color: var(--primary) !important;
    color: var(--secondary) !important;
}

.bg-yellow-cta h2,
.bg-yellow-cta h1,
.bg-yellow-cta p {
    color: var(--secondary) !important;
}

.bg-yellow-cta .btn {
    background-color: var(--secondary) !important;
    color: var(--primary) !important;
    border-color: var(--secondary) !important;
}

.bg-yellow-cta .btn:hover {
    background-color: transparent !important;
    color: var(--secondary) !important;
    border-color: var(--secondary) !important;
}