/* ============================================
   App.css - Custom Styles for Urvashi Logistics
   ============================================ */

/* Tailwind Utility Classes for Custom Colors */
.text-primary {
    color: var(--color-primary);
}

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

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

/* Reset & Base Styles */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat', 'Inter', sans-serif;
    color: var(--color-text-primary);
    background-color: var(--color-bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* ============================================
   Header Styles
   ============================================ */

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    /* background: rgba(255, 255, 255, 0.95); */
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100vw;
    overflow: visible;
}

.main-header nav {
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

/* Apply overflow-x-hidden only on mobile */
@media (max-width: 1023px) {
    .main-header nav {
        overflow-x: hidden;
    }
}



.main-header.scrolled .header-logo {
    height: 2.5rem;
}

@media (min-width: 1024px) {
    .main-header.scrolled .header-logo {
        height: 3.5rem;
    }
}

/* Header Top Row */
.header-top-row {
    background: var(--color-white);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.header-top-row > div {
    box-sizing: border-box;
    min-width: 0;
}

.header-top-row > div > * {
    padding: 6px 0;
    flex-shrink: 1;
    min-width: 0;
}

/* Header Navigation Row */
.header-nav-row {
    background: var(--color-gray-50);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    position: relative;
    will-change: transform;
    z-index: 1;
}

/* Hide navigation row on scroll down (desktop only) */
@media (min-width: 1024px) {
    .header-nav-row.hidden-nav {
        transform: translateY(calc(-100% - 1px));
        opacity: 0;
        pointer-events: none;
    }
    
    /* Ensure the nav container doesn't clip the hidden row */
    .main-header nav {
        overflow: visible;
    }
    
    /* Ensure header doesn't clip */
    .main-header {
        overflow: visible;
    }
}

.header-nav-row > div {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.header-nav-row > div > div {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-wrap: wrap;
}

.header-nav-row .nav-link {
    padding: 1rem 1.5rem;
    margin: 0 0.125rem;
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-nav-row .nav-link.active {
    background: var(--color-tertiary-light);
    color: var(--color-white);
    font-weight: 600;
}

.header-nav-row .nav-link.active::after {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-tertiary-light);
    border-radius: 0;
}

.header-nav-row .nav-link::after {
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--color-tertiary-light);
}

.header-nav-row .nav-link:hover {
    background: var(--color-tertiary-light);
    color: var(--color-white);
}

.header-nav-row .nav-link:hover::after {
    width: 100%;
}

@media (min-width: 1280px) {
    .header-nav-row .nav-link {
        padding: 0.5rem 2rem;
        font-size: 1rem;
    }
}

/* Header Contact */
.header-contact:hover {
    color: var(--color-primary) !important;
}

.nav-link {
    position: relative;
    color: var(--color-text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.75rem 0.5rem;
    text-decoration: none;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

.nav-link.active {
    color: var(--color-primary);
    font-weight: 600;
}

@media (min-width: 1280px) {
    .nav-link {
        font-size: 1rem;
        padding: 0.75rem 0.75rem;
    }
}

.quote-btn {
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(116, 180, 218, 0.2);
    position: relative;
    overflow: hidden;
}

.quote-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-tertiary-light) 0%, var(--color-tertiary) 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.quote-btn > * {
    position: relative;
    z-index: 1;
}

.quote-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px rgba(107, 18, 4, 0.4);
}

.quote-btn:hover::before {
    left: 0;
}

.quote-btn:active {
    transform: translateY(-2px) scale(1.01);
}

@media (min-width: 1280px) {
    .quote-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-white);
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

/* Enhanced dropdown menu styling */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(-15px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0;
    border: 1px solid var(--color-primary-10);
    z-index: 1001;
    margin-top: 0.5rem;
}

/* Arrow pointer at the top of dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--color-white);
    filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.05));
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Enhance the Services link on hover */
.dropdown:hover > .nav-link {
    background: var(--color-tertiary-light);
    color: var(--color-white);
}

.dropdown:hover > .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown item styling */
.dropdown-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.875rem 1.5rem;
    color: var(--color-text-primary);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0.125rem 0.5rem;
    border-radius: 8px;
}

/* Hover effect for dropdown items */
.dropdown-item:hover {
    background: var(--color-tertiary-light);
    color: var(--color-white);
    transform: translateX(4px);
    box-shadow: 0 2px 8px var(--color-tertiary-20);
}

/* Icon styling for dropdown items (if added later) */
.dropdown-item i {
    margin-right: 0.75rem;
    width: 18px;
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.7;
    transition: all 0.25s ease;
}

.dropdown-item:hover i {
    opacity: 1;
    transform: scale(1.1);
}

/* First and last items */
.dropdown-item:first-child {
    margin-top: 0.25rem;
}

.dropdown-item:last-child {
    margin-bottom: 0.25rem;
}

/* Smooth chevron rotation */
.dropdown .nav-link i.fa-chevron-down {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.7rem;
    margin-left: 0.25rem;
}

/* Quote Modal */
#quote-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

#quote-modal:not(.hidden) {
    display: flex;
}

#quote-modal.is-active {
    display: flex;
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    overflow: hidden;
}

/* Video Background Wrapper */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

/* Video Element */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    /* Performance optimizations */
    will-change: transform;
    transform-style: preserve-3d;
}

/* Fallback image if video doesn't load */
.hero-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Overlay for better text readability */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Pattern overlay on top of video */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Hero Title Animation */
.hero-title-animated {
    opacity: 0;
    transform: translateY(30px);
    animation: heroTitleFadeInOut 5s ease-in-out 0.3s forwards;
}

@keyframes heroTitleFadeInOut {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    15% {
        opacity: 1;
        transform: translateY(0);
    }
    75% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-30px);
    }
}

/* ============================================
   Certifications Section
   ============================================ */

.certifications-section {
    background: var(--color-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.certifications-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.certification-item {
    width: 100%;
    max-width: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: var(--color-white);
    border-radius: 8px;
    transition: all 0.3s ease;
    filter: grayscale(20%);
}

.certification-item:hover {
    transform: translateY(-5px);
    filter: grayscale(0%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.certification-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Responsive styles for Certifications Section */
@media (max-width: 1024px) {
    .certifications-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .certification-item {
        max-width: 180px;
    }
}

@media (max-width: 768px) {
    .certifications-section {
        padding: 3rem 0;
    }
    
    .certifications-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .certification-item {
        max-width: 150px;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .certifications-section {
        padding: 2.5rem 0;
    }
    
    .certifications-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .certification-item {
        max-width: 130px;
        padding: 0.75rem;
    }
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================================
   Services Showcase Section
   ============================================ */

.services-showcase-section {
    padding: 5rem 0;
    background: var(--color-white);
}

.services-showcase-header {
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-showcase-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    font-style: italic;
    color: var(--color-secondary-dark);
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
}

.services-showcase-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-primary);
    max-width: 800px;
    margin: 0 auto;
}

.services-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 4px 20px var(--color-black-10);
}

.services-showcase-card {
    position: relative;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    padding: 3.5rem 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border-right: 1px solid var(--color-white-10);
}

.services-showcase-card:last-child {
    border-right: none;
}

.services-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--color-black-20);
    z-index: 10;
}

/* Hover overlay removed */
.services-showcase-card::before {
    content: none;
}

.services-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 3;
    position: relative;
}

.services-card-category {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    display: block;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: text-shadow 0.3s ease;
}

.services-card-title {
    font-size: clamp(1.875rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.75rem;
    line-height: 1.15;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: text-shadow 0.3s ease;
}

.services-card-description {
    font-size: 1.05rem;
    line-height: 1.75;
    /* margin-bottom: 1rem; */
    flex: 1;
    opacity: 0.95;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: text-shadow 0.3s ease;
    max-width: 26ch;
}

/* Enhanced text shadows on hover when background image appears */
.services-showcase-card:hover .services-card-category {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.services-showcase-card:hover .services-card-title {
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 2px 6px rgba(0, 0, 0, 0.4);
}

.services-showcase-card:hover .services-card-description {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 1px 4px rgba(0, 0, 0, 0.3);
}

.services-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 0;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    isolation: isolate;
}

.services-card-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.services-card-btn > * {
    position: relative;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-card-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.services-card-btn:hover::before {
    left: 0;
    z-index: -1;
}

/* Background Image on Hover (removed) */

/* Card 1: Sea Freight - Light Blue Gradient */
.services-card-sea {
    background: linear-gradient(135deg, var(--color-primary-lightest) 0%, var(--color-primary-lighter) 100%);
    color: var(--color-secondary);
}

.services-card-sea .services-card-category {
    color: var(--color-secondary);
}

.services-card-sea .services-card-title {
    color: var(--color-secondary);
}

.services-card-sea .services-card-description {
    color: var(--color-secondary);
}

/* Enhanced text shadows for Sea Freight card on hover */
.services-card-sea:hover .services-card-category {
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8), 0 1px 4px rgba(0, 0, 0, 0.5);
}

.services-card-sea:hover .services-card-title {
    text-shadow: 0 4px 15px rgba(255, 255, 255, 0.9), 0 2px 8px rgba(0, 0, 0, 0.6);
}

.services-card-sea:hover .services-card-description {
    color: var(--color-secondary);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8), 0 1px 5px rgba(0, 0, 0, 0.5);
}

.services-card-sea .services-card-btn {
    color: var(--color-white);
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}

.services-card-sea .services-card-btn::before {
    background: var(--color-tertiary-light);
}

.services-card-sea .services-card-btn:hover {
    background: var(--color-tertiary-light);
    border-color: var(--color-tertiary-light);
    color: var(--color-white) !important;
}

.services-card-sea .services-card-btn:hover,
.services-card-sea .services-card-btn:hover *,
.services-card-sea .services-card-btn:hover::after {
    color: var(--color-white) !important;
}

/* Card 2: Transportation - Secondary Dark */
.services-card-transport {
    background: linear-gradient(135deg, var(--color-secondary-dark) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
}

.services-card-transport .services-card-category {
    color: var(--color-white-90);
}

.services-card-transport .services-card-title {
    color: var(--color-white);
}

.services-card-transport .services-card-description {
    color: var(--color-white-95);
}

.services-card-transport .services-card-btn {
    color: var(--color-white);
    background: transparent;
    border-color: var(--color-white);
}

.services-card-transport .services-card-btn::before {
    background: var(--color-tertiary-light);
}

.services-card-transport .services-card-btn:hover {
    background: var(--color-tertiary-light);
    border-color: var(--color-tertiary-light);
    color: var(--color-white) !important;
}

.services-card-transport .services-card-btn:hover,
.services-card-transport .services-card-btn:hover *,
.services-card-transport .services-card-btn:hover::after {
    color: var(--color-white) !important;
}

/* Card 3: Custom Clearance - Primary Dark */
.services-card-custom {
    background: linear-gradient(135deg, var(--color-primary-darker) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
}

.services-card-custom .services-card-category {
    color: var(--color-white-90);
}

.services-card-custom .services-card-title {
    color: var(--color-white);
}

.services-card-custom .services-card-description {
    color: var(--color-white-95);
}

.services-card-custom .services-card-btn {
    color: var(--color-white);
    background: transparent;
    border-color: var(--color-white);
}

.services-card-custom .services-card-btn::before {
    background: var(--color-tertiary-light);
}

.services-card-custom .services-card-btn:hover {
    background: var(--color-tertiary-light);
    border-color: var(--color-tertiary-light);
    color: var(--color-white) !important;
}

.services-card-custom .services-card-btn:hover,
.services-card-custom .services-card-btn:hover *,
.services-card-custom .services-card-btn:hover::after {
    color: var(--color-white) !important;
}

/* Card 4: Warehousing - Gray */
.services-card-warehouse {
    background: linear-gradient(135deg, var(--color-gray-700) 0%, var(--color-gray-600) 100%);
    color: var(--color-white);
}

.services-card-warehouse .services-card-category {
    color: var(--color-white-90);
}

.services-card-warehouse .services-card-title {
    color: var(--color-white);
}

.services-card-warehouse .services-card-description {
    color: var(--color-white-95);
}

.services-card-warehouse .services-card-btn {
    color: var(--color-white);
    background: transparent;
    border-color: var(--color-white);
}

.services-card-warehouse .services-card-btn::before {
    background: var(--color-tertiary-light);
}

.services-card-warehouse .services-card-btn:hover {
    background: var(--color-tertiary-light);
    border-color: var(--color-tertiary-light);
    color: var(--color-white) !important;
}

.services-card-warehouse .services-card-btn:hover,
.services-card-warehouse .services-card-btn:hover *,
.services-card-warehouse .services-card-btn:hover::after {
    color: var(--color-white) !important;
}


/* Responsive Design for Services Showcase */
@media (max-width: 1024px) {
    .services-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-showcase-card {
        min-height: 480px;
        padding: 3rem 2.5rem;
        border-right: none;
        border-bottom: 1px solid var(--color-white-10);
    }
    
    .services-showcase-card:nth-child(2n) {
        border-right: none;
    }
    
    .services-showcase-card:nth-child(3),
    .services-showcase-card:nth-child(4) {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .services-showcase-section {
        padding: 3rem 0;
    }
    
    .services-showcase-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .services-showcase-title {
        font-size: 2rem;
    }
    
    .services-showcase-description {
        font-size: 1rem;
    }
    
    .services-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .services-showcase-card {
        min-height: 420px;
        padding: 2.5rem 2rem;
        border-right: none;
        border-bottom: 1px solid var(--color-white-10);
    }
    
    .services-showcase-card:last-child {
        border-bottom: none;
    }
    
    
    .services-card-title {
        font-size: 1.875rem;
    }
    
    .services-card-description {
        font-size: 0.95rem;
    }
}

/* ============================================
   Video Split Section
   ============================================ */

.video-split-section {
    position: relative;
    min-height: 450px;
    overflow: visible;
    padding: 0;
}

.video-split-wrapper {
    position: relative;
    width: 100%;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

/* Top half - White background */
.video-split-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--color-white);
    z-index: 1;
}

/* Bottom half - Secondary color background */
.video-split-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--color-secondary);
    z-index: 1;
    /* Ruler divider line with tick marks */
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    background-image: repeating-linear-gradient(
        to right,
        transparent,
        transparent 19px,
        rgba(0, 0, 0, 0.15) 19px,
        rgba(0, 0, 0, 0.15) 20px
    );
    background-size: 100% 2px;
    background-position: top center;
    background-repeat: no-repeat;
}

.video-split-container {
    position: relative;
    z-index: 10;
    max-width: 640px;
    width: 70%;
    margin: 0 auto;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
    /* border-radius: 12px; */
    overflow: hidden;
    background: var(--color-white);
    aspect-ratio: 16 / 9;
}

.video-split-player {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
    object-fit: cover;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Video Play Button Overlay */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 20;
    transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease;
}

.video-play-overlay:hover {
    background: rgba(0, 0, 0, 0.4);
}

.video-play-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.video-play-button {
    /* opacity: 0.8; */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgb(255 255 255 / 0%);
    border: 2px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(74, 144, 226, 0.4);
    z-index: 21;
    position: relative;
    animation: playButtonPulse 2s ease-in-out infinite;
}

@keyframes playButtonPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(74, 144, 226, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(74, 144, 226, 0);
    }
}

.video-play-button:hover {
    transform: scale(1.15) translateY(-2px);
    background: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: 0 8px 40px rgba(74, 144, 226, 0.5), 0 0 0 15px rgba(74, 144, 226, 0.2);
    animation: none;
}

.video-play-button:hover i {
    transform: scale(1.1);
    color: var(--color-primary-dark);
}

.video-play-button:active {
    transform: scale(1.05) translateY(0);
    box-shadow: 0 4px 25px rgba(74, 144, 226, 0.4), 0 0 0 8px rgba(74, 144, 226, 0.15);
}

.video-play-button i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-left: 4px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

/* Responsive Design for Video Split Section */
@media (max-width: 1024px) {
    .video-split-section {
        min-height: 400px;
    }
    
    .video-split-wrapper {
        min-height: 400px;
    }
    
    .video-split-container {
        max-width: 560px;
        width: 75%;
    }
}

@media (max-width: 768px) {
    .video-split-section {
        min-height: 350px;
    }
    
    .video-split-wrapper {
        min-height: 350px;
    }
    
    .video-split-container {
        max-width: 480px;
        width: 85%;
        border-radius: 8px;
    }
    
    .video-play-button {
        width: 70px;
        height: 70px;
    }
    
    .video-play-button i {
        font-size: 1.75rem;
    }
    
    .video-split-player {
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .video-split-section {
        min-height: 300px;
    }
    
    .video-split-wrapper {
        min-height: 300px;
    }
    
    .video-split-container {
        width: 90%;
        max-width: 100%;
    }
    
    .video-play-button {
        width: 60px;
        height: 60px;
    }
    
    .video-play-button i {
        font-size: 1.5rem;
    }
}

/* ============================================
   About Our Story Section
   ============================================ */

.about-story-section {
    padding: 5rem 0;
    background: var(--color-white);
    position: relative;
}

/* Secondary background utility */
.about-story-section.bg-secondary {
    background: var(--color-secondary);
    padding-top: 0;
    margin-top: -1px;
}

/* Two-column grid layout */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-story-content {
    display: flex;
    flex-direction: column;
}

.about-story-header {
    margin-bottom: 2.5rem;
}

.about-story-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

/* White text when on secondary background */
.about-story-section.bg-secondary .about-story-label {
    color: var(--color-white-90);
}

.about-story-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

/* White text when on secondary background */
.about-story-section.bg-secondary .about-story-title {
    color: var(--color-white);
}

.about-story-body {
    margin-top: 0;
}

.about-story-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-story-paragraph {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--color-text-primary);
    text-align: left;
    margin: 0;
}

/* White/light text when on secondary background */
.about-story-section.bg-secondary .about-story-paragraph {
    color: var(--color-white-90);
}

.about-story-paragraph:first-child {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-primary-dark);
}

/* White text for first paragraph when on secondary background */
.about-story-section.bg-secondary .about-story-paragraph:first-child {
    color: var(--color-white);
}

/* Image container */
.about-story-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-bottom-right-radius: 350px;
    border-bottom-left-radius: 350px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

@media (max-width: 1024px) {
    .about-story-grid {
        gap: 3rem;
    }
    
    .about-story-image {
        min-height: 400px;
    }
}

/* ============================================
   Industries Split Section
   ============================================ */

.industries-split-section {
    position: relative;
    min-height: 600px;
    overflow: visible;
    padding: 0;
}

.industries-split-wrapper {
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
}

/* Top half - Secondary color background */
.industries-split-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--color-secondary);
    z-index: 1;
}

/* Bottom half - White background */
.industries-split-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--color-white);
    z-index: 1;
    /* Ruler divider line with tick marks */
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    background-image: repeating-linear-gradient(
        to right,
        transparent,
        transparent 19px,
        rgba(255, 255, 255, 0.3) 19px,
        rgba(255, 255, 255, 0.3) 20px
    );
    background-size: 100% 2px;
    background-position: top center;
    background-repeat: no-repeat;
}

.industries-split-container {
    position: relative;
    z-index: 10;
    width: 100%;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.industries-header-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;

}

.industries-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white-90);
    margin-bottom: 1rem;
}

.industries-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.industries-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--color-white-90);
    max-width: 700px;
    margin: 0 auto;
}

.industries-cards-section {
    flex: 1;
    padding: 4rem 0;
    min-height: 300px;
}

@media (max-width: 1024px) {
    .industries-split-section {
        min-height: 550px;
    }
    
    .industries-split-wrapper {
        min-height: 550px;
    }
    
    .industries-split-container {
        min-height: 550px;
    }
    
    .industries-header-section {
        padding: 3rem 0;
        min-height: 275px;
    }
    
    .industries-cards-section {
        padding: 3rem 0;
        min-height: 275px;
    }
}

@media (max-width: 768px) {
    .industries-split-section {
        min-height: auto;
    }
    
    .industries-split-wrapper {
        min-height: auto;
    }
    
    .industries-split-container {
        min-height: auto;
    }
    
    .industries-header-section {
        padding: 2.5rem 0;
        min-height: auto;
    }
    
    .industries-title {
        font-size: 2rem;
    }
    
    .industries-description {
        font-size: 1rem;
    }
    
    .industries-cards-section {
        padding: 2.5rem 0;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .about-story-section {
        padding: 3rem 0;
    }
    
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-story-header {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .about-story-title {
        font-size: 2rem;
    }
    
    .about-story-paragraph {
        font-size: 1rem;
        text-align: left;
    }
    
    .about-story-paragraph:first-child {
        font-size: 1.125rem;
    }
    
    .about-story-text {
        gap: 1.25rem;
    }
    
    .about-story-image {
        min-height: 350px;
        order: -1;
    }
}

.btn-primary {
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: var(--color-secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 54, 125, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}


/* ============================================
   Features Section
   ============================================ */

.features-section {
    padding: 5rem 0;
    background: var(--color-bg-white);
}

/* ============================================
   Industry Cards with Images - Horizontal Scroll with Tailwind CSS
   ============================================ */

/* Industries Scroll Container */
.industries-scroll-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.industries-scroll-container {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 0.5rem 0;
    max-width: calc(100% - 112px);
}

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

.industries-grid {
    display: flex;
    gap: 1rem;
    width: max-content;
}

/* Industry Card Custom Dimensions */
.industry-card-custom {
    width: 235px;
    background: var(--color-white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.industry-card-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--color-primary-lightest);
    position: relative;
}

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

.industry-card-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    padding: 1rem;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

/* Industries Scroll Buttons */
.industries-scroll-btn {
    width: 48px;
    height: 48px;
    border: none;
    background: var(--color-white);
    color: var(--color-primary);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    z-index: 2;
}

.industries-scroll-btn i {
    font-size: 1.25rem;
}

.industries-scroll-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Responsive styles for industry cards scroll */
@media (max-width: 1024px) {
    .industries-scroll-container {
        max-width: calc(100% - 100px);
    }
    
    .industries-grid {
        gap: 1.25rem;
    }
    
    .industry-card-custom {
        width: 180px;
    }
    
    .industry-card-image-wrapper {
        height: 160px;
    }
    
    .industry-card-title {
        font-size: 0.875rem;
        padding: 0.875rem;
    }
    
    .industries-scroll-btn {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 768px) {
    .industries-scroll-container {
        max-width: calc(100% - 88px);
    }
    
    .industries-grid {
        gap: 1rem;
    }
    
    .industry-card-custom {
        width: 160px;
    }
    
    .industry-card-image-wrapper {
        height: 140px;
    }
    
    .industry-card-title {
        font-size: 0.8125rem;
        padding: 0.75rem;
    }
    
    .industries-scroll-btn {
        width: 40px;
        height: 40px;
    }
    
    .industries-scroll-wrapper {
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .industries-scroll-container {
        max-width: calc(100% - 76px);
    }
    
    .industries-grid {
        gap: 0.75rem;
    }
    
    .industry-card-custom {
        width: 240px;
    }
    
    .industry-card-image-wrapper {
        height: 200px;
    }
    
    .industry-card-title {
        font-size: 0.75rem;
        padding: 0.625rem;
    }
    
    .industries-scroll-btn {
        width: 36px;
        height: 36px;
    }
    
    .industries-scroll-btn i {
        font-size: 1rem;
    }
}

/* ============================================
   Products Section
   ============================================ */

.products-section {
    padding: 5rem 0;
    background: var(--color-bg-cream);
}

.product-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(116, 180, 218, 0.2);
}

.product-image {
    width: 100%;
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image i {
    font-size: 4rem;
    color: var(--color-white);
    opacity: 0.8;
}

.product-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-primary-dark);
}

.product-description {
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    flex: 1;
}

.product-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.product-link:hover {
    gap: 0.75rem;
    color: var(--color-primary-dark);
}


/* ============================================
   Visual Stories Section
   ============================================ */
.visual-stories-section {
    padding: 5rem 0;
    background: var(--color-bg-white);
}

.visual-stories-header {
    margin-bottom: 3rem;
}

.visual-stories-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin: 0;
    line-height: 1.2;
}

.visual-stories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.visual-story-item {
    border-radius: 12px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 4 / 5;
    background: var(--color-bg-cream);
}

.visual-story-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(116, 180, 218, 0.25);
}

.visual-story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    pointer-events: none;
    user-select: none;
}

.visual-story-item:hover .visual-story-image {
    transform: scale(1.1);
}

/* Visual Stories Modal */
.visual-stories-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.visual-stories-modal.active {
    display: flex;
}

.visual-stories-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.visual-stories-modal-content {
    position: relative;
    z-index: 10001;
    max-width: 70%;
    max-height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    text-align: center;
    padding: 0;
}

.visual-stories-modal-image {
    max-width: 100%;
    max-height: 75vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.visual-stories-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(116, 180, 218, 0.5);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 20px;
    z-index: 10002;
}

.visual-stories-modal-close:hover {
    background: rgba(0, 0, 0, 0.75);
    border-color: var(--color-primary-lightest);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.visual-stories-modal-close:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(116, 180, 218, 0.3);
}

.visual-stories-modal-close i {
    pointer-events: none;
}

.visual-stories-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10002;
    backdrop-filter: blur(4px);
}

.visual-stories-modal-nav:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.05);
}

.visual-stories-modal-prev {
    left: 12px;
}

.visual-stories-modal-next {
    right: 12px;
}

/* Responsive styles for Visual Stories */
@media (max-width: 1024px) {
    .visual-stories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .visual-stories-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .visual-stories-section {
        padding: 3rem 0;
    }
    
    .visual-stories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .visual-stories-title {
        font-size: 1.75rem;
    }
    
    .visual-story-item:hover {
        transform: translateY(-4px);
    }
    
    .visual-stories-modal-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .visual-stories-modal-close {
        top: -40px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .visual-stories-modal-image {
        max-height: 85vh;
    }
}

@media (max-width: 480px) {
    .visual-stories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .visual-stories-title {
        font-size: 1.5rem;
    }
    
    .visual-stories-modal-close {
        top: -35px;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .visual-stories-modal-image {
        max-height: 80vh;
    }
}

/* See More Button for Gallery and Visual Stories Sections */
.section-see-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(116, 180, 218, 0.3);
    border: 2px solid var(--color-primary);
    position: relative;
    overflow: hidden;
}

.section-see-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-darker) 100%);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.section-see-more-btn span {
    position: relative;
    z-index: 1;
}

.section-see-more-btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.section-see-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(116, 180, 218, 0.4);
    border-color: var(--color-primary-dark);
}

.section-see-more-btn:hover::before {
    left: 0;
}

.section-see-more-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .section-see-more-btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .section-see-more-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* ============================================
   Gallery Section
   ============================================ */

/* Gallery Hero Section */
.gallery-hero-section {
    position: relative;
    background: var(--color-secondary-dark);
    overflow: hidden;
}

.gallery-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/home/gallery (1).jpg') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.gallery-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.gallery-hero-section .container {
    position: relative;
    z-index: 3;
}

.gallery-section {
    padding: 5rem 0;
    background: var(--color-bg-white);
}

.gallery-header {
    margin-bottom: 3rem;
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.gallery-description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
}

/* Hide items beyond the 8th (2 rows x 4 columns) - only on home page */
.gallery-item:nth-child(n+9) {
    display: none;
}

/* Show all items on gallery page */
.gallery-page-grid .gallery-item {
    display: block !important;
}

.gallery-item {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* border-radius: 12px; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    background: var(--color-bg-cream);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(116, 180, 218, 0.3);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    pointer-events: none;
    user-select: none;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

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

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

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.gallery-modal.active {
    display: flex;
}

.gallery-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.gallery-modal-content {
    position: relative;
    z-index: 10001;
    max-width: 85%;
    max-height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    text-align: center;
}

.gallery-modal-image {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.gallery-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(116, 180, 218, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-primary-dark);
    font-size: 20px;
    z-index: 10002;
}

.gallery-modal-close:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--color-primary);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.gallery-modal-close:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(116, 180, 218, 0.3);
}

.gallery-modal-close i {
    pointer-events: none;
}

.gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(116, 180, 218, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-primary-dark);
    font-size: 20px;
    z-index: 10002;
}

.gallery-modal-nav:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--color-primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.gallery-modal-prev {
    left: 20px;
}

.gallery-modal-next {
    right: 20px;
}

.gallery-modal-nav i {
    pointer-events: none;
}

/* Responsive styles for Gallery */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    
    /* Hide items beyond the 6th (2 rows x 3 columns) - only on home page */
    .gallery-item:nth-child(n+7) {
        display: none;
    }
    
    /* Show all items on gallery page */
    .gallery-page-grid .gallery-item {
        display: block !important;
    }
    
    .gallery-title {
        font-size: 2rem;
    }
    
    .gallery-modal-content {
        max-width: 90%;
        max-height: 90%;
    }
    
    .gallery-modal-nav {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .gallery-modal-prev {
        left: 10px;
    }
    
    .gallery-modal-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 3rem 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Hide items beyond the 4th (2 rows x 2 columns) - only on home page */
    .gallery-item:nth-child(n+5) {
        display: none;
    }
    
    /* Show all items on gallery page */
    .gallery-page-grid .gallery-item {
        display: block !important;
    }
    
    .gallery-title {
        font-size: 1.75rem;
    }
    
    .gallery-description {
        font-size: 1rem;
    }
    
    .gallery-modal-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .gallery-modal-close {
        top: 5px;
        right: 5px;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .gallery-modal-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .gallery-modal-prev {
        left: 5px;
    }
    
    .gallery-modal-next {
        right: 5px;
    }
    
    .gallery-modal-image {
        max-height: 80vh;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Hide items beyond the 4th (2 rows x 2 columns) - only on home page */
    .gallery-item:nth-child(n+5) {
        display: none;
    }
    
    /* Show all items on gallery page */
    .gallery-page-grid .gallery-item {
        display: block !important;
    }
    
    .gallery-title {
        font-size: 1.5rem;
    }
    
    .gallery-modal-close {
        top: 5px;
        right: 5px;
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .gallery-modal-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .gallery-modal-image {
        max-height: 75vh;
    }
}

/* ============================================
   Stats Section
   ============================================ */

.stats-section {
    padding: 6rem 0;
    background: var(--color-secondary);
    position: relative;
    overflow: hidden;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.stats-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-header {
    position: relative;
    z-index: 10;
}

.stats-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--color-white);
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.stats-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 400;
    line-height: 1.7;
    max-width: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 10;
}

.stat-card {
    background: transparent;
    padding: 0;
    text-align: left;
    position: relative;
}

.stat-number {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 0.75rem;
    line-height: 1;
    display: flex;
    align-items: flex-start;
    gap: 0.25rem;
    letter-spacing: -0.03em;
}

.stat-number .counter {
    display: inline-block;
}

.stat-plus {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    color: var(--color-white);
    line-height: 1;
    margin-top: 0.1em;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    letter-spacing: 0.01em;
}

.stat-card-divider-top {
    position: relative;
}

.stat-card-divider-top::before {
    content: '';
    position: absolute;
    top: -1.25rem;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.stat-card-divider-left {
    position: relative;
}

.stat-card-divider-left::after {
    content: '';
    position: absolute;
    left: -1.25rem;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive styles for Stats Section */
@media (max-width: 1024px) {
    .stats-section {
        padding: 5rem 0;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats-header {
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-card {
        text-align: center;
    }
    
    .stat-card-divider-top::before {
        top: -1rem;
    }
    
    .stat-card-divider-left::after {
        left: -1rem;
    }
    
    .stat-number {
        justify-content: center;
        font-size: 3rem;
    }
    
    .stat-plus {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 4rem 0;
    }
    
    .stats-container {
        gap: 2.5rem;
    }
    
    .stats-header {
        margin-bottom: 0;
    }
    
    .stats-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .stats-subtitle {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-card-divider-top::before {
        top: -0.75rem;
    }
    
    .stat-card-divider-left::after {
        left: -0.75rem;
    }
    
    .stat-number {
        font-size: 2.75rem;
        justify-content: center;
    }
    
    .stat-plus {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.9375rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 3rem 0;
    }
    
    .stats-container {
        gap: 2rem;
    }
    
    .stats-title {
        font-size: 2rem;
        margin-bottom: 0.875rem;
    }
    
    .stats-subtitle {
        font-size: 0.9375rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-card-divider-top::before {
        top: -0.75rem;
    }
    
    .stat-card-divider-left::after {
        left: -0.75rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
        justify-content: center;
    }
    
    .stat-plus {
        font-size: 1.625rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
        text-align: center;
    }
}

/* ============================================
   Fleet Section
   ============================================ */

.fleet-section {
    padding: 6rem 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.fleet-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.fleet-header {
    margin-bottom: 2rem;
}

.fleet-label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(16, 54, 125, 0.2);
}

.fleet-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--color-text-primary);
    line-height: 1.2;
    margin-bottom: 0;
}

.fleet-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.fleet-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin: 0;
}

.fleet-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fleet-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--color-gray-50);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.fleet-feature-item:hover {
    background: var(--color-primary-5);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.fleet-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    border-radius: 12px;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(16, 54, 125, 0.2);
}

.fleet-feature-content {
    flex: 1;
}

.fleet-feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.375rem;
}

.fleet-feature-text {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.6;
}

.fleet-cta {
    margin-top: 0.5rem;
}

.fleet-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 54, 125, 0.2);
}

.fleet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 54, 125, 0.3);
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}

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

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

.fleet-image-wrapper {
    position: relative;
    width: 100%;
    animation: fadeInRight 0.8s ease-out;
}

.fleet-image-card {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.fleet-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2), 0 10px 30px rgba(0, 0, 0, 0.15);
}

.fleet-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: transform 0.5s ease;
}

.fleet-image-card:hover .fleet-image {
    transform: scale(1.05);
}

.fleet-image-card-info {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--color-gray-50);
    border-radius: 12px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.fleet-image-card-info:hover {
    background: var(--color-primary-05);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

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

/* Responsive styles for Fleet Section */
@media (max-width: 1024px) {
    .fleet-section {
        padding: 5rem 0;
    }
    
    .fleet-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .fleet-image-wrapper {
        order: -1;
        animation: fadeInUp 0.8s ease-out;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (max-width: 768px) {
    .fleet-section {
        padding: 4rem 0;
    }
    
    .fleet-container {
        gap: 2.5rem;
    }
    
    .fleet-title {
        font-size: 2rem;
    }
    
    .fleet-description {
        font-size: 1rem;
    }
    
    .fleet-features {
        gap: 1.25rem;
    }
    
    .fleet-feature-item {
        padding: 1rem;
    }
    
    .fleet-feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.125rem;
    }
    
    .fleet-feature-title {
        font-size: 1rem;
    }
    
    .fleet-feature-text {
        font-size: 0.875rem;
    }
    
    .fleet-btn {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
    
    .fleet-image-card {
        border-radius: 16px;
    }
    
    .fleet-image-card-info {
        padding: 1rem;
        gap: 1rem;
        margin-top: 1.25rem;
    }
    
    .fleet-image-card-info .fleet-feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.125rem;
    }
    
    .fleet-image-card-info .fleet-feature-title {
        font-size: 1rem;
    }
    
    .fleet-image-card-info .fleet-feature-text {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .fleet-section {
        padding: 3rem 0;
    }
    
    .fleet-container {
        gap: 2rem;
    }
    
    .fleet-label {
        font-size: 0.75rem;
        padding: 0.4375rem 1rem;
    }
    
    .fleet-title {
        font-size: 1.75rem;
    }
    
    .fleet-description {
        font-size: 0.9375rem;
    }
    
    .fleet-feature-item {
        padding: 0.875rem;
        gap: 1rem;
    }
    
    .fleet-feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }
    
    .fleet-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
        width: 100%;
        justify-content: center;
    }
    
    .fleet-image-card {
        border-radius: 12px;
    }
    
    .fleet-image-card-info {
        padding: 0.875rem;
        gap: 0.875rem;
        margin-top: 1rem;
    }
    
    .fleet-image-card-info .fleet-feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }
    
    .fleet-image-card-info .fleet-feature-title {
        font-size: 0.9375rem;
    }
    
    .fleet-image-card-info .fleet-feature-text {
        font-size: 0.8125rem;
    }
}

/* ============================================
   Major Clients Section
   ============================================ */

.clients-section {
    padding: 6rem 0;
    background: var(--color-white);
    position: relative;
}

.clients-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Left Side: Content */
.clients-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.clients-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--color-text-primary);
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.clients-description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin: 0 0 2rem 0;
    font-weight: 400;
    line-height: 1.7;
    max-width: 100%;
}

.clients-view-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(116, 180, 218, 0.3);
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.clients-view-more-btn span {
    position: relative;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.clients-view-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-tertiary-light) 0%, var(--color-tertiary) 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.clients-view-more-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px rgba(107, 18, 4, 0.4);
}

.clients-view-more-btn:hover span {
    color: var(--color-white);
}

.clients-view-more-btn:hover::before {
    left: 0;
}

/* Right Side: Client Cards */
.clients-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.client-card {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.client-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 32px rgba(116, 180, 218, 0.2);
    border-color: var(--color-primary-20);
}

.client-card-active {
    box-shadow: 0 6px 20px rgba(116, 180, 218, 0.15);
}

.client-card-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.client-logo-wrapper {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.client-card:hover .client-logo-wrapper {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 4px 16px rgba(116, 180, 218, 0.2);
    border-color: var(--color-primary-20);
}

.client-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(20%);
}

.client-card:hover .client-logo {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.client-logo-fallback {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    line-height: 1.2;
}

.client-info {
    flex: 1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-card:hover .client-info {
    transform: translateX(4px);
}

.client-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.client-card:hover .client-name {
    color: var(--color-primary);
}

.client-description-text {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.client-card:hover .client-description-text {
    color: var(--color-text-primary);
}

@media (max-width: 1024px) {
    .clients-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .clients-content {
        text-align: center;
        align-items: center;
    }
    
    .clients-view-more-btn {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .clients-section {
        padding: 4rem 0;
    }
    
    .clients-container {
        gap: 2.5rem;
    }
    
    .clients-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .clients-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .clients-cards {
        gap: 1.25rem;
    }
    
    .client-card {
        padding: 1.5rem;
    }
    
    .client-logo-wrapper {
        width: 70px;
        height: 70px;
        padding: 0.625rem;
    }
    
    .client-card-content {
        gap: 1.25rem;
    }
    
    .client-name {
        font-size: 1.125rem;
    }
    
    .client-description-text {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .clients-section {
        padding: 3rem 0;
    }
    
    .clients-title {
        font-size: 2rem;
    }
    
    .clients-description {
        font-size: 0.9375rem;
    }
    
    .clients-view-more-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
    }
    
    .client-card {
        padding: 1.25rem;
    }
    
    .client-card-content {
        gap: 1rem;
    }
    
    .client-logo-wrapper {
        width: 60px;
        height: 60px;
        padding: 0.5rem;
    }
    
    .client-name {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .client-description-text {
        font-size: 0.8125rem;
    }
}

/* ============================================
   Why Choose Us Section
   ============================================ */

.why-choose-section {
    padding: 6rem 0;
    background: var(--color-bg-white);
    position: relative;
    overflow: hidden;
}

.why-choose-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-content {
    display: flex;
    flex-direction: column;
}

.why-choose-title {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--color-text-primary);
    margin: 0 0 3rem 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.why-choose-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.why-choose-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.why-choose-step-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    flex-shrink: 0;
}

.why-choose-step-content {
    flex: 1;
}

.why-choose-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.why-choose-step-description {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.7;
    font-weight: 400;
}

.why-choose-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Blob SVG Wrapper */
.blob-svg-wrapper {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blob-svg-wrapper svg {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 1/1;
}

.blob-svg-wrapper svg #blobClip {
    transform-origin: center;
    transition: ease transform 0.3s;
}

.blob-svg-wrapper:hover svg #blobClip {
    transform: scale(1.15) translate(0%, 0%);
}

.blob-svg-wrapper:hover .blob-text-content {
    fill: white;
}

.blob-text-content {
    font: 700 10px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    fill: black;
    transition: ease fill 0.3s;
}

/* Legacy image wrapper styles (kept for compatibility) */
.why-choose-image-wrapper {
    width: 100%;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.why-choose-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.why-choose-image-wrapper:hover .why-choose-image {
    transform: scale(1.05);
}

/* Responsive styles for Why Choose Us Section */
@media (max-width: 1024px) {
    .why-choose-section {
        padding: 5rem 0;
    }
    
    .why-choose-container {
        gap: 3rem;
    }
    
    .why-choose-title {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .why-choose-steps {
        gap: 2rem;
    }
    
    .blob-svg-wrapper {
        max-width: 500px;
    }
    
    .blob-text-content {
        font-size: 9px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 4rem 0;
    }
    
    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .why-choose-title {
        font-size: 2.25rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .why-choose-steps {
        gap: 2rem;
    }
    
    .why-choose-step {
        gap: 1.25rem;
    }
    
    .why-choose-step-number {
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 1.125rem;
    }
    
    .why-choose-step-title {
        font-size: 1.375rem;
    }
    
    .why-choose-step-description {
        font-size: 0.9375rem;
    }
    
    .why-choose-visual {
        order: -1;
    }
    
    .blob-svg-wrapper {
        max-width: 450px;
    }
    
    .blob-text-content {
        font-size: 8px;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 3rem 0;
    }
    
    .why-choose-container {
        gap: 2.5rem;
    }
    
    .why-choose-title {
        font-size: 2rem;
        margin-bottom: 1.75rem;
    }
    
    .why-choose-steps {
        gap: 1.75rem;
    }
    
    .why-choose-step {
        gap: 1rem;
    }
    
    .why-choose-step-number {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1rem;
    }
    
    .why-choose-step-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .why-choose-step-description {
        font-size: 0.875rem;
    }
    
    .blob-svg-wrapper {
        max-width: 380px;
    }
    
    .blob-text-content {
        font-size: 7px;
        letter-spacing: 0.5px;
    }
}

/* ============================================
   Footer Styles
   ============================================ */

/* Footer styles are mostly handled by Tailwind classes */
/* Additional custom footer styles can be added here if needed */

/* ============================================
   Page Loader
   ============================================ */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hide {
    opacity: 0;
    visibility: hidden;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* ============================================
   Animations
   ============================================ */

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   Contact Form Styles
   ============================================ */

.contact-input {
    background: var(--color-white);
    border: 2px solid var(--color-primary-20);
    border-radius: 10px;
    color: var(--color-text-primary);
    transition: all 0.3s ease;
    font-size: 15px;
}

.contact-input::placeholder {
    color: var(--color-gray-500);
    opacity: 0.7;
}

.contact-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px var(--color-primary-10);
    outline: none;
    transform: translateY(-1px);
}

.contact-input:hover:not(:focus) {
    border-color: var(--color-primary-30);
}

.contact-input-error {
    border-color: #dc2626 !important;
}

.contact-error-text {
    color: #dc2626;
}

.contact-btn-submit {
    background: var(--gradient-primary);
    color: var(--color-white);
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(116, 180, 218, 0.3);
}

.contact-btn-submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(116, 180, 218, 0.5);
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}

.contact-btn-submit:active:not(:disabled) {
    transform: translateY(-1px);
}

.contact-btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.contact-form-wrapper {
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(116, 180, 218, 0.1);
    transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.contact-info-card {
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(116, 180, 218, 0.1);
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.contact-info-icon-wrapper {
    box-shadow: 0 4px 15px rgba(116, 180, 218, 0.3);
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(116, 180, 218, 0.4);
}

.contact-map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 3px solid rgba(116, 180, 218, 0.2);
    transition: all 0.3s ease;
}

.contact-map-wrapper:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(116, 180, 218, 0.4);
}

.contact-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* ============================================
   Career Form Styles
   ============================================ */

.career-hero-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.contact-hero-section {
    position: relative;
    background: var(--color-secondary-dark);
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.contact-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/contact/contact-hero.jpg') center/cover no-repeat;
    opacity: 0.5;
    z-index: 1;
}

.contact-hero-section .container {
    position: relative;
    z-index: 2;
}

/* ============================================
   WhatsApp Floating Button
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.75rem;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background: #20BA5A;
}

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

/* Responsive styles for WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 1.5rem;
        left: 1.5rem;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 1rem;
        left: 1rem;
        font-size: 1.4rem;
    }
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .hero-section {
        min-height: 50vh;
    }

    .hero-video {
        /* Better video performance on mobile */
        object-position: center;
    }

    /* .hero-video-overlay {
 
        background: linear-gradient(135deg, rgba(90, 155, 196, 0.85) 0%, rgba(16, 54, 125, 0.75) 100%);
    } */

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1.125rem;
    }
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    margin-bottom: -100px;
    /* padding: 3rem 0; */
    background: var(--color-white);
    position: relative;
    overflow: visible;
    width: 100%;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--color-primary-lightest);
    border-radius: 12px;
    /* overflow: hidden; */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cta-image-wrapper {
    position: relative;
    overflow: visible;
    /* min-height: 400px; */
}

.cta-image {
    margin-top: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-content {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.cta-btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
    padding: 0.875rem 2.5rem;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px var(--color-primary-20);
    position: relative;
    overflow: hidden;
}

.cta-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-darker) 100%);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.cta-btn-primary {
    position: relative;
    z-index: 1;
}

.cta-btn-primary > * {
    position: relative;
    z-index: 2;
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--color-primary-30);
    border-color: var(--color-primary-dark);
}

.cta-btn-primary:hover::before {
    left: 0;
}

.cta-btn-secondary {
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
    padding: 0.875rem 2.5rem;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px var(--color-secondary-10);
    position: relative;
    overflow: hidden;
}

.cta-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-secondary) 100%);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.cta-btn-secondary {
    position: relative;
    z-index: 1;
}

.cta-btn-secondary > * {
    position: relative;
    z-index: 2;
}

.cta-btn-secondary:hover {
    transform: translateY(-2px);
    color: var(--color-white);
    border-color: var(--color-secondary-dark);
    box-shadow: 0 6px 20px var(--color-secondary-30);
}

.cta-btn-secondary:hover::before {
    left: 0;
}

/* Responsive styles for CTA Section */
@media (max-width: 1024px) {
    .cta-section {
        padding: 2.5rem 0;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-image-wrapper {
        min-height: 300px;
        order: -1;
    }
    
    .cta-content {
        padding: 2.5rem 2rem;
        text-align: center;
    }
    
    .cta-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }
    
    .cta-description {
        font-size: 1.0625rem;
        margin-bottom: 1.75rem;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 2rem 0;
    }
    
    .cta-container {
        padding: 0 1.5rem;
    }
    
    .cta-image-wrapper {
        min-height: 250px;
    }
    
    .cta-content {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .cta-title {
        font-size: 2rem;
        margin-bottom: 0.875rem;
    }
    
    .cta-description {
        padding: 0px 8px;
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.875rem;
        justify-content: center;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
        padding: 0.875rem 2rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 1.5rem 0;
    }
    
    .cta-container {
        padding: 0 1rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .cta-description {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
        padding: 0px 8px;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        font-size: 1rem;
        padding: 0.75rem 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}


/* ============================================
   Modern CTA Section (Redesigned)
   ============================================ */

   .cta-modern {
    position: relative;
    padding: 6rem 0;
    background: var(--color-white);
    overflow: hidden;
}

/* Soft gradient glow background */
.cta-modern::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 700px;
    height: 700px;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        var(--color-primary-20),
        transparent 65%
    );
    filter: blur(60px);
    z-index: 0;
}

.cta-modern-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Floating Card */
.cta-modern-card {
    background: linear-gradient(
        180deg,
        var(--color-primary-lightest),
        var(--color-white)
    );
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.08),
        0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Typography */
.cta-modern-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-secondary);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.cta-modern-desc {
    max-width: 720px;
    margin: 0 auto 2.75rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

/* Actions */
.cta-modern-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Primary Button */
.cta-modern-primary {
    padding: 0.95rem 2.75rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 999px;
    color: var(--color-white);
    background: linear-gradient(
        135deg,
        var(--color-primary),
        var(--color-primary-dark)
    );
    box-shadow: 0 12px 30px var(--color-primary-30);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-modern-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px var(--color-primary-40);
}

/* Secondary Button */
.cta-modern-secondary {
    padding: 0.95rem 2.75rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 999px;
    color: var(--color-secondary);
    background: transparent;
    border: 1.5px solid var(--color-secondary-30);
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-modern-secondary:hover {
    background: var(--color-secondary);
    color: var(--color-white);
    border-color: var(--color-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-modern {
        padding: 4rem 0;
    }

    .cta-modern-card {
        padding: 3rem 2rem;
    }

    .cta-modern-actions {
        flex-direction: column;
    }

    .cta-modern-primary,
    .cta-modern-secondary {
        width: 100%;
        max-width: 320px;
    }
}


/* ============================================
   Utility Classes
   ============================================ */

.text-shadow {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.backdrop-blur {
    backdrop-filter: blur(10px);
}

/* Smooth transitions for all interactive elements */
a, button {
    transition: all 0.3s ease;
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* ============================================
   Inline Style Replacements
   ============================================ */

/* Gallery Hero Text Styles */
.gallery-hero-title {
    color: var(--color-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.gallery-hero-description {
    color: var(--color-white);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Header Styles */
.header-contact-link {
    color: var(--color-primary-dark);
}

.header-contact-link:hover {
    color: var(--color-primary);
}

.header-menu-icon {
    color: var(--color-primary);
}

.header-nav-border {
    border-color: var(--color-primary-10);
}

.mobile-menu-icon {
    color: var(--color-primary);
}

.mobile-menu-border {
    border-color: var(--color-primary-10);
}

.mobile-menu-link-primary {
    color: var(--color-primary);
}

.mobile-menu-chevron {
    color: var(--color-primary);
}

.quote-modal-backdrop {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.quote-modal-content-border {
    border: 2px solid var(--color-primary-20);
}

.quote-modal-title {
    color: var(--color-primary-dark);
}

.quote-modal-close-icon {
    color: var(--color-primary);
}

.quote-input-border {
    border-color: var(--color-primary-20);
}

/* ============================================
   Simple Quote Form Styles
   ============================================ */

.quote-modal-container {
    animation: quoteModalSlideIn 0.3s ease-out;
}

@keyframes quoteModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Simple Quote Form Styles */
.quote-form-simple {
    display: flex;
    flex-direction: column;
}

.quote-form-group-simple {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quote-label-simple {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
}

.quote-input-simple {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-gray-300);
    border-radius: 8px;
    font-size: 0.9375rem;
    color: var(--color-text-primary);
    background: var(--color-white);
    transition: all 0.2s ease;
    outline: none;
}

.quote-input-simple:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(16, 54, 125, 0.1);
}

.quote-input-simple::placeholder {
    color: var(--color-gray-400);
}

.quote-select-simple {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2310367d' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.quote-textarea-simple {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-gray-300);
    border-radius: 8px;
    font-size: 0.9375rem;
    color: var(--color-text-primary);
    background: var(--color-white);
    transition: all 0.2s ease;
    outline: none;
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    line-height: 1.6;
}

.quote-textarea-simple:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(16, 54, 125, 0.1);
}

.quote-textarea-simple::placeholder {
    color: var(--color-gray-400);
}

/* Message Display */
.quote-message-simple {
    padding: 0.875rem 1rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 1rem;
    animation: quoteMessageSlideIn 0.3s ease-out;
}

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

.quote-message-simple.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.quote-message-simple.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Submit Button */
.quote-submit-btn-simple {
    width: 100%;
    padding: 0.875rem 2rem;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
}

.quote-submit-btn-simple:hover:not(:disabled) {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 54, 125, 0.2);
}

.quote-submit-btn-simple:active:not(:disabled) {
    transform: translateY(0);
}

.quote-submit-btn-simple:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .quote-modal-container {
        max-width: 100%;
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }
    
    .quote-modal-title {
        font-size: 1.5rem;
    }
    
    .quote-input-simple,
    .quote-textarea-simple {
        padding: 0.75rem;
        font-size: 0.9375rem;
    }
    
    .quote-submit-btn-simple {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .quote-modal-container {
        border-radius: 1rem;
    }
    
    .quote-label-simple {
        font-size: 0.8125rem;
    }
    
    .quote-input-simple,
    .quote-textarea-simple {
        padding: 0.6875rem;
        font-size: 0.875rem;
        border-radius: 6px;
    }
    
    .quote-textarea-simple {
        min-height: 100px;
    }
    
    .quote-submit-btn-simple {
        padding: 0.6875rem 1.25rem;
        font-size: 0.875rem;
        border-radius: 6px;
    }
}

/* ============================================
   Custom Right-Click Context Menu
   ============================================ */

.custom-context-menu {
    position: fixed;
    background: #1f2937;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 220px;
    z-index: 99999;
    overflow: hidden;
    animation: contextMenuFadeIn 0.15s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes contextMenuFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-5px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.context-menu-header {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.context-menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0.25rem 0;
}

.context-menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    cursor: pointer;
    border-left: 3px solid transparent;
}

.context-menu-item:hover {
    background: rgba(16, 54, 125, 0.3);
    color: #ffffff;
    border-left-color: var(--color-primary);
}

.context-menu-item i {
    width: 18px;
    text-align: center;
    color: var(--color-primary);
    font-size: 0.875rem;
}

.context-menu-item:hover i {
    color: #ffffff;
}

/* Prevent text selection on right-click */
body.no-select {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Footer Styles */
.footer-background {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 50%, var(--color-secondary-light) 100%);
}

.footer-decorative-1 {
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    transform: translate(30%, -30%);
}

.footer-decorative-2 {
    background: radial-gradient(circle, var(--color-white) 0%, transparent 70%);
    transform: translate(-30%, 30%);
}

.footer-decorative-3 {
    background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
    transform: translate(-50%, -50%);
}

.footer-pattern {
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.03;
}

.footer-logo-filter {
    filter: brightness(0) invert(1);
}

.footer-social-bg {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section-title {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-contact-icon-bg {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-border {
    border-color: rgba(255, 255, 255, 0.15);
}

/* Home Page Styles */
.client-logo-fallback {
    display: none;
}

.client-logo-error-hidden + .client-logo-fallback {
    display: block;
}

/* Career Page Styles */
.career-hero-title {
    color: var(--color-secondary);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.career-hero-description {
    color: var(--color-secondary);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.career-section-bg {
    background: var(--gradient-primary);
}

.career-decorative-bg {
    background: var(--color-secondary-05);
}

.career-section-label {
    color: var(--color-secondary);
}

.career-section-title-white {
    color: var(--color-white);
}

.career-card-border {
    border-color: var(--color-secondary-30);
}

.career-icon-bg {
    background: var(--color-secondary-10);
}

.career-icon-color {
    color: var(--color-secondary);
}

.career-form-bg {
    background: var(--color-bg-cream);
}

.career-form-decorative-1 {
    background: var(--color-secondary);
}

.career-form-decorative-2 {
    background: var(--color-primary-lightest);
}

.career-form-label {
    color: var(--color-primary);
}

.career-form-title {
    color: var(--color-primary-dark);
}

.career-form-description {
    color: var(--color-text-secondary);
}

.career-form-card-border {
    border-color: var(--color-primary-20);
}

.career-input-border {
    border-color: var(--color-primary-20);
    color: var(--color-text-primary);
}

.career-input-border:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px var(--color-secondary-10);
}

.career-input-border:not(:focus) {
    border-color: var(--color-primary-20);
    box-shadow: none;
}

.career-error-text {
    color: #dc2626;
}

.career-label-primary {
    color: var(--color-primary-dark);
}

.career-label-secondary {
    color: var(--color-secondary-dark);
}

.career-select-arrow {
    color: var(--color-primary);
}

.career-select-option {
    background-color: var(--color-white);
    color: var(--color-text-primary);
}

.career-select-option-placeholder {
    background-color: var(--color-white);
    color: var(--color-text-light);
}

.career-link-primary {
    color: var(--color-primary);
}

.career-submit-btn {
    background: linear-gradient(90deg, var(--color-secondary) 10%, var(--color-primary) 100%);
    color: var(--color-white);
    border: none;
}

/* Contact Page Styles */
.contact-hero-title {
    color: var(--color-white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-hero-description {
    color: var(--color-white);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    font-size: clamp(1rem, 2vw, 1.25rem);
}

.contact-hero-btn {
    background: var(--color-white);
    color: var(--color-secondary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-hero-btn:hover {
    background: var(--color-primary-lightest);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.contact-hero-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.contact-hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.contact-form-title-dark {
    color: var(--color-primary-dark);
}

.contact-form-description-dark {
    color: var(--color-primary-dark);
    opacity: 0.8;
}

.contact-info-icon-bg {
    background: var(--color-primary);
}

.contact-info-icon-color {
    color: var(--color-secondary);
}

.contact-info-title-dark {
    color: var(--color-primary-dark);
}

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

.contact-info-text-dark {
    color: var(--color-primary-dark);
    opacity: 0.8;
}

/* ============================================
   Contact Form Redesign - Matching Image UI
   ============================================ */

/* Left Section: Get in Touch with Us */
.contact-form-left-wrapper {
    background: var(--color-primary-lightest);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--color-primary-20);
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 2rem;
}

/* Form Layout */
.contact-form-space {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form-field {
    flex: 1;
}

.contact-form-field-full {
    width: 100%;
}

/* Modern Input Styles */
.contact-input-modern {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--color-white);
    border: 2px solid var(--color-primary-20);
    border-radius: 8px;
    font-size: 15px;
    color: var(--color-text-primary);
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-input-modern::placeholder {
    color: var(--color-gray-500);
    opacity: 0.8;
}

.contact-input-modern:focus {
    outline: none;
    background: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px var(--color-primary-10);
}

.contact-input-modern:hover:not(:focus) {
    border-color: var(--color-primary-30);
}

.contact-input-modern.contact-input-error {
    background: #fee;
    border-color: #dc2626;
}

/* Select dropdown styling */
select.contact-input-modern {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2310367D' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

select.contact-input-modern option {
    color: var(--color-text-primary);
    background: var(--color-white);
    padding: 0.5rem;
}

select.contact-input-modern:focus {
    outline: none;
}

.contact-textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

/* Submit Button */
.contact-form-submit-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
}

.contact-btn-send {
    background: var(--gradient-primary);
    color: var(--color-white);
    border: none;
    padding: 0.875rem 3rem;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 4px 15px var(--color-primary-30);
}

.contact-btn-send:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-darker) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--color-primary-50);
}

.contact-btn-send:active:not(:disabled) {
    transform: translateY(0);
}

.contact-btn-send:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Right Section: Contact Details */
.contact-details-right-wrapper {
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 8px;
}

.contact-details-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.contact-details-intro {
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

/* Contact Info Grid - 2x2 */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.contact-info-card-modern {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-white);
    border-radius: 8px;
    border: 1px solid var(--color-primary-10);
    transition: all 0.3s ease;
}

.contact-info-card-modern:hover {
    box-shadow: 0 4px 12px var(--color-primary-20);
    transform: translateY(-2px);
    border-color: var(--color-primary-30);
}

.contact-info-icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 20px;
    box-shadow: 0 4px 10px var(--color-primary-30);
    transition: all 0.3s ease;
}

.contact-info-card-modern:hover .contact-info-icon-box {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 15px var(--color-primary-50);
}

.contact-info-text-box {
    flex: 1;
}

.contact-info-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.contact-info-value {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Social Media Section */
.contact-social-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-primary-20);
}

.contact-social-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.contact-social-icons {
    display: flex;
    gap: 0.75rem;
}

.contact-social-icon {
    width: 40px;
    height: 40px;
    background: var(--color-secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px var(--color-secondary-30);
}

.contact-social-icon:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--color-primary-50);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-form-left-wrapper,
    .contact-details-right-wrapper {
        padding: 2rem 2rem;
    }
    
    .contact-form-title,
    .contact-details-title {
        font-size: 1.75rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .contact-form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-left-wrapper,
    .contact-details-right-wrapper {
        padding: 1.5rem 1.5rem;
    }
    
    .contact-form-title,
    .contact-details-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-info-icon-box {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 18px;
    }
}

/* SVG Styles */
.svg-stop-color-1 {
    stop-color: #74B4DA;
    stop-opacity: 0.3;
}

.svg-stop-color-2 {
    stop-color: #10367D;
    stop-opacity: 0.2;
}

/* Transform utilities */
.transform-flip-x {
    transform: scaleX(-1);
}

/* Client logo error handling */
.client-logo-error-hidden {
    display: none;
}

