/* Custom Styles for Tailwind & GSAP */

/* ============================================
   CSS VARIABLES - COLOR SCHEME
   ============================================
   Use these variables anywhere in your CSS:
   
   Primary Colors:
   - var(--primary-color)      : Primary color (#2C3A92)
   - var(--primary-dark)       : Darker primary (#1e2a6b)
   - var(--primary-light)      : Lighter primary (#4a5bb8)
   
   Secondary Colors:
   - var(--secondary-color)    : Secondary color (#F48426)
   - var(--secondary-dark)     : Darker secondary (#d66a0f)
   
   Background Colors:
   - var(--nav-bg)             : Semi-transparent navbar bg
   - var(--nav-bg-solid)       : Solid navbar bg
   
   Borders:
   - var(--nav-border)         : Navbar border color
   
   Gradients:
   - var(--nav-gradient-from)  : Gradient start
   - var(--nav-gradient-via)   : Gradient middle
   - var(--nav-gradient-to)    : Gradient end
   
   Example Usage:
   .my-element {
       background: var(--primary-color);
       border: 1px solid var(--secondary-color);
   }
   ============================================ */
:root {
    /* Primary Color Variables */
    --primary-color: #2C3A92;
    --primary-dark: #1e2a6b;
    --primary-light: #4a5bb8;
    
    /* Secondary Color Variables */
    --secondary-color: #F48426;
    --secondary-dark: #d66a0f;
    
    /* Navbar Colors (dark for logo visibility) */
    --nav-bg: rgba(15, 23, 42, 0.9);           /* slate-900/90 - dark background */
    --nav-bg-solid: rgb(15, 23, 42);           /* slate-900 solid - dark background */
    --nav-border: rgba(51, 65, 85, 0.5);       /* slate-700/50 */
    --nav-gradient-from: rgb(15, 23, 42);      /* slate-900 */
    --nav-gradient-via: rgb(30, 41, 59);       /* slate-800 */
    --nav-gradient-to: rgb(15, 23, 42);        /* slate-900 */
    
    /* Old primary colors for navbar (commented out - not used for navbar) */
    /* --nav-bg: rgba(44, 58, 146, 0.9);          primary/90 */
    /* --nav-bg-solid: rgb(44, 58, 146);          primary solid */
    /* --nav-border: rgba(30, 42, 107, 0.5);      primary-dark/50 */
    /* --nav-gradient-from: rgb(44, 58, 146);     primary */
    /* --nav-gradient-via: rgb(74, 91, 184);      primary-light */
    /* --nav-gradient-to: rgb(44, 58, 146);       primary */
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #263597;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
    border-radius: 10px;
    border: 2px solid #1e293b;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #d97706 0%, #b45309 100%);
    border-color: #0f172a;
}

::-webkit-scrollbar-thumb:active {
    background: #F48426;
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #F48426 #1e293b;
}

/* Text Selection Colors */
::selection {
    background: #F48426;
    color: #0f172a;
    text-shadow: none;
}

::-moz-selection {
    background: #F48426;
    color: #0f172a;
    text-shadow: none;
}

/* Navigation Active State */
.nav-link,
.floating-nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

.floating-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #2C3A92;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.floating-nav-link:hover::after,
.floating-nav-link.active::after {
    width: 100%;
}

/* Navbar scroll effect */
.navbar {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Navbar when scrolling down - compact mode */
.navbar.scrolled-down {
    max-width: 400px;
    top: 15px;
}

.navbar.scrolled-down .nav-links {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.navbar.scrolled-down .auth-buttons a:first-child {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border: none;
}

/* Navbar when scrolling up - expanded mode */
.navbar.scrolled-up {
    max-width: 1280px;
}

.navbar.scrolled-up .nav-links {
    max-width: 600px;
    opacity: 1;
}

.navbar.scrolled-up .auth-buttons a:first-child {
    max-width: 200px;
    opacity: 1;
}

/* Smooth transitions for nav elements */
.nav-links,
.auth-buttons a {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hide dropdown on scroll down */
.navbar.scrolled-down .dropdown-nav {
    display: none;
}

/* Services dropdown - no scrollbar */
.navbar .group > ul {
    overflow: visible !important;
    max-height: none !important;
}

/* Compact mode - adjust button spacing */
.navbar.scrolled-down .auth-buttons {
    gap: 0;
}

.navbar.scrolled-down .auth-buttons button {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Logo slight scale in compact mode */
.navbar .logo,
.navbar .logo a {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled-down .logo {
    transform: scale(0.95);
}

/* Navbar becomes more compact */
.navbar > div {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
}

.navbar.scrolled-down > div {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Enhanced scroll down state - keep dark background */
.navbar.scrolled-down > div {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(24px);
}

/* Keep dark background when scrolled up as well */
.navbar.scrolled-up > div {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(24px);
}

/* Ensure navbar div always has dark background */
.navbar > div {
    background: rgba(255, 255, 255, 0.8) !important;
}

/* Mobile: Don't shrink navbar */
@media (max-width: 1024px) {
    .navbar.scrolled-down {
        max-width: 95%;
    }
    
    .navbar.scrolled-down .nav-links {
        display: none;
    }
    
    .navbar.scrolled-down .auth-buttons {
        display: none;
    }
    
    .navbar.scrolled-down .menu-toggle {
        display: block;
    }
}

/* Quote Modal Styles */
#quoteModal.visible .quote-modal-content {
    transform: scale(1);
}

#quoteModal {
    backdrop-filter: blur(8px);
}

.quote-modal-content {
    transition: transform 0.3s ease;
}

/* Dark Theme Form Inputs */
.form-group input,
.form-group select,
.form-group textarea {
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

.form-group label {
    transition: color 0.3s ease;
}

.form-group:focus-within label {
    color: #f59e0b;
}

/* Select dropdown dark theme */
select option {
    background: #1e293b;
    color: #ffffff;
}

/* Scrollbar for modal - Thinner on desktop */
.quote-modal-content::-webkit-scrollbar {
    width: 4px;
}

.quote-modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.quote-modal-content::-webkit-scrollbar-thumb {
    background: #64748b;
    border-radius: 2px;
}

.quote-modal-content::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Firefox scrollbar */
.quote-modal-content {
    scrollbar-width: thin;
    scrollbar-color: #64748b transparent;
}

/* Hide scrollbar on desktop when not needed, show thin one when needed */
@media (min-width: 769px) {
    .quote-modal-content {
        scrollbar-width: thin;
    }
    
    .quote-modal-content::-webkit-scrollbar {
        width: 4px;
    }
}

/* Modal Animation */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile Menu */
.nav-menu-mobile.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) scale(1) !important;
}

/* Mobile menu link active state */
.nav-menu-mobile a.active,
.nav-menu-mobile a[aria-current="page"] {
    color: #2C3A92 !important;
    background: rgba(44, 58, 146, 0.1) !important;
    font-weight: 600;
}

/* Mobile menu services dropdown */
#servicesDropdown {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

#servicesDropdown a {
    color: #475569 !important;
}

#servicesDropdown a:hover {
    color: #2C3A92 !important;
    background: rgba(44, 58, 146, 0.1) !important;
}

/* Mobile Toggle Animation */
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Dropdown Mobile */
.dropdown-mobile.active .dropdown-menu-mobile {
    display: block !important;
}

/* Button Shine Effect */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

.btn:hover::before {
    left: 100%;
}

.btn span, .btn i {
    position: relative;
    z-index: 1;
}

/* Feature Icon Glow */
.feature-icon {
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(10px);
    z-index: -1;
}

.feature-card:hover .feature-icon::before {
    opacity: 0.6;
}

/* Service Card Hover Effects */
.service-icon i {
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.15);
}

/* Ensure all cards and buttons are visible by default */
.feature-card,
.service-card,
.btn {
    opacity: 1 !important;
}

/* Perspective for 3D effects */
.perspective-1000 {
    perspective: 1000px;
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Fix for GSAP animations */
.hero-title,
.hero-subtitle,
.hero-buttons,
.about-image img,
.about-badge,
.about-content *,
.cta-content * {
    opacity: 1;
}

/* Blob Animation */
@keyframes blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

/* Gradient Text Animation */
@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.bg-gradient-to-r {
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

/* Hero Video Section Styles */
.hero-video-section {
    position: relative;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    overflow: hidden;
}

.hero-video-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

/* Fallback for browsers that don't support video */
.hero-video-section video + div {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Global Network Section */
.global-network-section {
    position: relative;
    background: radial-gradient(circle at top, rgba(44, 58, 146, 0.3), rgba(15, 23, 42, 0.95));
}

.global-network-section h2 {
    line-height: 1.2;
}

.global-map-embed-wrapper {
    position: relative;
    width: 100%;
    min-height: 420px;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(248, 250, 252, 0.08);
    box-shadow: 0 35px 120px rgba(2, 6, 23, 0.45);
}

.global-map-embed-wrapper #chartdiv {
    display: block;
    width: 100%;
    height: 550px;
    border: 0;
}

.global-stat-card {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(248, 250, 252, 0.05);
    border-radius: 24px;
    padding: 1.75rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(2, 6, 23, 0.35);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.global-stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(244, 132, 38, 0.5);
}

.global-stat-card .stat-title {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    color: #cbd5f5;
}

.global-stat-card strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fcd34d;
    margin: 0.75rem 0 0.5rem;
}

.global-stat-card p {
    margin: 0;
    color: #cbd5f5;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .global-map-embed-wrapper {
        border-radius: 24px;
    }

    .global-map-embed-wrapper #chartdiv {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .global-map-embed-wrapper #chartdiv {
        height: 350px;
    }
}

/* Fix for very small mobile screens */
@media (max-width: 380px) {
    .feature-card,
    .service-card {
        padding: 1.25rem;
    }
    
    .slider-item h1 {
        font-size: 1.75rem !important;
        line-height: 1.3;
    }
    
    .slider-item p {
        font-size: 0.875rem !important;
    }
}

/* Mobile specific adjustments */
@media (max-width: 640px) {
    /* Keep slider structure intact - don't override positioning */
    .slider-item {
        display: flex;
        align-items: center;
    }
    
    .slider-item .container {
        padding-top: 5rem;
        padding-bottom: 8rem;
        position: relative;
        z-index: 10;
    }
    
    .slider-item .max-w-4xl {
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .slider-item h1 {
        line-height: 1.15 !important;
        margin-bottom: 0.75rem !important;
        font-size: 2rem !important;
    }
    
    .slider-item p {
        margin-bottom: 1.25rem !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        font-size: 0.9375rem !important;
    }
    
    .slider-item .inline-block {
        margin-bottom: 0.75rem !important;
    }
    
    /* Fix button overlap on mobile */
    .slider-item .flex.gap-3 {
        margin-top: 0.5rem;
        flex-direction: column;
        width: 100%;
        padding: 0;
        gap: 0.75rem !important;
    }
    
    .slider-item .flex.gap-3 a,
    .slider-item .flex.gap-3 button {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem !important;
    }
    
    /* Ensure slider controls are visible */
    .slider-prev,
    .slider-next {
        z-index: 20 !important;
    }
    
    .slider-dots {
        z-index: 20 !important;
    }
}

/* Additional mobile spacing for hero content */
@media (max-width: 480px) {
    .slider-item .container {
        padding-top: 4rem;
        padding-bottom: 7rem;
    }
    
    .slider-item h1 {
        font-size: 1.75rem !important;
    }
    
    .slider-item p {
        font-size: 0.875rem !important;
    }
}

/* Slider Navigation Buttons */
.slider-prev,
.slider-next {
    transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Hide arrows on very small screens */
@media (max-width: 640px) {
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .slider-prev {
        left: 8px;
    }
    
    .slider-next {
        right: 8px;
    }
}

/* Slider Dots */
.slider-dots {
    transition: all 0.3s ease;
}

.dot {
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot.active {
    width: 2rem;
}

/* Better mobile dot positioning */
@media (max-width: 640px) {
    .slider-dots {
        bottom: 1.5rem;
        padding: 0.5rem 0.75rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 1.5rem;
    }
}

/* Slider arrows dark theme */
.slider-prev,
.slider-next {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.slider-prev:active,
.slider-next:active {
    transform: translateY(-50%) scale(0.95);
}

/* Slide Content Animation - Enhanced */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.slider-item:not(.active) .slide-title,
.slider-item:not(.active) p,
.slider-item:not(.active) .flex,
.slider-item:not(.active) .inline-block {
    opacity: 0;
    transform: translateY(30px);
}

.slider-item.active .inline-block {
    animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.slider-item.active .slide-title {
    animation: fadeInScale 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.slider-item.active p {
    animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.slider-item.active .flex {
    animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
}

/* Background Image Ken Burns Effect - Enhanced */
.slider-item .bg-cover {
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1.15) translateX(0);
    will-change: transform;
}

.slider-item.active .bg-cover {
    animation: kenBurns 12s ease-in-out infinite alternate;
    transform: scale(1.1);
}

@keyframes kenBurns {
    0% {
        transform: scale(1.1) translateX(0) translateY(0);
    }
    50% {
        transform: scale(1.15) translateX(-2%) translateY(-1%);
    }
    100% {
        transform: scale(1.12) translateX(2%) translateY(1%);
    }
}

/* Ensure active slider content is visible */
.slider-item.active .slide-title,
.slider-item.active p,
.slider-item.active .flex {
    opacity: 1 !important;
}

/* Smooth gradient overlay transition */
.slider-item > div[class*="bg-gradient"] {
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-item:not(.active) > div[class*="bg-gradient"] {
    opacity: 0.8;
}

.slider-item.active > div[class*="bg-gradient"] {
    opacity: 1;
}

/* ============================================
   SLIDESHOW STACK COMPONENT STYLES
   ============================================ */

/* Container and Base Styles */
.resizable {
    padding: 2rem;
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    min-width: 360px;
    min-height: 500px;
    overflow: hidden;
}

/* Mobile wrapper for full-width slideshow */
.slideshow-wrapper-mobile {
    width: 100%;
}

@media (max-width: 768px) {
    .slideshow-wrapper-mobile {
        padding: 0;
        margin: 0;
    }
    
    .resizable {
        max-width: 100%;
        aspect-ratio: 16/11;
        padding: 0;
        min-height: 420px;
        margin: 0;
    }
}

@media (max-width: 500px) {
    .slideshow-wrapper-mobile {
        padding: 0;
        overflow: hidden;
    }
    
    .resizable {
        max-width: 100%;
        aspect-ratio: 1/1;
        padding: 0;
        min-height: 400px;
        margin: 0;
    }
}

@media (max-width: 380px) {
    .resizable {
        max-width: 100%;
        min-height: 360px;
        margin: 0;
    }
}

slideshow-stack {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.slideshow-stack__container {
    --radius: 2rem;
    --button-width: 5rem;
    --panel-padding: 3rem;
    --border-width: 2px;
    --border-color: var(--nav-border); /* Uses navbar border color */
    --inactive-tabs-width: calc((var(--total-tabs) - 1) * var(--button-width));
    --active-panel-width: calc(100cqi - var(--inactive-tabs-width));
    --active-panel-height: calc(100cqh - var(--inactive-tabs-width));
    
    width: 100%;
    height: 100%;
    position: relative;
    container-type: inline-size;
    border-radius: var(--radius);
    overflow: hidden;
    touch-action: none;
}

/* Mobile container fixes */
@media (max-width: 768px) {
    slideshow-stack {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .slideshow-stack__container {
        overflow: hidden !important;
        border-radius: var(--radius);
        max-width: 100%;
    }
}

@media (max-width: 500px) {
    .slideshow-stack__container {
        overflow: hidden !important;
        border-radius: var(--radius);
    }
}

/* Tab List (Invisible Buttons) */
.slideshow-stack__tablist {
    display: grid;
    grid-template-columns: var(--active-tab);
    list-style: none;
    padding: 0;
    position: absolute;
    inset: 0;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.slideshow-stack__tablist button {
    width: var(--button-width);
    height: 100%;
    pointer-events: all;
    opacity: 0;
    cursor: grab;
    background: transparent;
    border: none;
}

.slideshow-stack__tablist button[aria-selected="true"] {
    cursor: default;
}

/* Panels Container */
.slideshow-stack__panels {
    display: grid;
    grid-template-columns: var(--active-tab);
    height: 100%;
    overflow: hidden;
}

/* Mobile: Ensure panels stay within bounds */
@media (max-width: 768px) {
    .slideshow-stack__panels {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
}

/* Individual Panel */
[role="tabpanel"] {
    position: relative;
    height: 100%;
    min-width: var(--button-width);
    border-radius: var(--radius);
    z-index: calc(var(--total-tabs) - var(--index));
}

[role="tabpanel"]:nth-of-type(1) {
    position: relative;
}

[role="tabpanel"]:nth-of-type(1)::after {
    content: '';
    position: absolute;
    inset: 0;
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--radius);
    pointer-events: none;
}

/* Fix first panel border on mobile */
@media (max-width: 500px) {
    [role="tabpanel"]:nth-of-type(1)::after {
        border-radius: var(--radius);
        inset: 0;
    }
}

[role="tabpanel"]:nth-of-type(1) .slideshow-stack__panel-content {
    width: calc(var(--active-panel-width) + (var(--radius) * 0));
}

/* Mobile: Fix first panel width to stay within bounds */
@media (max-width: 768px) {
    [role="tabpanel"]:nth-of-type(1) .slideshow-stack__panel-content {
        width: 100% !important;
        max-width: 100%;
    }
}

[role="tabpanel"]:not(:nth-of-type(1)) .slide__content {
    padding-left: calc((var(--radius) * 2) + var(--panel-padding));
}

/* Panel Content */
.slideshow-stack__panel-content {
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--radius);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
    width: calc(var(--active-panel-width) + (var(--radius) * 2));
}

/* Mobile: Prevent panel overflow */
@media (max-width: 768px) {
    .slideshow-stack__panel-content {
        width: 100% !important;
        max-width: 100%;
        right: 0;
        left: 0;
    }
}

.slideshow-stack__panel-content img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Fix first panel image on mobile */
@media (max-width: 768px) {
    [role="tabpanel"]:nth-of-type(1) .slideshow-stack__panel-content img {
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 500px) {
    .slideshow-stack__panel-content img {
        object-fit: cover;
        object-position: center center;
    }
}

/* Slide Content Overlay */
.slide__content {
    position: absolute;
    inset: 0;
    padding: var(--panel-padding);
    display: flex;
    align-items: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    container-type: inline-size;
}

.slide-text {
    font-size: clamp(2rem, 5cqi, 3.5rem);
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1.2;
    font-weight: 300;
    max-width: 75%;
    z-index: 2;
    display: grid;
    gap: 1.5rem;
}

.slide-text p {
    text-wrap: balance;
    margin: 0;
}

/* Mobile slideshow text improvements */
@media (max-width: 768px) {
    .slide-text {
        font-size: clamp(1.25rem, 4cqi, 2rem);
        max-width: 90%;
        gap: 1rem;
    }
}

@media (max-width: 500px) {
    .slide-text {
        font-size: clamp(1.125rem, 4cqi, 1.5rem);
        max-width: 100%;
        gap: 0.75rem;
    }
    
    .slide-text p {
        font-size: 1rem;
        line-height: 1.4;
    }
}

/* Action Buttons */
.actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.actions a {
    border-radius: 100px;
    background: transparent;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.actions a:hover,
.actions a:focus-visible {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Mobile action buttons */
@media (max-width: 768px) {
    .actions {
        gap: 0.75rem;
    }
    
    .actions a {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 500px) {
    .actions {
        gap: 0.5rem;
        flex-direction: column;
        width: 100%;
    }
    
    .actions a {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
        width: 100%;
        text-align: center;
    }
}

/* Mobile improvements for slideshow section */
@media (max-width: 768px) {
    .slideshow-stack__container {
        --panel-padding: 2rem;
        --button-width: 4rem;
        --radius: 1.5rem;
    }
    
    .slide__content {
        padding: 1.5rem;
    }
}

@media (max-width: 500px) {
    .slideshow-stack__container {
        --panel-padding: 1.25rem;
        --button-width: 2.5rem;
        --radius: 1rem;
    }
    
    .slide__content {
        padding: 1rem;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    }
}

/* Responsive Mobile Layout */
@container (max-width: 500px) {
    .slideshow-stack__tablist {
        grid-template-columns: unset;
        grid-template-rows: var(--active-tab);
    }
    
    .slideshow-stack__tablist button {
        width: 100%;
        height: var(--button-width);
    }
    
    .slideshow-stack__panels {
        grid-template-columns: unset;
        grid-template-rows: var(--active-tab);
        container-type: size;
    }
    
    [role="tabpanel"] {
        width: 100% !important;
        min-height: var(--button-width);
    }
    
    [role="tabpanel"]:nth-of-type(1) .slideshow-stack__panel-content {
        height: calc(var(--active-panel-height) + (var(--radius) * 0));
        width: 100% !important;
        right: 0;
        left: 0;
    }
    
    .slideshow-stack__panel-content {
        width: 100% !important;
        max-width: 100% !important;
        top: unset;
        right: 0 !important;
        left: 0 !important;
        padding-bottom: var(--panel-padding);
        height: calc(var(--active-panel-height) + (var(--radius) * 2));
        border-radius: var(--radius);
    }
    
    [role="tabpanel"]:not(:nth-of-type(1)) .slideshow-stack__panel-content {
        border-top: 0;
        width: 100% !important;
    }
    
    [role="tabpanel"]:not(:nth-of-type(1)) .slide__content {
        padding-left: var(--panel-padding);
    }
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
    [data-dragging] * {
        cursor: grabbing !important;
    }
    
    [data-dragging] .slideshow-stack__tablist,
    [data-dragging] .slideshow-stack__panels {
        transition: none !important;
    }
    
    .slideshow-stack__panels,
    .slideshow-stack__tablist {
        --ease: linear(
            0 0%, 0.0036 9.62%, 0.0185 16.66%,
            0.0489 23.03%, 0.0962 28.86%,
            0.1705 34.93%, 0.269 40.66%,
            0.3867 45.89%, 0.5833 52.95%,
            0.683 57.05%, 0.7829 62.14%,
            0.8621 67.46%, 0.8991 70.68%,
            0.9299 74.03%, 0.9545 77.52%,
            0.9735 81.21%, 0.9865 85%,
            0.9949 89.15%, 1 100%
        );
        transition-property: grid-template-columns, grid-template-rows;
        transition-duration: 0.6s;
        transition-timing-function: ease-out;
    }
    
    .slide-text {
        opacity: 0;
        translate: 0 0.5lh;
        transition-property: opacity, translate, scale;
        transition-duration: 0.48s;
        transition-timing-function: ease-out;
    }
    
    [role="tabpanel"]:not([inert]) .slide-text {
        opacity: 1;
        transition-delay: 0.24s;
        translate: 0 0;
    }
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ============================================
   MODERN FEATURE CARDS (MacBook Style)
   ============================================ */

.feature-card-modern {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2C3A92, #F48426);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-modern:hover {
    transform: translateY(-6px);
    background: #ffffff;
    border-color: #F48426;
    box-shadow: 0 8px 24px rgba(244, 132, 38, 0.15);
}

.feature-card-modern:hover::before {
    opacity: 1;
}

/* Icon Container */
.feature-icon-modern {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #2C3A92 0%, #1e2a6b 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(44, 58, 146, 0.2);
}

.feature-card-modern:hover .feature-icon-modern {
    transform: scale(1.1);
    background: linear-gradient(135deg, #F48426 0%, #d66a0f 100%);
    box-shadow: 0 8px 20px rgba(244, 132, 38, 0.35);
}

/* Icon Glow Effect */
.icon-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(
        circle at center,
        rgba(244, 132, 38, 0.2) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(20px);
}

.feature-card-modern:hover .icon-glow {
    opacity: 1;
}

.feature-icon-modern i {
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-modern:hover .feature-icon-modern i {
    transform: scale(1.1);
    color: #ffffff;
}

/* Typography */
.feature-title-modern {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
    transition: color 0.4s ease;
}

.feature-card-modern:hover .feature-title-modern {
    color: #2C3A92;
}

.feature-text-modern {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #64748b;
    font-weight: 400;
    transition: color 0.4s ease;
}

.feature-card-modern:hover .feature-text-modern {
    color: #475569;
}

/* Responsive Design */
@media (max-width: 640px) {
    .feature-card-modern {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .feature-icon-modern {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .feature-title-modern {
        font-size: 1.125rem;
    }
    
    .feature-text-modern {
        font-size: 0.875rem;
    }
}

/* Smooth animations */
@media (prefers-reduced-motion: no-preference) {
    .feature-card-modern {
        animation: fadeInUp 0.6s ease-out backwards;
    }
    
    .feature-card-modern:nth-child(1) {
        animation-delay: 0.1s;
    }
    
    .feature-card-modern:nth-child(2) {
        animation-delay: 0.2s;
    }
    
    .feature-card-modern:nth-child(3) {
        animation-delay: 0.3s;
    }
    
    .feature-card-modern:nth-child(4) {
        animation-delay: 0.4s;
    }
}

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

/* ============================================
   FEATURES SECTION V2 (Modern Design)
   ============================================ */

.features-section-modern {
    position: relative;
}

.feature-card-v2 {
    position: relative;
}

.feature-card-inner {
    position: relative;
    overflow: hidden;
}

.feature-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 58, 146, 0.03), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.feature-card-inner:hover::before {
    left: 100%;
}

.feature-card-inner > * {
    position: relative;
    z-index: 1;
}

.feature-number {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.feature-icon-wrapper {
    position: relative;
}

.feature-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(44, 58, 146, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card-v2:hover .feature-icon-wrapper::after {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .feature-card-inner {
        padding: 1.5rem;
    }
    
    .feature-icon-wrapper .w-20 {
        width: 4rem;
        height: 4rem;
    }
    
    .feature-icon-wrapper .text-3xl {
        font-size: 1.5rem;
    }
}

/* ============================================
   FEATURE BOX MODERN (Image Style)
   ============================================ */
.feature-box-modern {
    padding: 1.5rem 0;
}

.feature-icon-outline {
    display: flex;
    align-items: center;
}

.feature-icon-outline > div {
    border-width: 3px;
    border-style: solid;
    background: transparent;
}

.border-3 {
    border-width: 3px;
}

@media (max-width: 768px) {
    .feature-box-modern {
        padding: 1.25rem 0;
    }
    
    .feature-icon-outline > div {
        width: 4.5rem;
        height: 4.5rem;
    }
    
    .feature-icon-outline i {
        font-size: 1.5rem;
    }
}

/* ============================================
   GROUP COMPANIES SECTION
   ============================================ */

.group-companies-section {
    position: relative;
}

.group-company-card {
    position: relative;
}

.group-company-card > div {
    position: relative;
    overflow: hidden;
}

.group-company-card > div::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 58, 146, 0.03), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.group-company-card > div:hover::before {
    left: 100%;
}

.group-company-card > div > * {
    position: relative;
    z-index: 1;
}

.company-icon-wrapper {
    position: relative;
}

.company-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(44, 58, 146, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.group-company-card:hover .company-icon-wrapper::after {
    opacity: 1;
}

/* Company Logo Cards */
.group-company-logo {
    position: relative;
}

.group-company-logo > div {
    position: relative;
    overflow: hidden;
}

.group-company-logo > div::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 58, 146, 0.03), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.group-company-logo > div:hover::before {
    left: 100%;
}

.group-company-logo img {
    position: relative;
    z-index: 1;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.group-company-logo:hover img {
    opacity: 1;
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .group-company-card > div {
        padding: 1.5rem;
    }
    
    .company-icon-wrapper .w-20 {
        width: 4rem;
        height: 4rem;
    }
    
    .company-icon-wrapper .text-3xl {
        font-size: 1.5rem;
    }
    
    .group-company-logo > div {
        padding: 1.5rem;
        min-height: 150px;
    }
    
    .group-company-logo img {
        max-height: 60px;
    }
}

/* ============================================
   MODERN SPLIT ABOUT SECTION
   ============================================ */

.we-are-block-modern {
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media screen and (max-width: 860px) {
    .we-are-block-modern {
        min-height: auto;
    }
}

/* About Section (Light Background) */
.about-section-modern {
    background: #f8fafc;
    width: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

@media screen and (max-width: 860px) {
    .about-section-modern {
        flex-direction: column;
        min-height: 600px;
        padding: 3rem 0;
    }
}

.about-image-modern {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50%;
    max-width: 50%;
    overflow: hidden;
    order: 2;
}

.about-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* opacity: 0.35; */
    filter: saturate(1.05);
}

@media screen and (max-width: 860px) {
    .about-image-modern {
        position: relative;
        width: 100%;
        max-width: 100%;
        height: 300px;
    }
    

}

.about-info-modern {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    /* width: 50%; */
    max-width: 900px;
    margin-left: 5%;
    margin-right: auto;
    padding: 3.5rem 2.5rem;
    z-index: 2;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    order: 1;
}

@media screen and (max-width: 1200px) {
    .about-info-modern {
        width: 55%;
        margin-left: 4%;
    }
}

@media screen and (max-width: 860px) {
    .about-info-modern {
        margin: -50px 5% 40px 5%;
        width: 90%;
        align-items: center;
        text-align: center;
        order: 1;
    }
    
    .about-image-modern {
        order: 2;
    }
}

.about-info-modern h2 {
    color: #1e293b;
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
}

.about-info-modern p {
    color: #475569;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.75;
    margin: 0;
    font-weight: 400;
}

.about-info-modern a {
    background: #F48426;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.05em;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(244, 132, 38, 0.2);
    transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.about-info-modern a:hover {
    background: #2C3A92;
    box-shadow: 0 4px 12px rgba(44, 58, 146, 0.3);
    transform: translateY(-2px);
}

/* Mission Section (Light Background) */
.mission-section-modern {
    background: #ffffff;
    width: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

@media screen and (max-width: 860px) {
    .mission-section-modern {
        flex-direction: column;
        min-height: 600px;
        padding: 3rem 0;
    }
}

.mission-image-modern {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    max-width: 50%;
    overflow: hidden;
}

.mission-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* opacity: 0.35; */
    filter: saturate(1.05);
}

@media screen and (max-width: 860px) {
    .mission-image-modern {
        position: relative;
        width: 100%;
        max-width: 100%;
        height: 300px;
    }

}

.mission-info-modern {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    /* width: 50%; */
    max-width: 1000px;
    margin-right: 6%;
    margin-left: auto;
    padding: 3.5rem 2.5rem;
    z-index: 2;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 1200px) {
    .mission-info-modern {
        width: 58%;
        margin-right: 4%;
    }
}

@media screen and (max-width: 860px) {
    .mission-info-modern {
        margin: -50px 5% 40px 5%;
        width: 90%;
        align-items: center;
        text-align: center;
    }
}

.mission-info-modern h2 {
    color: #0f172a;
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
}

.mission-info-modern p {
    color: #475569;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.75;
    margin: 0;
    font-weight: 400;
}

.mission-info-modern a {
    background: #F48426;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.05em;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(244, 132, 38, 0.2);
    transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.mission-info-modern a:hover {
    background: #2C3A92;
    box-shadow: 0 4px 12px rgba(44, 58, 146, 0.3);
    transform: translateY(-2px);
}

/* Mobile spacing adjustments */
@media screen and (max-width: 500px) {
    .about-info-modern,
    .mission-info-modern {
        padding: 2rem 1.5rem;
        gap: 1rem;
    }
    
    .about-info-modern a,
    .mission-info-modern a {
        padding: 0.875rem 2rem;
        font-size: 0.875rem;
    }
}

/* ============================================
   GLOBAL DESTINATIONS CAROUSEL SECTION
   ============================================ */

.destinations-section-modern {
    width: 100%;
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%);
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

/* Reset owl carousel defaults within this section only */
.destinations-section-modern * {
    box-sizing: border-box;
}

.destinations-section-modern .owl-carousel {
    display: block;
    position: relative;
}

.destinations-container-modern {
    width: min(1200px, 90%);
    margin: 0 auto;
}

.destinations-header-modern {
    margin-bottom: 4rem;
    text-align: center;
}

@media screen and (max-width: 600px) {
    .destinations-header-modern {
        margin-bottom: 4.5rem !important;
    }
}

.destinations-badge-modern {
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    font-weight: 700;
    font-size: 0.875rem;
    color: #F48426;
    background: rgba(244, 132, 38, 0.15);
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid rgba(244, 132, 38, 0.3);
}

.destinations-title-modern {
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 1rem 0 1.25rem;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.03em;
}

.destinations-subtitle-modern {
    max-width: min(50ch, 100% - 2rem);
    margin: 0 auto;
    line-height: 1.7;
    color: #e2e8f0;
    font-size: 1.125rem;
}

.destination-card-modern {
    width: 100%;
    height: 280px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.destination-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
}

.destination-card-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.destination-card-modern:hover img {
    transform: scale(1.1);
}

.destination-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1.5rem 1.25rem;
    color: #fff;
    background: linear-gradient(
        0deg,
        rgba(15, 23, 42, 0.95) 0%,
        rgba(15, 23, 42, 0.7) 30%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    transition: all 0.4s ease;
}

.destination-country-modern {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.destination-card-modern:hover .destination-country-modern {
    background: rgba(245, 158, 11, 0.9);
    border-color: #f59e0b;
}

.destination-info-modern h3 {
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.destination-info-modern p {
    font-size: 0.875rem;
    color: #e2e8f0;
    font-weight: 500;
}

/* Owl Carousel Custom Navigation - Scoped to destinations only */
.destinations-section-modern .owl-carousel-destinations {
    position: relative;
}

.destinations-section-modern .owl-carousel-destinations .owl-nav {
    position: absolute;
    top: -120px;
    right: 0;
    z-index: 10;
}

@media screen and (max-width: 768px) {
    .destinations-section-modern .owl-carousel-destinations .owl-nav {
        top: auto !important;
        bottom: -70px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        display: flex !important;
        gap: 1rem !important;
        right: auto !important;
    }
    
    .destinations-section-modern .owl-carousel-destinations .owl-nav button.owl-prev {
        margin-right: 0 !important;
    }
}

@media screen and (max-width: 600px) {
    .destinations-section-modern .owl-carousel-destinations .owl-nav {
        bottom: -80px !important;
    }
    
    .destinations-section-modern .owl-carousel-destinations .owl-nav button.owl-prev,
    .destinations-section-modern .owl-carousel-destinations .owl-nav button.owl-next {
        width: 45px !important;
        height: 45px !important;
        font-size: 20px !important;
        line-height: 45px !important;
    }
}

.destinations-section-modern .owl-carousel-destinations .owl-nav button.owl-prev,
.destinations-section-modern .owl-carousel-destinations .owl-nav button.owl-next {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 50px !important;
    height: 50px !important;
    font-size: 24px !important;
    line-height: 50px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
    border-radius: 50% !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
    padding: 0 !important;
}

.destinations-section-modern .owl-carousel-destinations .owl-nav button.owl-prev:hover,
.destinations-section-modern .owl-carousel-destinations .owl-nav button.owl-next:hover {
    background: rgba(245, 158, 11, 0.9) !important;
    border-color: #f59e0b !important;
    transform: scale(1.1) !important;
}

.destinations-section-modern .owl-carousel-destinations .owl-nav button.owl-prev {
    margin-right: 1rem !important;
}

/* Owl Carousel Dots - Scoped */
.destinations-section-modern .owl-carousel-destinations .owl-dots {
    margin-top: 3rem !important;
    text-align: center !important;
    line-height: 1 !important;
}

.destinations-section-modern .owl-carousel-destinations .owl-dot {
    display: inline-block !important;
    width: 12px !important;
    height: 12px !important;
    background: rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
    margin: 0 6px !important;
    padding: 0 !important;
    transition: all 0.3s ease !important;
}

.destinations-section-modern .owl-carousel-destinations .owl-dot span {
    display: none !important;
}

.destinations-section-modern .owl-carousel-destinations .owl-dot.active {
    background: #f59e0b !important;
    width: 32px !important;
    height: 12px !important;
    border-radius: 20px !important;
}

/* Ensure owl carousel stage doesn't affect other sections */
.destinations-section-modern .owl-carousel-destinations .owl-stage-outer {
    overflow: hidden !important;
}

.destinations-section-modern .owl-carousel-destinations .owl-item {
    float: left !important;
}

/* ============================================
   Services Carousel Navigation/Dots (Owl)
   Matches Global Reach style with primary theme
============================================ */
/* Responsive */
@media screen and (max-width: 768px) {
    .destinations-section-modern {
        padding: 4rem 0 8rem 0;
    }
    
    .destinations-header-modern {
        margin-bottom: 3rem;
    }
    
    .destination-card-modern {
        height: 280px;
    }
    
    .destination-info-modern h3 {
        font-size: 1.75rem;
    }
    
    .destinations-section-modern .owl-carousel-destinations .owl-dots {
        margin-top: 5rem !important;
    }
}

@media screen and (max-width: 500px) {
    .destinations-section-modern {
        padding: 3rem 0 7rem 0;
    }
    
    .destination-card-modern {
        height: 250px;
        margin: 0 5px;
    }
    
    .destination-overlay-modern {
        padding: 1.5rem 1.25rem;
    }
    
    .destinations-section-modern .owl-carousel-destinations .owl-dots {
        margin-top: 6rem !important;
    }
}

/* ============================================
   MODERN FOOTER WITH CTA
   ============================================ */

.footer-modern {
    width: 100%;
}

.footer-cta-wrapper {
    background: radial-gradient(ellipse at center, #374151 0%, #111827 50%, #000000 100%);
    width: 100%;
}

/* CTA Box */
.footer-cta-box {
    background: linear-gradient(120deg, #2C3A92 0%, #1e2a6b 50%, #F48426 100%);
    padding: 3.5rem 2.5rem;
    border-radius: 1.5rem;
    margin-bottom: 3.5rem;
    box-shadow: 0 25px 50px rgba(44, 58, 146, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(244, 132, 38, 0.15) 100%);
    pointer-events: none;
}

.footer-cta-title {
    color: #ffffff;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.footer-cta-button {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2C3A92;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.footer-cta-button:hover {
    background: linear-gradient(135deg, #F48426 0%, #d66a0f 100%);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(244, 132, 38, 0.4);
    border-color: #F48426;
}

/* Footer Headings */
.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #f3f4f6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

/* Footer Links */
.footer-links {
    display: grid;
    gap: 0.75rem;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #f59e0b;
    padding-left: 0.5rem;
}

/* Footer Logo */
.footer-logo-img {
    background-color: #ffffff;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

/* Social Links */
.footer-social-link {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: 1px solid transparent;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: #f59e0b;
    color: #0f172a;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

/* Responsive Footer */
@media screen and (max-width: 768px) {
    .footer-cta-box {
        padding: 2.5rem 1.5rem;
        text-align: center;
    }
    
    .footer-cta-button {
        width: 100%;
        margin-top: 1.5rem;
    }
    
    .footer-heading {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 640px) {
    .footer-cta-title {
        font-size: 1.5rem;
    }
    
    .footer-cta-button {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
    }
}

/* ============================================
   STICKY SOCIAL BUTTONS (Vertical Stack)
   ============================================ */

.social-sticky-wrapper {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Hide sticky social buttons on mobile */
@media (max-width: 768px) {
    .social-sticky-wrapper {
        display: none !important;
    }
}

.social-sticky-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #ffffff;
    padding: 1rem 0.75rem;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    box-shadow: 
        -4px 0 16px rgba(0, 0, 0, 0.3),
        -2px 0 8px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 40px;
    border-left: 3px solid rgba(255, 255, 255, 0.2);
}

.social-sticky-btn:hover {
    transform: translateX(-10px);
    box-shadow: 
        -8px 0 24px rgba(0, 0, 0, 0.4),
        -4px 0 12px rgba(0, 0, 0, 0.25);
    border-left-color: rgba(255, 255, 255, 0.5);
}

.social-sticky-btn i {
    font-size: 1.75rem;
    display: block;
    order: 1;
}

.social-text {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    white-space: nowrap;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    order: 2;
    line-height: 1;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: linear-gradient(180deg, #25d366 0%, #20ba5a 50%, #128c7e 100%);
    border-radius: 12px 0 0 0;
}

.whatsapp-btn:hover {
    background: linear-gradient(180deg, #20ba5a 0%, #25d366 50%, #1ea952 100%);
}

.whatsapp-btn i {
    animation: pulse 2s ease-in-out infinite;
}

/* LinkedIn Button */
.linkedin-btn {
    background: linear-gradient(180deg, #0077b5 0%, #005885 50%, #004471 100%);
}

.linkedin-btn:hover {
    background: linear-gradient(180deg, #0088cc 0%, #0077b5 50%, #005885 100%);
}

/* Instagram Button */
.instagram-btn {
    background: linear-gradient(180deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 0 0 0 12px;
}

.instagram-btn:hover {
    background: linear-gradient(180deg, #f5a742 0%, #f09433 25%, #e6683c 50%, #dc2743 75%, #cc2366 100%);
}

/* Pulse animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

/* Mobile responsiveness - Hide sticky social buttons on mobile */
@media (max-width: 768px) {
    .social-sticky-wrapper {
        display: none !important;
    }
}

/* ============================================
   MOBILE WHATSAPP BUTTON (Bottom Right)
   ============================================ */

.mobile-whatsapp-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.mobile-whatsapp-btn i {
    font-size: 28px;
    color: #ffffff;
}

.mobile-whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.mobile-whatsapp-btn:active {
    transform: scale(0.95);
}

/* Show only on mobile */
@media (min-width: 769px) {
    .mobile-whatsapp-btn {
        display: none !important;
    }
}

/* Show on mobile */
@media (max-width: 768px) {
    .mobile-whatsapp-btn {
        display: flex !important;
    }
}

/* Pulse animation for WhatsApp button */
@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-section-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #f59e0b 50%, #0f172a 50%);
    background-size: 100vw 100vh;
    padding: 8rem 2rem 4rem 2rem;
    overflow-x: hidden;
    width: 100%;
}

@media (max-width: 768px) {
    .contact-section-wrapper {
        align-items: flex-start;
        padding-top: 6rem;
        padding-bottom: 2rem;
        background: linear-gradient(180deg, #f59e0b 0%, #0f172a 100%);
        overflow-x: hidden;
    }
}

.contact-wrapper-modern {
    display: flex;
    background: #ffffff;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    width: 100%;
    max-width: 900px;
    border-radius: 20px;
    overflow: visible;
}

@media (max-width: 768px) {
    .contact-wrapper-modern {
        flex-direction: column;
        width: 95%;
        padding: 0;
        margin: 0 1rem;
        border-radius: 16px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        overflow-x: hidden;
        max-width: 100%;
    }
}

/* Desktop-specific styles */
@media (min-width: 769px) {
    .contact-wrapper-modern {
        overflow: visible;
    }
    
    .contact-info-modern {
        overflow: visible;
    }
    
    .contact-form-modern {
        overflow: visible;
    }
}

/* Contact Form Alert Messages */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
    animation: slideIn 0.3s ease-out;
}

.alert i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

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

/* Mobile responsive alerts */
@media (max-width: 768px) {
    .alert {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .alert i {
        margin-right: 0.5rem;
        font-size: 1rem;
    }
}

/* Contact Info Sidebar */
.contact-info-modern {
    position: relative;
    width: 315px;
    flex: 0 0 280px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    margin-left: calc(-280px / 2 - 2rem);
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    z-index: 10;
}

@media (max-width: 768px) {
    .contact-info-modern {
        width: 100%;
        flex: 0 0 100%;
        margin: 0;
        padding: 2rem 1.5rem;
        border-radius: 16px 16px 0 0;
        order: 1;
        overflow-x: hidden;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-info-modern {
        margin: 0;
        padding: 1.5rem;
        border-radius: 16px 16px 0 0;
        overflow-x: hidden;
        max-width: 100%;
    }
}

.contact-info-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 2rem 0;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
}

.contact-icons-list {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 2.5rem;
}

.contact-icons-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.75rem;
    gap: 1rem;
}

.contact-icons-list li .contact-icon {
    margin-top: 2px;
}

@media (max-width: 768px) {
    .contact-icons-list li {
        margin-bottom: 1.5rem;
        gap: 0.875rem;
    }
}

.contact-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.contact-icon i {
    font-size: 1.375rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
}

.contact-text {
    line-height: 1.6;
    color: #e2e8f0;
    font-size: 0.9375rem;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-text a {
    color: inherit;
    text-decoration: none;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-link {
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
    display: inline-block;
}

.contact-text a:hover {
    color: #f59e0b;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-text {
        font-size: 1rem;
        line-height: 1.5;
    }
}

.contact-social-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .contact-social-list {
        position: relative;
        bottom: auto;
        margin-top: 1rem;
    }
}

.contact-social-list li a {
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.contact-social-list li a:hover {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.2);
    transform: translateY(-4px);
}

.contact-social-list li a i {
    font-size: 1.125rem;
}

/* Contact Form */
.contact-form-modern {
    width: calc(100% - 280px / 2 - 4rem);
    flex: 0 0 calc(100% - 280px / 2 - 4rem);
    padding: 2rem 2.5rem;
    padding-bottom: 0;
}

@media (max-width: 768px) {
    .contact-form-modern {
        width: 100%;
        flex: 0 0 100%;
        padding: 2rem 1.5rem;
        order: 2;
        border-radius: 0 0 16px 16px;
        overflow-x: hidden;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-form-modern {
        padding: 1.5rem 1rem;
        border-radius: 0 0 16px 16px;
        overflow-x: hidden;
        max-width: 100%;
    }
}

.contact-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 2rem 0;
    font-family: 'Poppins', sans-serif;
    color: #0f172a;
}

.contact-form-fields {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
}

.form-input-group {
    position: relative;
    margin-bottom: 1.75rem;
    padding: 0 1rem;
}

.input-w-50 {
    width: 50%;
    flex: 0 0 50%;
}

.input-w-100 {
    width: 100%;
    flex: 0 0 100%;
}

@media (max-width: 768px) {
    .input-w-50 {
        width: 100%;
        flex: 0 0 100%;
    }
    
    .form-input-group {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .input-w-50 {
        width: 100%;
        flex: 0 0 100%;
    }
}

.form-input-modern {
    width: 100%;
    min-height: 48px;
    padding: 0.75rem 0;
    border: none;
    font-size: 1rem;
    color: #0f172a;
    outline: none;
    font-weight: 400;
    border-bottom: 2px solid #e5e7eb;
    background: transparent;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    .form-input-modern {
        min-height: 52px;
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.875rem 0;
    }
}

.form-textarea-modern {
    min-width: 100%;
    min-height: 120px;
    max-height: 180px;
    max-width: 100%;
    resize: vertical;
    padding-top: 1rem;
}

@media (max-width: 768px) {
    .form-textarea-modern {
        min-height: 140px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

.form-input-modern:hover {
    border-bottom-color: #cbd5e1;
}

.form-input-modern:focus {
    border-bottom-color: #f59e0b;
}

.form-input-modern:valid ~ .form-label-modern,
.form-input-modern:focus ~ .form-label-modern {
    top: -1.5rem;
    font-size: 0.75rem !important;
    color: #f59e0b;
    font-weight: 600;
}

.form-textarea-modern:valid ~ .label-textarea,
.form-textarea-modern:focus ~ .label-textarea {
    top: -0.75rem;
}

.form-label-modern {
    position: absolute;
    left: 1rem;
    top: 0.75rem;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #9ca3af;
    font-weight: 400;
    transition: all 0.3s ease;
    pointer-events: none;
}

.label-textarea {
    align-items: flex-start;
    top: 1.75rem;
}

.form-btn-modern {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    min-width: 180px;
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.3);
}

@media (max-width: 768px) {
    .form-btn-modern {
        width: 100%;
        min-width: auto;
        padding: 1.125rem 2rem;
        font-size: 1.125rem;
        margin-top: 1rem;
    }
}

.form-btn-modern:hover {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.5);
}

.form-btn-modern:active {
    transform: translateY(-2px) scale(0.98);
}

.form-btn-modern:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Map Section */
.map-section-modern {
    width: 100%;
    height: 450px;
    position: relative;
}

.map-section-modern iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.2) contrast(1.1);
}

@media (max-width: 768px) {
    .map-section-modern {
        height: 300px;
        margin: 2rem 1rem 0 1rem;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        max-width: calc(100% - 2rem);
        width: calc(100% - 2rem);
    }
}

@media (max-width: 480px) {
    .map-section-modern {
        height: 250px;
        margin: 1.5rem 0.5rem 0 0.5rem;
        max-width: calc(100% - 1rem);
        width: calc(100% - 1rem);
    }
}

/* Additional mobile improvements for contact page */
@media (max-width: 768px) {
    .contact-info-title,
    .contact-form-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-form-fields {
        margin: 0 -0.5rem;
    }
    
    .form-input-group {
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .contact-info-title,
    .contact-form-title {
        font-size: 1.375rem;
        margin-bottom: 1.25rem;
    }
    
    .contact-form-fields {
        margin: 0;
    }
    
    .form-input-group {
        padding: 0;
    }
    
    .contact-social-list {
        justify-content: center;
        gap: 1rem;
    }
    
    .contact-social-list li a {
        width: 44px;
        height: 44px;
    }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* About Hero Section */
.about-hero-section {
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    overflow: hidden;
}

.about-hero-section .absolute.inset-0.bg-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    will-change: transform;
}

.about-hero-section .absolute.inset-0.bg-gradient-to-br {
    z-index: 1;
}

.about-hero-section .container {
    position: relative;
    z-index: 10;
}

/* Responsive background attachment */
@media (max-width: 768px) {
    .about-hero-section .absolute.inset-0.bg-cover {
        background-attachment: scroll;
    }
}

/* Mission & Vision Tiles */
.tiles-wrap {
    margin: 50px auto 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    gap: 20px;
    flex-wrap: nowrap;
}

.tile {
    width: 350px;
    height: 380px;
    margin: 10px;
    background-color: #2C3A92;
    display: inline-block;
    background-size: cover;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease-out;
    box-shadow: 0px 35px 77px -17px rgba(0, 0, 0, 0.44);
    overflow: hidden;
    color: white;
    font-family: 'Poppins', sans-serif;
    border-radius: 20px;
    flex: 1;
    max-width: 350px;
}

.tile img {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transition: all 0.4s ease-out;
    object-fit: cover;
}

.tile .text {
    position: absolute;
    padding: 30px;
    height: calc(100% - 60px);
    z-index: 10;
    width: 100%;
}

.tile h1 {
    font-weight: 700;
    margin: 0;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.45), 0 0 6px rgba(0, 0, 0, 0.35);
    font-size: 1.875rem;
    font-family: 'Poppins', sans-serif;
}

.tile h2 {
    font-weight: 400;
    margin: 20px 0 0 0;
    font-style: italic;
    transform: translateX(200px);
    font-size: 1.25rem;
    color: #F48426;
}

.tile p {
    font-weight: 400;
    margin: 20px 0 0 0;
    line-height: 25px;
    transform: translateX(-200px);
    transition-delay: 0.2s;
    font-size: 0.9375rem;
}

.animate-text {
    opacity: 0;
    transition: all 0.6s ease-in-out;
}

.tile:hover {
    box-shadow: 0px 35px 77px -17px rgba(0, 0, 0, 0.64);
    transform: scale(1.05);
}

.tile:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 58, 146, 0.9) 0%, rgba(244, 132, 38, 0.85) 100%);
    z-index: 5;
    transition: all 0.4s ease-out;
}

.tile-mission:hover::before {
    background: linear-gradient(135deg, rgba(44, 58, 146, 0.92) 0%, rgba(30, 42, 107, 0.88) 100%);
}

.tile-vision:hover::before {
    background: transparent;
}

.tile-values:hover::before {
    background: linear-gradient(135deg, rgba(44, 58, 146, 0.88) 0%, rgba(244, 132, 38, 0.9) 100%);
}

.tile:hover img {
    opacity: 0.25;
    transform: scale(1.1);
}

.tile:hover .animate-text {
    transform: translateX(0);
    opacity: 1;
}

.dots {
    position: absolute;
    bottom: 20px;
    right: 30px;
    margin: 0 auto;
    width: 30px;
    height: 30px;
    color: currentColor;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.dots span {
    width: 5px;
    height: 5px;
    background-color: currentColor;
    border-radius: 50%;
    display: block;
    opacity: 0;
    transition: transform 0.4s ease-out, opacity 0.5s ease;
    transform: translateY(30px);
}

.tile:hover span {
    opacity: 1;
    transform: translateY(0px);
}

.dots span:nth-child(1) {
    transition-delay: 0.05s;
}

.dots span:nth-child(2) {
    transition-delay: 0.1s;
}

.dots span:nth-child(3) {
    transition-delay: 0.15s;
}

@media (max-width: 1200px) {
    .tile {
        width: 300px;
        height: 360px;
    }
    
    .tile .text {
        padding: 25px;
    }
}

@media (max-width: 1000px) {
    .tiles-wrap {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .tile {
        width: 280px;
        height: 340px;
        flex: 0 0 calc(33.333% - 10px);
    }
}

@media (max-width: 768px) {
    .tiles-wrap {
        flex-direction: column;
        width: 400px;
        margin: 0 auto;
        gap: 20px;
    }
    
    .tile {
        width: 350px;
        height: 350px;
        flex: none;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .tiles-wrap {
        width: 100%;
        padding: 0 20px;
    }
    
    .tile {
        width: 100%;
        max-width: 320px;
        height: 320px;
    }
    
    .tile .text {
        padding: 20px;
    }
    
    .tile h1 {
        font-size: 1.5rem;
    }
    
    .tile h2 {
        font-size: 1.125rem;
    }
    
    .tile p {
        font-size: 0.875rem;
        line-height: 22px;
    }
}

/* Mission & Vision Cards */
.mission-vision-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(245, 158, 11, 0.8),
        transparent
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mission-vision-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(245, 158, 11, 0.2);
}

.mission-vision-card:hover::before {
    opacity: 1;
}

.mission-vision-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 24px rgba(245, 158, 11, 0.3),
        0 0 40px rgba(245, 158, 11, 0.2);
}

.mission-vision-card:hover .mission-vision-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 32px rgba(245, 158, 11, 0.5),
        0 0 60px rgba(245, 158, 11, 0.4);
}

.mission-vision-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.mission-vision-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 2rem;
}

.mission-vision-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-weight: 500;
}

.feature-item i {
    font-size: 1.25rem;
}

/* Value Cards */
.value-card {
    background: #ffffff;
    border: 1px solid rgba(245, 158, 11, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(245, 158, 11, 0.8),
        transparent
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 
        0 20px 60px rgba(245, 158, 11, 0.15),
        0 0 40px rgba(245, 158, 11, 0.1);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #ffffff;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 6px 20px rgba(245, 158, 11, 0.3),
        0 0 30px rgba(245, 158, 11, 0.2);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 8px 24px rgba(245, 158, 11, 0.4),
        0 0 40px rgba(245, 158, 11, 0.3);
}

.value-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.value-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
}

/* Team Cards */
.team-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(245, 158, 11, 0.2);
}

.team-image {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(245, 158, 11, 0.3);
    transition: all 0.5s ease;
}

.team-card:hover .team-image {
    border-color: rgba(245, 158, 11, 0.6);
    transform: scale(1.05);
}

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

.team-card:hover .team-image img {
    transform: scale(1.1);
}


.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.team-role {
    font-size: 1rem;
    color: #f59e0b;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #e2e8f0;
}

/* Modern Achievement Stats */
.modern-achievement-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    color: white;
}

.modern-achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(245, 158, 11, 0.8),
        transparent
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.modern-achievement-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(245, 158, 11, 0.2);
}

.modern-achievement-card:hover::before {
    opacity: 1;
}

.achievement-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #ffffff;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 6px 20px rgba(245, 158, 11, 0.3),
        0 0 30px rgba(245, 158, 11, 0.2);
}

.modern-achievement-card:hover .achievement-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 8px 24px rgba(245, 158, 11, 0.4),
        0 0 40px rgba(245, 158, 11, 0.3);
}

.achievement-content {
    position: relative;
    z-index: 1;
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.5rem;
    line-height: 1;
    color: #ffffff;
}

.achievement-label {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.achievement-description {
    font-size: 0.875rem;
    color: #e2e8f0;
    opacity: 0.8;
}

/* Modern Certification Cards */
.modern-certification-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    color: white;
}

.modern-certification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(245, 158, 11, 0.8),
        transparent
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.modern-certification-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(245, 158, 11, 0.2);
}

.modern-certification-card:hover::before {
    opacity: 1;
}

.cert-icon-modern {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #ffffff;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 6px 20px rgba(245, 158, 11, 0.3),
        0 0 30px rgba(245, 158, 11, 0.2);
}

.modern-certification-card:hover .cert-icon-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 8px 24px rgba(245, 158, 11, 0.4),
        0 0 40px rgba(245, 158, 11, 0.3);
}

.cert-content {
    position: relative;
    z-index: 1;
}

.cert-title-modern {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-family: 'Poppins', sans-serif;
}

.cert-description-modern {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.cert-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .mission-vision-card,
    .value-card,
    .team-card,
    .modern-achievement-card,
    .modern-certification-card {
        padding: 2rem 1.5rem;
    }
    
    .mission-vision-icon,
    .value-icon,
    .achievement-icon,
    .cert-icon-modern {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .achievement-number {
        font-size: 2rem;
    }
    
    .team-image {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .mission-vision-card,
    .value-card,
    .team-card,
    .modern-achievement-card,
    .modern-certification-card {
        padding: 1.5rem 1rem;
    }
    
    .achievement-number {
        font-size: 1.75rem;
    }
    
    .achievement-label {
        font-size: 1rem;
    }
    
    .achievement-description {
        font-size: 0.8125rem;
    }
    
    .cert-badge {
        font-size: 0.6875rem;
        padding: 0.25rem 0.5rem;
    }
}

/* ============================================
    GALLERY PAGE STYLES
   ============================================ */

/* Gallery Hero Section */
.gallery-hero-section {
    min-height: 100vh;
    background-attachment: fixed;
    position: relative;
}

/* Gallery Filter Buttons */
.gallery-filter-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #e2e8f0;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.gallery-filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.3), transparent);
    transition: left 0.6s ease;
}

.gallery-filter-btn:hover::before {
    left: 100%;
}

.gallery-filter-btn:hover {
    background: rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.gallery-filter-btn.active {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-color: #f59e0b;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* Simple Gallery */
.simple-gallery {
    padding: 2rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(245, 158, 11, 0.3);
}

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

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

/* Simple Zoom Icon */
.gallery-lightbox::after {
    content: '\f065';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.gallery-item:hover .gallery-lightbox::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gallery-lightbox::after {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0.75rem;
    }
    
    .gallery-item {
        aspect-ratio: 3/2;
    }
    
    .gallery-lightbox::after {
        font-size: 1.25rem;
        width: 35px;
        height: 35px;
    }
}


/* Animation Classes */
.gallery-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

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

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

/* ============================================
   FAQ ACCORDION SECTION (Simple & Dark)
   ============================================ */

.faq-section-simple {
    background: #f8f9fa;
    color: #1f2937;
    padding: 5rem 2rem;
}

.faq-container-simple {
    max-width: 900px;
    margin: 0 auto;
}

.faq-heading-simple {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1f2937;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.faq-drawer-simple {
    margin-bottom: 1.5rem;
}

.faq-content-wrapper-simple {
    font-size: 1rem;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease-in-out;
}

.faq-title-simple {
    border-top: rgba(0, 0, 0, 0.1) 1px solid;
    cursor: pointer;
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1.75rem 3rem 1.75rem 0;
    position: relative;
    margin-bottom: 0;
    transition: all 0.25s ease-out;
    color: #1f2937;
    font-family: 'Poppins', sans-serif;
}

.faq-title-simple::after {
    border-style: solid;
    border-width: 2px 2px 0 0;
    border-color: #F48426;
    content: " ";
    display: inline-block;
    position: absolute;
    height: 12px;
    width: 12px;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
    transition: transform 0.35s ease-in-out;
}

.faq-title-simple:hover {
    color: #F48426;
}

.faq-trigger-simple:checked + .faq-title-simple + .faq-content-wrapper-simple {
    max-height: 350px;
}

.faq-trigger-simple:checked + .faq-title-simple::after {
    transform: translateY(-50%) rotate(-45deg);
    transition: transform 0.25s ease-in-out;
}

.faq-content-simple {
    padding-bottom: 1.75rem;
}

.faq-content-simple p {
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

input.faq-trigger-simple {
    display: none;
}

@media only screen and (max-width: 600px) {
    .faq-section-simple {
        padding: 3rem 1.5rem;
    }
    
    .faq-title-simple {
        font-size: 1rem;
        padding-right: 2.5rem;
    }
}

/* ============================================
   SERVICES SECTION - CARD LAYOUT
   Moved to assets/css/services.css
   ============================================ */

/* ============================================
   OUR PARTNERS SECTION - LOGO SLIDER
   ============================================ */

.partners-section {
    position: relative;
    background: #ffffff;
}

.partners-container {
    overflow: hidden;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 0;
    position: relative;
}

.partners-slider {
    display: flex;
    align-items: center;
    animation: slidein 20s linear infinite;
    will-change: transform;
}

.partners-logos {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    gap: 4rem;
    padding: 0 3rem;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: auto;
    height: 100px;
    padding: 0;
    margin: 0;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    transition: all 0.3s ease;
    opacity: 0.8;
    box-shadow: none !important;
}

.partner-logo img {
    width: auto;
    height: 100%;
    max-width: 200px;
    max-height: 100px;
    object-fit: contain;
    object-position: center;
    display: block;
    filter: grayscale(0.1);
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
}

.partner-logo:hover {
    opacity: 1;
    transform: translateY(-3px);
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.partner-logo:hover img {
    filter: grayscale(0);
    transform: scale(1.08);
}

@keyframes slidein {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .partners-logos {
        gap: 3rem;
        padding: 0 2rem;
    }
    
    .partner-logo {
        height: 90px;
    }
    
    .partner-logo img {
        max-width: 180px;
        max-height: 90px;
    }
}

@media (max-width: 768px) {
    .partners-container {
        padding: 2rem 0;
    }
    
    .partners-logos {
        gap: 2.5rem;
        padding: 0 1.5rem;
    }
    
    .partner-logo {
        height: 80px;
    }
    
    .partner-logo img {
        max-width: 150px;
        max-height: 80px;
    }
}

@media (max-width: 480px) {
    .partners-container {
        padding: 1.5rem 0;
    }
    
    .partners-logos {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .partner-logo {
        height: 70px;
    }
    
    .partner-logo img {
        max-width: 120px;
        max-height: 70px;
    }
}

/* ============================================
   DELIVERY PROCESS SECTION
   ============================================ */

.delivery-process-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #f5f5f5 50%, #f0f0f0 100%);
    position: relative;
    overflow: hidden;
}

.delivery-gradient-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(244, 132, 38, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(244, 132, 38, 0.05) 0%, transparent 50%);
    z-index: 0;
    animation: gradientShift 10s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.delivery-process-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.world-map-bg {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 50 Q30 30, 50 50 T90 50' stroke='%23999' stroke-width='0.5' fill='none' opacity='0.3'/%3E%3Cpath d='M20 20 Q40 40, 60 20 T100 20' stroke='%23999' stroke-width='0.5' fill='none' opacity='0.3'/%3E%3Cpath d='M30 80 Q50 60, 70 80 T110 80' stroke='%23999' stroke-width='0.5' fill='none' opacity='0.3'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    background-repeat: repeat;
    opacity: 0.1;
}

.airplane-icon,
.location-pin {
    position: absolute;
    color: #999;
    font-size: 1.5rem;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.airplane-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.airplane-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.airplane-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

.location-1 {
    top: 30%;
    right: 25%;
    animation-delay: 1s;
}

.location-2 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.location-3 {
    top: 50%;
    right: 40%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) translateX(10px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) translateX(5px) rotate(0deg);
    }
    75% {
        transform: translateY(-20px) translateX(-5px) rotate(-5deg);
    }
}

.airplane-icon {
    animation: float 8s ease-in-out infinite, flyPath 20s linear infinite;
}

@keyframes flyPath {
    0% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(50px) translateY(-30px);
    }
    50% {
        transform: translateX(100px) translateY(0);
    }
    75% {
        transform: translateX(50px) translateY(30px);
    }
    100% {
        transform: translateX(0) translateY(0);
    }
}

.delivery-process-steps {
    position: relative;
    z-index: 10;
    padding: 20px 0;
}

.delivery-process-steps .grid {
    position: relative;
    overflow: visible;
}

.process-step-card {
    background: #ffffff;
    border: 2px solid #F48426;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.process-step-card[data-step="1"] {
    animation-delay: 0.1s;
}

.process-step-card[data-step="2"] {
    animation-delay: 0.2s;
}

.process-step-card[data-step="3"] {
    animation-delay: 0.3s;
}

.process-step-card[data-step="4"] {
    animation-delay: 0.4s;
}

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

.process-step-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(244, 132, 38, 0.25);
    border-color: #F48426;
    background: linear-gradient(135deg, #ffffff 0%, #fffaf5 100%);
}

.step-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #F48426, #ff9d4d);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(10px);
}

.process-step-card:hover .step-glow {
    opacity: 0.3;
}

.step-number {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 40px;
    height: 40px;
    background: #F48426;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.125rem;
    box-shadow: 0 4px 12px rgba(244, 132, 38, 0.4);
    z-index: 20;
    border: 3px solid #ffffff;
    transition: all 0.3s ease;
}

.step-number span {
    color: #ffffff !important;
    font-weight: bold;
    font-size: 1.125rem;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.process-step-card:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 16px rgba(244, 132, 38, 0.5);
    background: #F48426;
}

.step-number-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: #F48426;
    opacity: 0.5;
    animation: pulse 2s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.step-icon {
    width: 90px;
    height: 90px;
    border: 3px solid #F48426;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #fffaf5 100%);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.process-step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: #F48426;
    box-shadow: 0 8px 20px rgba(244, 132, 38, 0.3);
    background: linear-gradient(135deg, #fffaf5 0%, #fff 100%);
}

.step-icon i {
    font-size: 2.75rem;
    color: #F48426;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step-card:hover .step-icon i {
    transform: scale(1.1);
    color: #F48426;
}

.icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(244, 132, 38, 0.1), rgba(244, 132, 38, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step-card:hover .icon-bg {
    opacity: 1;
}

.icon-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.process-step-card:hover .icon-shine {
    animation: shine 0.6s ease;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

.step-title {
    font-size: 1.35rem;
    font-weight: bold;
    color: #111;
    margin-bottom: 0.75rem;
    font-family: inherit;
    transition: all 0.3s ease;
    position: relative;
}

.process-step-card:hover .step-title {
    color: #F48426;
    transform: translateY(-2px);
}

.step-description {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
    transition: all 0.3s ease;
}

.process-step-card:hover .step-description {
    color: #555;
}

.step-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #F48426, transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.process-step-card:hover .step-indicator {
    transform: scaleX(1);
}

/* Connecting Lines (Desktop Only) */
.process-connectors {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    height: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
    pointer-events: none;
    padding: 0 calc(12.5% + 90px);
}

.connector-line {
    flex: 1;
    height: 3px;
    background: #e0e0e0;
    margin: 0 15px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.connector-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #F48426, #ff9d4d);
    border-radius: 2px;
    animation: progressFlow 3s ease-in-out infinite;
}

.connector-line:nth-child(1) .connector-progress {
    animation-delay: 0s;
}

.connector-line:nth-child(3) .connector-progress {
    animation-delay: 0.5s;
}

.connector-line:nth-child(5) .connector-progress {
    animation-delay: 1s;
}

@keyframes progressFlow {
    0% {
        width: 0;
        left: 0;
    }
    50% {
        width: 100%;
        left: 0;
    }
    100% {
        width: 0;
        left: 100%;
    }
}

.connector-arrow {
    width: 24px;
    height: 24px;
    background: #F48426;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(244, 132, 38, 0.3);
    animation: arrowPulse 2s ease-in-out infinite;
}

.connector-arrow i {
    color: #ffffff;
    font-size: 0.75rem;
}

.connector-arrow:nth-child(2) {
    animation-delay: 0.25s;
}

.connector-arrow:nth-child(4) {
    animation-delay: 0.75s;
}

@keyframes arrowPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(244, 132, 38, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(244, 132, 38, 0.5);
    }
}

/* ============================================
   CONTAINER PROCESS SECTION
   ============================================ */

/* Import/Export Process Section Styles */
.process-step-card {
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.process-step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    padding: 2px;
    background: linear-gradient(135deg, rgba(44, 58, 146, 0.1), rgba(244, 132, 38, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step-card:hover::before {
    opacity: 1;
}

.process-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

/* Mobile responsive styles */
@media screen and (max-width: 768px) {
    .process-step-card {
        min-height: 200px;
        padding: 1.5rem !important;
    }
    
    .process-step-card h4 {
        font-size: 0.875rem;
        line-height: 1.3;
    }
    
    .process-step-card .w-16 {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.125rem;
    }
    
    .process-step-card .w-20 {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .process-step-card i {
        font-size: 2rem !important;
    }
}

/* Old container-process-section - keeping for reference */
.container-process-section-old {
    position: relative;
}

.container-process-card {
    position: relative;
    overflow: hidden;
}

.container-process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 58, 146, 0.05), transparent);
    transition: left 0.5s ease;
}

.container-process-card:hover::before {
    left: 100%;
}

.container-process-card:hover {
    transform: translateY(-8px);
}

/* Responsive Design */
/* Animation utilities */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.animation-delay-100 {
    animation-delay: 0.1s;
}

.animation-delay-200 {
    animation-delay: 0.2s;
}

@media (max-width: 1024px) {
    .process-connectors {
        display: none;
    }
    
    .process-step-card {
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .delivery-process-section {
        padding: 3rem 0;
    }
    
    .process-step-card {
        min-height: 240px;
        padding: 1.5rem 1.25rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .step-icon i {
        font-size: 2rem;
    }
    
    .step-title {
        font-size: 1.125rem;
    }
    
    .step-description {
        font-size: 0.875rem;
    }
}

@media (max-width: 640px) {
    .process-step-card {
        min-height: auto;
        padding: 1.5rem 1rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 1.75rem;
    }
}

/* ============================================
   HOME PAGE SERVICES SECTION STYLES
   ============================================ */

/* Services Scroll Container - Home Page */
.services-scroll-container {
    position: relative;
    width: 100%;
}

.services-scroll-wrapper {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    cursor: grab;
    padding-bottom: 1rem;
}

.services-scroll-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.services-scroll-wrapper:active {
    cursor: grabbing;
}

.services-grid {
    display: flex;
    gap: 2rem;
    width: max-content;
    padding-right: 2rem;
}

/* Service Card - Home Page */

/* Certifications Section - Home Page */
.certifications-section {
    position: relative;
}

.cert-image-card {
    min-height: 180px;
    aspect-ratio: 1;
}

.cert-image-card img {
    filter: grayscale(20%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.cert-image-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .cert-image-card {
        min-height: 140px;
    }
    
    .cert-image-card img {
        max-height: 24px !important;
    }
}
