/* 
   =================================================
   Logi Plus | World-Class Aviation Services
   Style Sheet (Multi-Page Architecture)
   Theme Colors: 
   Orange: #F39237 
   Dark Grey: #44413F
   Light Grey: #F4F5F7
   ================================================= 
*/

:root {
    --primary-color: #F39237;
    /* Orange */
    --primary-hover: #E28022;
    --dark-grey: #44413F;
    --darker-grey: #2a2827;
    --light-grey: #F8F9FA;
    --white: #FFFFFF;
    --text-color: #555555;
    --heading-color: #222222;
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

/* Page Transition Loader */
#page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--white);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-transition.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    animation: spinPath 1.5s linear infinite;
    border-radius: 50%;
    border: 2px dashed rgba(243, 146, 55, 0.3);
    /* subtle path */
}

.loader-airplane {
    position: absolute;
    top: -15px;
    /* sit on edge */
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    /* rotate icon to follow the circle */
    font-size: 2rem;
    color: var(--primary-color);
}

@keyframes spinPath {
    100% {
        transform: rotate(360deg);
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--heading-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white) !important;
}

.text-gray {
    color: #aaaaaa;
}

.text-lg {
    font-size: 1.15rem;
    line-height: 1.8;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.pt-5 {
    padding-top: 3rem;
}

.max-w-800 {
    max-width: 800px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.bg-dark {
    background-color: var(--dark-grey);
    color: var(--white);
}

.bg-darker {
    background-color: var(--darker-grey);
    color: var(--white);
}

.bg-light {
    background-color: var(--light-grey);
}

.border-t-dark {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--dark-grey);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    position: relative;
}

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

.btn-text:hover i {
    transform: translateX(5px);
}

/* Typography & Titles */
.section-title {
    margin-bottom: 3rem;
}

.section-title h2,
.section-title-mod {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.divider {
    height: 4px;
    width: 60px;
    background-color: var(--primary-color);
    margin-top: 10px;
}

.divider-center {
    margin: 10px auto 0;
}

.subtitle {
    font-size: 1.1rem;
    color: inherit;
    opacity: 0.8;
}

/* Sections */
.section {
    padding: 80px 0;
}

/* Navigation */
.navbar {
    position: absolute;
    /* Changed from fixed to absolute to avoid scrolling with page and stay just on top */
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    /* Increased padding slightly for the bigger logo */
    background: transparent;
}

/* Ensure pages without hero still have background nav - REMOVED */
.page-header~.navbar {
    background: transparent;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 60px;
    /* Forces 60px spacing between left menu, logo, and right menu */
}

.logo img {
    height: 120px;
    /* Doubled from 60px */
    transition: var(--transition);
}

.nav-left {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 60px;
    /* Increased from 50px */
}

.nav-right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 60px;
    /* Increased from 50px */
}

.nav-links-desktop {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links-desktop li a {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-links-desktop li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links-desktop li a:hover::after,
.nav-links-desktop li a.active::after {
    width: 100%;
}

.search-icon {
    color: var(--white);
    font-weight: 600;
    font-size: 1.4rem;
}

.search-icon:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-nav {
    display: none;
}

/* Global Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(11, 11, 11, 0.95);
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-content {
    width: 90%;
    max-width: 800px;
    position: relative;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.search-modal.active .search-modal-content {
    transform: translateY(0);
}

.close-search {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-search:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

#search-input {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 300;
    outline: none;
    font-family: inherit;
}

#search-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.search-submit {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.search-submit:hover {
    color: var(--primary-color);
}

.search-hint {
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
    font-size: 0.9rem;
    text-align: center;
}

/* Hero Home Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: kenBurnsFade 20s linear infinite;
}

.hero-slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-slide:nth-child(2) {
    animation-delay: 10s;
}

@keyframes kenBurnsFade {
    0% {
        opacity: 0;
        transform: scale(1) translate(0, 0);
    }

    5% {
        opacity: 1;
    }

    45% {
        opacity: 1;
    }

    55% {
        opacity: 0;
        transform: scale(1.45) translate(-1%, 1%);
    }

    100% {
        opacity: 0;
        transform: scale(1) translate(0, 0);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(68, 65, 63, 0.8));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
    color: var(--white);
}

.hero-content h1 {
    font-size: 4.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--white);
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-down a {
    color: var(--white);
    font-size: 2.5rem;
    opacity: 0.8;
}

.scroll-down a:hover {
    color: var(--primary-color);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}

/* Page Headers (Sub pages) */
.page-header {
    position: relative;
    padding: 220px 0 100px 0;
    /* Increased top padding to add space between logo/nav and heading text */
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    width: 100%;
    margin-top: 0;
    /* Ensures it starts at the very top under the absolute nav */
}

/* Important: add a dark overlay so white menu text remains readable on all images */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.page-header .container {
    z-index: 2;
    /* Put content above the overlay */
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: var(--white);
    /* Added per user request */
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    color: var(--white);
}

/* Intro Section (Home) */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.intro-image-wrapper {
    position: relative;
    padding: 20px;
    z-index: 1;
}

.intro-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.intro-image:hover {
    transform: scale(1.03);
}

.intro-image-backdrop {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 70%;
    background-color: var(--light-grey);
    border: 2px dashed var(--primary-color);
    border-radius: var(--border-radius);
    z-index: 0;
    transition: transform 0.5s ease;
}

.intro-image-wrapper:hover .intro-image-backdrop {
    transform: translate(15px, -15px);
}

.services-grid-home {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.service-card-home {
    position: relative;
    height: 350px;
    border-radius: var(--border-radius);
    overflow: hidden;
    display: block;
}

.service-card-home .card-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.service-card-home .card-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2) 60%);
    transition: background 0.4s ease;
}

.service-card-home .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.service-card-home i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.service-card-home h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 10px;
}

.service-card-home .explore {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-card-home:hover .card-bg {
    transform: scale(1.1);
}

.service-card-home:hover .card-overlay {
    background: linear-gradient(to top, rgba(243, 146, 55, 0.9), rgba(68, 65, 63, 0.4) 60%);
}

.service-card-home:hover .card-content {
    transform: translateY(0);
}

.service-card-home:hover .explore {
    opacity: 1;
    color: var(--white);
}

/* Global Teaser */
.global-teaser {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
}

.global-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(68, 65, 63, 0.85);
}

/* About Page Specifics */
.about-full .about-grid.flex-reverse {
    grid-template-columns: 1fr 1fr;
}

.about-full .about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 20px 20px 0px rgba(243, 146, 55, 0.2);
}

/* Vision / Mission Boxes */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-box {
    padding: 50px;
    border-radius: var(--border-radius);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.vm-box.box-orange {
    background-color: var(--primary-color);
}

.vm-box.box-dark {
    background-color: var(--dark-grey);
}

.vm-icon-large {
    font-size: 4rem;
    opacity: 0.2;
    position: absolute;
    top: -10px;
    right: 10px;
}

.vm-box h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.vm-box p {
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* Why Choose Us (Page Specific) */
.custom-list.row-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.custom-list.row-list li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--dark-grey);
}

.custom-list.row-list i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Why Choose Us - Modern Layout */
.wcu-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.wcu-hero-content .section-title {
    font-size: 2.8rem;
    color: var(--heading-color) !important;
}

.wcu-custom-list {
    margin-top: 20px;
    list-style: none;
    padding-left: 0;
}

.wcu-custom-list li {
    font-size: 1.15rem;
    color: var(--text-color);
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
    line-height: 1.6;
}

.wcu-custom-list li::before {
    content: '\25CF';
    /* Round bullet or square */
    color: var(--text-color);
    font-size: 0.9rem;
    position: absolute;
    left: 0;
    top: 5px;
}


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

.wcu-home-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.wcu-feature-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.wcu-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.wcu-feature-card .feature-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.wcu-feature-card .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wcu-feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.wcu-feature-card .feature-content {
    padding: 30px;
}

.wcu-feature-card .feature-content h3 {
    margin-bottom: 15px;
    font-size: 1.35rem;
    color: var(--heading-color);
}

.wcu-feature-card .feature-content p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* Services Interactive Layout */
.services-interactive-grid {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar Styling */
.services-sidebar {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
    /* Adjust based on navbar height */
}

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

.tab-btn {
    padding: 15px 20px;
    margin-bottom: 10px;
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-color);
    border-left: 3px solid transparent;
}

.tab-btn:last-child {
    margin-bottom: 0;
}

.tab-num {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(243, 146, 55, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

.tab-btn:hover {
    background: rgba(243, 146, 55, 0.05);
    color: var(--heading-color);
    transform: translateX(5px);
}

.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-left-color: var(--dark-grey);
    box-shadow: 0 4px 15px rgba(243, 146, 55, 0.3);
}

.tab-btn.active .tab-num {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
}

/* Content Pane Styling */
.services-display {
    position: relative;
    min-height: 500px;
}

.service-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-pane.active {
    display: block;
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pane-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.pane-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.pane-content {
    padding: 40px;
}

.pane-content h3 {
    font-size: 1.8rem;
    color: var(--heading-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.pane-content h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.pane-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
}

.pane-content .service-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 15px;
}

.pane-content .service-list li {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    line-height: 1.6;
}

.pane-content .service-list li::before {
    content: '\25A0';
    /* Square bullet */
    color: var(--primary-color);
    font-size: 0.8rem;
    position: absolute;
    left: 0;
    top: 4px;
}

/* Responsive Services Tabs */
@media (max-width: 992px) {
    .services-interactive-grid {
        display: block;
        /* Fix grid blowout issue */
    }

    .services-sidebar {
        position: relative;
        top: 0;
        padding: 10px 0 15px 0;
        width: 100%;
    }

    .service-tabs {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        /* Smooth scrolling on iOS */
        gap: 15px;
        padding-bottom: 15px;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE and Edge */
    }

    .service-tabs::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Opera */
    }

    .tab-btn {
        flex: 0 0 auto;
        margin-bottom: 0;
        white-space: nowrap;
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 8px 15px;
        font-size: 0.95rem;
    }

    .tab-btn.active {
        border-left: none;
        border-bottom-color: var(--dark-grey);
    }

    .services-display {
        width: 100%;
        margin-top: 10px;
    }

    .service-pane {
        min-height: auto;
        width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .pane-image {
        height: 250px;
        width: 100%;
    }

    .pane-content {
        padding: 25px;
    }

    .pane-content h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .pane-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Contact Page Specific */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
}

.office-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.office-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.office-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info span {
    color: var(--primary-color);
    font-weight: 600;
    min-width: 130px;
    display: inline-block;
}

.contact-info a {
    color: var(--white);
}

.contact-info a:hover {
    color: var(--primary-color);
}

.display-thanks {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1;
}

.main-email {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.main-email:hover {
    color: var(--white);
}

/* Main Footer */
.main-footer {
    background-color: #0b0b0b;
    color: #a0a0a0;
    padding: 70px 0 25px 0;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget .widget-title {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget .widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background: var(--primary-color);
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact-info,
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    display: flex;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact-info li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 12px;
    margin-top: 3px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin: 0 0 25px 0;
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copy {
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    color: #a0a0a0;
    font-size: 1.1rem;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}


/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid-home {
        grid-template-columns: repeat(3, 1fr);
    }

    .wcu-home-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 992px) {

    .intro-grid,
    .about-full .about-grid.flex-reverse,
    .vm-grid,
    .wcu-features-grid,
    .wcu-home-grid,
    .wcu-hero-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom-bar {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .intro-stats {
        margin-top: 30px;
    }

    .service-row {
        grid-template-columns: 1fr;
    }

    .service-row.reverse {
        direction: ltr;
    }

    .service-img-box img {
        min-height: 250px;
        height: 250px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .page-header h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }

    .menu-toggle {
        display: block;
        margin-top: 15px;
        /* Added some top margin to align with larger logo */
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .logo img {
        height: 80px;
        /* Increased from 50px */
    }

    .mobile-nav {
        display: block;
        position: fixed;
        top: 110px;
        /* Pushed down to clear the bigger logo area */
        left: -100%;
        width: 100%;
        height: calc(100vh - 110px);
        background: var(--dark-grey);
        transition: 0.5s ease;
        z-index: 1000;
    }

    .mobile-nav.active {
        left: 0;
    }

    .nav-links-mobile {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        gap: 30px;
    }

    .nav-links-mobile li a {
        color: var(--white);
        font-size: 1.5rem;
        font-weight: 600;
    }

    .nav-links-mobile li a.active,
    .nav-links-mobile li a:hover {
        color: var(--primary-color);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .services-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid-home {
        grid-template-columns: 1fr;
    }

    .footer-flex {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .display-thanks {
        font-size: 2.5rem;
    }
}

/* Modern About Page Custom Layouts */
.text-uppercase {
    text-transform: uppercase;
}

.text-blue {
    color: #2D8CFF;
}

.align-start {
    align-items: flex-start !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

/* Company Overview Image */
.about-image-cool {
    position: relative;
    padding: 20px 0;
}

.img-stack {
    position: relative;
    border-radius: 40px;
    border-bottom-left-radius: 120px;
    border-top-right-radius: 120px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.img-front {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.img-stack:hover .img-front {
    transform: scale(1.05);
}

/* Vision & Mission Layout */
.vision-mission-sec {
    padding: 80px 0 120px 0;
    overflow: hidden;
    background: linear-gradient(to bottom, #ffffff 0%, #f4f5f7 100%);
}

.vm-modern-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
}

.vm-text-wrap {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 2;
    margin-right: -80px;
    /* Provides the overlap effect */
    border-bottom: 8px solid rgba(45, 140, 255, 0.2);
}

.vm-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-subtitle {
    font-size: 1.6rem;
    color: #111;
    margin-bottom: 20px;
    font-weight: 700;
}

.vm-col p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.8;
}

.vm-image-wrap {
    position: relative;
    z-index: 1;
}

.vm-collage {
    position: relative;
    height: 600px;
}

.vm-img-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 75%;
    object-fit: cover;
    border-radius: 50px;
    border-bottom-left-radius: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
    transition: transform 0.4s ease;
}

.vm-img-1:hover {
    transform: translateY(-10px);
}

.vm-img-2 {
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 65%;
    height: 55%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 2;
    border: 12px solid white;
    transition: transform 0.4s ease;
}

.vm-img-2:hover {
    transform: translateY(-10px) scale(1.02);
}

@media (max-width: 991px) {
    .vm-modern-layout {
        grid-template-columns: 1fr;
    }

    .vm-text-wrap {
        margin-right: 0;
        margin-bottom: 40px;
    }

    .vm-collage {
        height: 400px;
    }
}

/* ==========================================================================
   Service Gallery Styles
   ========================================================================== */

.service-gallery-sec {
    position: relative;
    background-color: var(--light-grey);
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    aspect-ratio: 1 / 1;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(243, 146, 55, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 3rem;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Gallery Lightbox Modal */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(11, 11, 11, 0.95);
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-lightbox.active .lightbox-content-wrapper {
    transform: scale(1);
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 100001;
}

.lightbox-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    padding: 15px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-color);
    color: var(--white);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

@media (max-width: 768px) {
    .lightbox-prev {
        left: 10px;
        background: rgba(0, 0, 0, 0.5);
        padding: 5px;
        font-size: 2rem;
    }

    .lightbox-next {
        right: 10px;
        background: rgba(0, 0, 0, 0.5);
        padding: 5px;
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
}