/* ==========================================================================
   GLOBEFARER CARGO SHIPPING - MASTER STYLESHEET
   ========================================================================== */

:root {
    /* Color Palette - Purple & White Theme */
    --color-primary: #7952f5;
    --color-primary-hover: #5e2fe6;
    --color-primary-light: #f3effe;
    --color-primary-glow: rgba(121, 82, 245, 0.35);
    --color-dark: #151026;
    --color-dark-secondary: #211a3b;
    --color-bg-page: #ffffff;
    --color-bg-light: #f8f7fc;
    --color-text-dark: #181329;
    --color-text-muted: #6c6783;
    --color-text-light: #a39eb8;
    --color-white: #ffffff;
    --color-border-dark: rgba(24, 19, 41, 0.12);
    --color-border-light: rgba(255, 255, 255, 0.18);
    
    /* Typography */
    --font-heading: 'Sarabun', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Transitions & Elevation */
    --transition-fast: all 0.25s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --shadow-subtle: 0 10px 30px rgba(121, 82, 245, 0.08);
    --shadow-deep: 0 20px 50px rgba(21, 16, 38, 0.25);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-page);
    color: var(--color-text-dark);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg, video {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, transform 0.1s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.cursor-badge {
    position: absolute;
    width: 76px;
    height: 76px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: scale(0.3);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 8px 24px var(--color-primary-glow);
}

.cursor-badge-icon {
    display: none;
    font-size: 18px;
}

.custom-cursor.is-hover-discover .cursor-dot {
    opacity: 0;
}
.custom-cursor.is-hover-discover .cursor-badge {
    opacity: 1;
    transform: scale(1);
}
.custom-cursor.is-hover-discover .cursor-badge-text {
    display: block;
}

.custom-cursor.is-hover-play .cursor-dot {
    opacity: 0;
}
.custom-cursor.is-hover-play .cursor-badge {
    opacity: 1;
    transform: scale(1);
}
.custom-cursor.is-hover-play .cursor-badge-text {
    display: none;
}
.custom-cursor.is-hover-play .cursor-icon-play {
    display: block;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid var(--color-border-dark);
    transition: background-color 0.35s ease, border-color 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-sticky {
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom-color: rgba(121, 82, 245, 0.15);
    box-shadow: 0 4px 25px rgba(21, 16, 38, 0.06);
}

.site-header.is-sticky .nav-menu > li > a {
    color: var(--color-dark);
}

.site-header.is-sticky .header-logo img {
    filter: none;
}

.site-header.is-sticky .track-order-btn,
.site-header.is-sticky .side-drawer-opener,
.site-header.is-sticky .mobile-menu-toggle {
    color: var(--color-dark);
    fill: var(--color-dark);
}

.header-container {
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 40px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: height 0.35s ease;
}

.site-header.is-sticky .header-container {
    height: 80px;
}

.header-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 52px;
    width: auto;
    max-height: 52px;
    object-fit: contain;
    display: block;
    transition: height 0.35s ease, max-height 0.35s ease, transform 0.3s ease;
}

.site-header.is-sticky .logo-img {
    height: 42px;
    max-height: 42px;
}

/* Desktop Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-menu > li {
    position: relative;
    padding: 30px 0;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: -0.01em;
    position: relative;
    padding: 6px 0;
}

.nav-menu > li > a:hover {
    color: var(--color-primary);
}

.menu-arrow-icon {
    width: 8px;
    height: 14px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.nav-menu > li:hover .menu-arrow-icon {
    transform: rotate(90deg);
}

/* Submenu Dropdowns */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background-color: var(--color-dark);
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    box-shadow: var(--shadow-deep);
    z-index: 1001;
    border-top: 2px solid var(--color-primary);
    border-radius: 0 0 8px 8px;
}

.nav-menu > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu li {
    padding: 0 28px;
}

.nav-menu .sub-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-fast);
}

.nav-menu .sub-menu li:last-child a {
    border-bottom: none;
}

.nav-menu .sub-menu li a:hover,
.nav-menu .sub-menu li.active a {
    color: var(--color-primary);
    padding-left: 6px;
}

.plus-icon {
    font-size: 11px;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.nav-menu .sub-menu li a:hover .plus-icon {
    transform: rotate(90deg);
}

/* Header Tools */
.header-tools {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header-tool-item {
    position: relative;
    display: flex;
    align-items: center;
}

.track-order-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    padding: 8px 12px;
    border: 1px solid transparent;
    transition: var(--transition-fast);
}

.track-flag-icon {
    fill: currentColor;
}

.track-order-btn:hover {
    color: var(--color-primary);
}

/* Track Order Popover */
.track-dropdown-box {
    position: absolute;
    top: calc(100% + 20px);
    right: 0;
    width: 330px;
    background-color: var(--color-dark);
    padding: 30px;
    box-shadow: var(--shadow-deep);
    border-top: 2px solid var(--color-primary);
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    z-index: 1010;
}

.track-dropdown-box.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.track-tagline {
    color: var(--color-text-light);
    font-size: 14px;
    display: block;
    margin-bottom: 18px;
}

.track-input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.track-input-group input {
    background-color: #211a3b;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    padding: 12px 16px;
    font-size: 14px;
    width: 100%;
    border-radius: 4px;
    transition: border-color 0.25s ease;
}

.track-input-group input:focus {
    border-color: var(--color-primary);
}

.track-submit-btn {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    padding: 13px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-fast);
    border-radius: 4px;
}

.track-submit-btn:hover {
    background-color: var(--color-primary-hover);
    color: var(--color-white);
}

.track-result-msg {
    margin-top: 10px;
    font-size: 13px;
    min-height: 18px;
}
.track-result-msg.success { color: #55ff88; }
.track-result-msg.error { color: #ff6666; }

.track-help-link {
    display: block;
    margin-top: 16px;
    font-size: 13px;
    color: var(--color-text-light);
    text-decoration: underline;
}

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

/* Side Drawer Opener */
.side-drawer-opener {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    fill: currentColor;
    padding: 8px;
    transition: var(--transition-fast);
}

.side-drawer-opener:hover {
    color: var(--color-primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    cursor: pointer;
}

.mobile-menu-toggle .bar {
    height: 2px;
    width: 100%;
    background-color: var(--color-dark);
    transition: var(--transition-fast);
}

.mobile-nav-panel {
    display: none;
}

/* ==========================================================================
   SIDE DRAWER (OFF-CANVAS)
   ========================================================================== */
.side-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
}

.side-drawer-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.side-drawer-panel {
    position: fixed;
    top: 0;
    right: -520px;
    width: 500px;
    max-width: 90vw;
    height: 100vh;
    background-color: var(--color-dark);
    color: var(--color-white);
    z-index: 10001;
    box-shadow: var(--shadow-deep);
    transition: right 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    overflow-y: auto;
}

.side-drawer-panel.is-open {
    right: 0;
}

.side-drawer-inner {
    padding: 60px 50px;
    position: relative;
}

.side-drawer-close {
    position: absolute;
    top: 35px;
    right: 35px;
    color: var(--color-white);
    fill: var(--color-white);
    transition: transform 0.3s ease, color 0.3s;
}

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

.side-logo-wrap {
    margin-bottom: 30px;
}

.side-logo {
    height: 54px;
    width: auto;
    max-height: 54px;
    object-fit: contain;
    display: block;
}

.side-description {
    color: var(--color-text-light);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.side-widget-item {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget-tagline {
    display: block;
    color: var(--color-text-light);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.widget-phone a {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.01em;
}

.widget-phone a:hover {
    color: var(--color-primary);
}

.side-info-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.widget-address a, .widget-email a {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.widget-address a:hover, .widget-email a:hover {
    color: var(--color-primary);
}

.side-social-links {
    display: flex;
    gap: 20px;
}

.side-social-links a {
    color: var(--color-white);
    font-size: 18px;
    transition: var(--transition-fast);
}

.side-social-links a:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* ==========================================================================
   HERO REVOLUTION SLIDER
   ========================================================================== */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 920px;
    overflow: hidden;
    background-color: var(--color-dark);
}

.slider-viewport {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), visibility 1.2s;
    z-index: 1;
}

.slider-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    transform: scale(1.08);
    transition: transform 7s ease-out;
}

.slider-slide.active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(21, 16, 38, 0.3) 0%, rgba(255, 255, 255, 0.15) 55%, rgba(255, 255, 255, 1) 100%);
}

.slide-content-container {
    position: relative;
    z-index: 5;
    max-width: 1720px;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 120px;
}

.slide-text-wrapper {
    overflow: hidden;
}

.slide-title {
    font-size: 72px;
    font-weight: 800;
    color: var(--color-dark);
    letter-spacing: -2px;
    line-height: 1.1;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1) 0.3s, opacity 0.8s ease 0.3s;
}

.slider-slide.active .slide-title {
    transform: translateY(0);
    opacity: 1;
}

/* Slider Custom Arrows */
.slider-controls {
    position: absolute;
    bottom: 120px;
    right: 40px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 30px;
}

.slider-arrow {
    display: flex;
    align-items: center;
    color: var(--color-dark);
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: var(--transition-fast);
}

.slider-arrow .arrow-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slider-svg-arrow {
    width: 25px;
    height: 48px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.slider-arrow:hover {
    color: var(--color-primary);
}

.arrow-prev:hover .slider-svg-arrow {
    transform: translateX(-6px);
}

.arrow-next:hover .slider-svg-arrow {
    transform: translateX(6px);
}

.slider-pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-pagination .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(121, 82, 245, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-pagination .dot.active {
    background-color: var(--color-primary);
    width: 32px;
    border-radius: 10px;
}

/* ==========================================================================
   SECTION 1: WAREHOUSE STORAGE & SOLUTIONS
   ========================================================================== */
.section-warehouse-intro {
    padding: 100px 0;
    position: relative;
    background-color: var(--color-bg-page);
}

.section-container {
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 40px;
}

.grid-3-cols {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.intro-ill-img {
    width: 100%;
    max-width: 440px;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.intro-col-image:hover .intro-ill-img {
    transform: scale(1.04);
}

.section-main-heading {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.15;
    color: var(--color-dark);
}

.section-sub-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-dark);
}

.intro-description-text {
    color: var(--color-text-muted);
    font-size: 16px;
    line-height: 1.75;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--color-border-dark);
}

.textual-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.3;
    transition: var(--transition-fast);
}

.btn-plus-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 12px;
    transition: transform 0.3s ease, background 0.3s, color 0.3s;
}

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

.textual-btn:hover .btn-plus-icon {
    transform: rotate(90deg);
    background-color: var(--color-primary-hover);
    color: var(--color-white);
}

/* Solutions Underline List */
.solutions-title {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--color-dark);
}

.solutions-list li {
    border-bottom: 1px solid var(--color-border-dark);
}

.solution-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--color-dark);
    transition: var(--transition-fast);
}

.solution-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    color: var(--color-primary);
}

.solution-link:hover {
    padding-left: 10px;
    color: var(--color-primary);
}

.solution-link:hover .solution-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   SECTION 2: INTERACTIVE SPLIT BANNERS
   ========================================================================== */
.section-split-banners {
    width: 100%;
}

.banners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.service-banner-card {
    position: relative;
    height: 520px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 60px;
}

.banner-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-banner-card:hover .banner-bg-img {
    transform: scale(1.06);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(21,16,38,0.1) 0%, rgba(21,16,38,0.75) 100%);
    transition: background 0.4s ease;
}

.service-banner-card:hover .banner-overlay {
    background: linear-gradient(180deg, rgba(21,16,38,0.2) 0%, rgba(21,16,38,0.9) 100%);
}

.banner-content {
    position: relative;
    z-index: 3;
    color: var(--color-white);
}

.banner-subtitle {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    display: block;
    margin-bottom: 8px;
}

.banner-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.15;
}

.banner-action-indicator {
    position: absolute;
    right: 40px;
    bottom: 60px;
    z-index: 4;
}

.action-plus {
    width: 44px;
    height: 44px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: transform 0.4s ease, background 0.3s, color 0.3s;
}

.service-banner-card:hover .action-plus {
    transform: rotate(90deg) scale(1.1);
    background-color: var(--color-white);
    color: var(--color-primary);
}

/* ==========================================================================
   SECTION 3: VIDEO TESTIMONIAL
   ========================================================================== */
.section-video-testimonial {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--color-white);
}

.testimonial-video-bg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.testimonial-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(21, 16, 38, 0.78);
}

.testimonial-container {
    position: relative;
    z-index: 5;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.testimonial-quote-icon {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    justify-content: center;
}

.testimonial-quote-text {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 40px;
    color: var(--color-white);
}

.testimonial-author-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-avatar-wrap img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
}

.author-info {
    text-align: left;
}

.author-role {
    font-size: 13px;
    color: var(--color-text-light);
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.author-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
}

/* ==========================================================================
   SECTION 4: ANIMATED STATISTICS COUNTERS
   ========================================================================== */
.section-counters {
    padding: 80px 0;
    background-color: var(--color-bg-light);
    border-bottom: 1px solid var(--color-border-dark);
}

.counters-container {
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.counter-box {
    border-left: 2px solid var(--color-primary);
    padding-left: 36px;
}

.counter-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: var(--color-text-muted);
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1;
    letter-spacing: -2px;
}

/* ==========================================================================
   SECTION 5: DIVIDED IMAGE INFO
   ========================================================================== */
.section-divided-info {
    padding: 100px 0;
    background-color: var(--color-bg-page);
}

.divided-info-container {
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 70px;
    align-items: center;
}

.divided-info-heading {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.15;
    color: var(--color-dark);
}

.divided-info-description {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.divided-img {
    width: 100%;
    height: auto;
    box-shadow: var(--shadow-subtle);
    transition: transform 0.6s ease;
    border-radius: 4px;
}

.divided-info-image-col:hover .divided-img {
    transform: scale(1.02);
}

/* ==========================================================================
   SECTION 6: MEET THE PROS (TEAM GRID)
   ========================================================================== */
.section-team {
    padding: 90px 0 110px;
    background-color: var(--color-bg-light);
}

.team-container {
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 40px;
}

.team-header {
    margin-bottom: 50px;
}

.team-card {
    background: transparent;
    transition: transform 0.3s ease;
}

.team-card-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

.team-avatar-wrap {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #ede9fe;
    box-shadow: 0 8px 20px rgba(121, 82, 245, 0.12);
}

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

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

.team-role {
    font-size: 14px;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 6px;
}

.team-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark);
}

.team-name a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

/* ==========================================================================
   SECTION 7: FULLWIDTH VIDEO BANNER
   ========================================================================== */
.section-video-banner {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1s ease;
}

.section-video-banner:hover .video-banner-bg {
    transform: scale(1.03);
}

.video-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(21, 16, 38, 0.45);
}

.video-banner-content {
    position: relative;
    z-index: 5;
}

.video-play-btn {
    position: relative;
    width: 110px;
    height: 110px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 28px;
    transition: transform 0.3s ease, background 0.3s, color 0.3s;
    box-shadow: 0 10px 30px rgba(121, 82, 245, 0.45);
}

.play-pulse-ring {
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    animation: pulseAnimation 2s infinite ease-out;
}

@keyframes pulseAnimation {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

.video-play-btn:hover {
    transform: scale(1.12);
    background-color: var(--color-white);
    color: var(--color-primary);
}

/* ==========================================================================
   SECTION 8: FLEET CAPABILITIES
   ========================================================================== */
.section-fleet {
    padding: 120px 0;
    background-color: #151026;
    color: var(--color-white);
}

.fleet-container {
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 40px;
}

.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.fleet-heading {
    font-size: 46px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.15;
}

.fleet-checklist {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.checklist-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.check-marker {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.checklist-text {
    color: var(--color-text-light);
    font-size: 17px;
    line-height: 1.7;
}

.fleet-ship-img {
    width: 100%;
    max-width: 650px;
    height: auto;
    margin: 0 auto;
    transition: transform 0.6s ease;
}

.fleet-render-col:hover .fleet-ship-img {
    transform: translateY(-8px) scale(1.02);
}

/* ==========================================================================
   SECTION 9: CLIENT LOGOS 5-COL GRID
   ========================================================================== */
.section-clients {
    background-color: #110d20;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.grid-5-cols {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.client-card {
    position: relative;
    height: 180px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.client-card-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.client-hover-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 0.4s ease, transform 0.5s ease;
}

.client-card:hover .client-hover-bg {
    opacity: 1;
    transform: scale(1);
}

.client-logo-wrap {
    position: relative;
    z-index: 3;
    transition: opacity 0.3s ease;
}

.client-logo-img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(0.85);
    transition: transform 0.3s ease;
}

.client-card:hover .client-logo-wrap {
    opacity: 0;
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */
.site-footer {
    background-color: var(--color-bg-page);
    color: var(--color-dark);
}

.footer-container {
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Footer Top Area */
.footer-top-area {
    padding: 70px 0;
    border-bottom: 1px solid var(--color-border-dark);
}

.footer-contact-box {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.contact-box-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-label {
    font-size: 13px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 6px;
}

.contact-value a {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.25;
}

.phone-item .contact-value a {
    font-size: 28px;
}

.address-item .contact-value a,
.email-item .contact-value a {
    font-size: 18px;
}

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

/* Footer Middle Area */
.footer-middle-area {
    padding: 85px 0 65px;
    background: linear-gradient(135deg, #6807B6 0%, #4a0585 100%);
    color: var(--color-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-middle-area .grid-5-cols {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    height: 52px;
    width: auto;
    max-height: 52px;
    object-fit: contain;
    display: block;
    margin-bottom: 24px;
}

.footer-col-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.footer-links-list a:hover {
    color: #ffffff;
    padding-left: 6px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
}

/* Footer Bottom Area */
.footer-bottom-area {
    padding: 28px 0;
    background-color: #3b046a;
    color: rgba(255, 255, 255, 0.8);
}

.bottom-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-copyright a {
    font-weight: 700;
    color: #ffffff;
}

.footer-copyright a:hover {
    color: #f3effe;
    text-decoration: underline;
}

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

.footer-socials a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================================================
   VIDEO MODAL POPUP
   ========================================================================== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s;
}

.video-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.video-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 12, 26, 0.85);
    backdrop-filter: blur(8px);
}

.video-modal-dialog {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 960px;
}

.video-modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: var(--color-white);
    font-size: 28px;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

.video-iframe-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    box-shadow: var(--shadow-deep);
    border-radius: 8px;
}

.video-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   BACK TO TOP BUTTON
   ========================================================================== */
.back-to-top-btn {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, background 0.3s;
    box-shadow: 0 6px 20px rgba(121, 82, 245, 0.35);
}

.back-to-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background-color: var(--color-primary-hover);
    color: var(--color-white);
    transform: translateY(-4px);
}

.back-to-top-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}