/**
 * Öztemel Lojistik - Ana Stil Dosyası
 * Modern, Premium Tasarım
 */

/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --primary-color: #232c53;
    --primary-dark: #1a2140;
    --primary-light: #3a4570;
    --secondary-color: #0f1733;
    --accent-color: #4a5580;
    --dark-color: #0f1733;
    --dark-secondary: #1a2140;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --gray-100: #f7f8fc;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #232c53 0%, #3a4570 100%);
    --gradient-dark: linear-gradient(135deg, #0f1733 0%, #1a2140 100%);
    --gradient-hero: linear-gradient(135deg, rgba(35, 44, 83, 0.9) 0%, rgba(58, 69, 112, 0.8) 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 80px rgba(0, 0, 0, 0.2);
    --shadow-primary: 0 10px 40px rgba(35, 44, 83, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Z-index */
    --z-dropdown: 100;
    --z-header: 1000;
    --z-modal: 2000;
    --z-preloader: 9999;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

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

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 1rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

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

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

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* ===== Utility Classes ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header .subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header .subtitle::before,
.section-header .subtitle::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(1, 51, 88, 0.4);
}

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

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

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

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #4CAF7D;
    color: var(--white);
}

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

.btn-whatsapp:hover {
    background: #3d9268;
    transform: translateY(-3px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #4CAF7D;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.whatsapp-float:hover {
    background-color: #3d9268;
    color: #FFF;
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .whatsapp-float {
        opacity: 1;
        visibility: visible;
    }
}

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-preloader);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-logo img {
    width: 150px;
    margin-bottom: 30px;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

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

@keyframes pulse {

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

    50% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-header);
    transition: var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
}

.header.scrolled .header-top {
    display: none;
}

.header-top {
    background: var(--gradient-dark);
    padding: 10px 0;
}

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

.header-contact-info {
    display: flex;
    gap: 30px;
}

.header-contact-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

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

.header-contact-info i {
    color: var(--white);
    font-size: 0.9rem;
}

.header-social {
    display: flex;
    gap: 15px;
}

.header-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.header-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Navbar */
.navbar {
    padding: 15px 0;
    transition: var(--transition-normal);
}

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

.navbar-brand .logo {
    height: 65px;
    transition: var(--transition-fast);
}

/* Logo switching - normal state: show light logo */
.navbar-brand .logo-light {
    display: block;
}

.navbar-brand .logo-dark {
    display: none;
}

/* Logo switching - scrolled state: show dark logo */
.header.scrolled .navbar-brand .logo-light {
    display: none;
}

.header.scrolled .navbar-brand .logo-dark {
    display: block;
}

.header.scrolled .navbar-brand .logo {
    height: 50px;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.navbar-menu>li>a {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1rem;
    color: var(--white);
    padding: 10px 0;
    position: relative;
}

.header.scrolled .navbar-menu>li>a {
    color: var(--dark-color);
}

.navbar-menu>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: var(--transition-normal);
}

.header.scrolled .navbar-menu>li>a::after {
    background: var(--gradient-primary);
}

.navbar-menu>li>a:hover::after,
.navbar-menu>li>a.active::after {
    width: 100%;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.has-dropdown>a i {
    font-size: 0.75rem;
    margin-left: 5px;
    transition: var(--transition-fast);
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    color: var(--gray-700);
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.dropdown-menu li a:hover {
    background: var(--gray-100);
    color: var(--primary-color);
    padding-left: 30px;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-actions .btn {
    padding: 12px 24px;
    font-size: 0.9375rem;
}

/* Mobile Toggle */
.navbar-toggler {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

.navbar-toggler span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition-fast);
}

.header.scrolled .navbar-toggler span {
    background: var(--dark-color);
}

.navbar-toggler.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggler.active span:nth-child(2) {
    opacity: 0;
}

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

/* ===== Hero Slider Section ===== */
.hero-slider-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-main-slider {
    width: 100%;
    height: 100%;
}

.hero-main-slider .swiper-slide {
    position: relative;
    overflow: hidden;
}

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

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.slide-content {
    position: absolute;
    bottom: 150px;
    left: 0;
    z-index: 10;
    width: 100%;
    padding: 0 60px;
    text-align: left;
}

.slide-text {
    width: 100%;
}

.slide-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .slide-title {
        white-space: normal;
    }
}

.slide-desc {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Slide Content Animation */
.swiper-slide .slide-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.swiper-slide-active .slide-text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

/* Navigation Arrows */
.slider-nav-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 20;
    pointer-events: none;
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-normal);
    pointer-events: auto;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* Bottom Tab Navigation */
.slider-tabs {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 30;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    padding: 30px 0 40px;
}

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

.slider-tab {
    position: relative;
    padding: 15px 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.tab-text {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-normal);
    margin-bottom: 12px;
}

.slider-tab:hover .tab-text,
.slider-tab.active .tab-text {
    color: var(--white);
}

.tab-line {
    display: block;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.tab-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #f5c518;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.slider-tab.active .tab-line::after {
    width: 100%;
    animation: tabProgress 6s linear forwards;
}

@keyframes tabProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* Responsive Slider */
@media (max-width: 992px) {
    .hero-slider-section {
        height: 600px;
        min-height: auto;
    }

    .slide-content {
        bottom: 200px;
        padding: 0 20px;
        text-align: center;
    }

    .slide-logo img {
        height: 80px;
    }

    .slide-desc {
        max-width: 100%;
    }

    .tabs-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .slider-nav-arrows {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-slider-section {
        height: 500px;
        min-height: auto;
    }

    .slide-content {
        bottom: 160px;
    }

    .slide-logo img {
        height: 60px;
    }

    .slide-title {
        font-size: 1.75rem;
    }

    .tabs-wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 5px;
    }

    .slider-tab {
        padding: 5px 2px;
    }

    .tab-text {
        font-size: 0.7rem;
        display: none;
        /* Hide text on very small screens to save space, just show bars */
    }

    .slider-tab.active .tab-text {
        display: none;
    }

    .tab-line {
        height: 2px;
    }
}



/* ===== Just In Time Section ===== */
.just-in-time {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.just-in-time-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.just-in-time-text .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.just-in-time-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
}

.just-in-time-text h2 span {
    display: block;
    font-size: 4.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.just-in-time-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 30px;
}

.just-in-time-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.jit-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.jit-feature:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.jit-feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.jit-feature-text h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.jit-feature-text p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

.just-in-time-image {
    position: relative;
}

.just-in-time-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.just-in-time-image::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.2;
}

/* ===== Quote Banner Section ===== */
.quote-banner {
    position: relative;
    padding: 150px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

@media (max-width: 992px) {
    .quote-banner {
        background-attachment: scroll;
        background-position: center center;
    }
}

.quote-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.quote-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.quote-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    margin: 0 auto 30px;
    font-size: 2rem;
    color: var(--white);
}

.quote-text {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 30px;
}

.quote-text span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.quote-author img {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    border: 3px solid var(--white);
}

.quote-author-info h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 3px;
}

.quote-author-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* ===== Team Section ===== */
.team {
    padding: 120px 0;
    background: var(--gray-100);
}

.team-slider-container {
    position: relative;
    padding: 0 50px;
}

.team-slider {
    overflow: hidden;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto 20px;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

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

.team-card h4 {
    font-size: 1.125rem;
    margin-bottom: 5px;
}

.team-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

/* Team Slider Navigation */
.team-slider-prev,
.team-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    color: var(--primary-color);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.team-slider-prev {
    left: 0;
}

.team-slider-next {
    right: 0;
}

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

/* ===== Services Tabs Section ===== */
.services-tabs {
    padding: 120px 0;
    background: var(--white);
}

.services-tabs-container {
    margin-top: 50px;
}

.services-tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}

.service-tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition-normal);
}

.service-tab-btn i {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.service-tab-btn:hover {
    background: var(--white);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.service-tab-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.service-tab-btn.active i {
    color: var(--white);
}

/* Tab Contents */
.services-tab-contents {
    position: relative;
}

.service-tab-content {
    display: none;
    animation: fadeInTab 0.5s ease;
}

.service-tab-content.active {
    display: block;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.service-tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-tab-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-tab-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.service-tab-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-tab-info p {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Responsive Services Tabs */
@media (max-width: 992px) {
    .service-tab-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-tab-image img {
        height: 300px;
    }

    .services-tab-buttons {
        gap: 8px;
    }

    .service-tab-btn {
        padding: 12px 18px;
        font-size: 0.85rem;
    }

    .service-tab-btn span {
        display: none;
    }

    .service-tab-btn i {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .service-tab-btn {
        padding: 12px 15px;
    }
}

/* ===== Partners Section ===== */
.partners {
    padding: 100px 0;
    background: var(--gray-100);
}

.partners-slider-container {
    margin-top: 50px;
    position: relative;
    padding: 0 60px;
}

.partners-slider {
    padding: 20px 0;
}

.partner-logo {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.partner-logo:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.partner-logo img {
    max-height: 180px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-normal);
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Partners Slider Navigation */
.partners-slider-prev,
.partners-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    color: var(--primary-color);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.partners-slider-prev {
    left: 0;
}

.partners-slider-next {
    right: 0;
}

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

/* ===== Transport Info Section ===== */
.transport-info {
    padding: 120px 0;
    background: var(--gray-100);
}

.transport-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.transport-image {
    position: relative;
}

.transport-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.transport-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-primary);
}

.transport-badge h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 5px;
}

.transport-badge p {
    font-size: 0.875rem;
    opacity: 0.9;
}

.transport-content h2 {
    margin-bottom: 25px;
}

.transport-content>p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 30px;
}

.transport-list {
    margin-bottom: 30px;
}

.transport-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

.transport-list li:last-child {
    border-bottom: none;
}

.transport-list li i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 184, 148, 0.1);
    border-radius: var(--radius-full);
    color: var(--secondary-color);
    font-size: 0.875rem;
}

/* ===== Safe Transport Section ===== */
.safe-transport {
    padding: 120px 0;
    background: var(--white);
}

.safe-transport-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.safe-transport-content h2 {
    margin-bottom: 25px;
}

.safe-transport-content p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 30px;
}

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

.safe-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.safe-feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.safe-feature-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.safe-feature-text p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

.safe-transport-image {
    position: relative;
}

.safe-transport-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* ===== CTA Section ===== */
.cta {
    position: relative;
    padding: 100px 0;
    background: url('../images/cta-bg.jpg') center/cover fixed;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    opacity: 0.95;
}

.cta-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-text h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

/* ===== Footer ===== */
.footer {
    background: #1b1b1b;
}

/* Footer Services Section */
.footer-services {
    background: #ffffff;
    padding: 60px 0;
}

.footer-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.footer-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-service-item img {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-normal);
}

.footer-service-item:hover img {
    transform: scale(1.08);
}

.footer-service-item h4 {
    font-size: 1rem;
    color: #013358;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.footer-top {
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-logo img {
    height: 45px;
    margin-bottom: 25px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

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

.footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-links a i {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-contact i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

.footer-contact span,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

/* Footer Stats */
.footer-stats {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-content {
    min-width: 140px;
}

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    min-width: 140px;
    text-align: left;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-primary);
    font-size: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    z-index: 99;
}

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

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {

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

@media (max-width: 992px) {
    .header-top {
        display: none;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 0;
        box-shadow: var(--shadow-xl);
        transition: var(--transition-normal);
    }

    .navbar-menu.active {
        left: 0;
    }

    .navbar-menu>li {
        width: 100%;
    }

    .navbar-menu>li>a {
        display: block;
        padding: 15px 0;
        color: var(--dark-color);
        border-bottom: 1px solid var(--gray-200);
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0 0 0 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .has-dropdown.active .dropdown-menu {
        display: block;
    }

    .navbar-toggler {
        display: flex;
    }

    .navbar-actions .btn-whatsapp {
        display: none;
    }

    .has-dropdown>a {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }

    .has-dropdown.active>a i {
        transform: rotate(180deg);
    }

    .just-in-time-content,
    .transport-grid,
    .safe-transport-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .cta-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .hero-content {
        padding: 120px 0 100px;
    }

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

    .just-in-time-text h2 {
        font-size: 2.5rem;
    }

    .just-in-time-text h2 span {
        font-size: 3rem;
    }

    .just-in-time-features {
        grid-template-columns: 1fr;
    }

    .quote-text {
        font-size: 1.75rem;
    }

    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .safe-features {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section-header .subtitle::before,
    .section-header .subtitle::after {
        display: none;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }
}