/* ============================================
   SWIFTSEND TRANSPORT L.L.C - PREMIUM STYLES
   ============================================ */

:root {
    --primary: #0f1b31;
    --primary-light: #1a2d4d;
    --accent: #e67e22;
    --accent-hover: #d35400;
    --white: #ffffff;
    --gray: #8892a0;
    --light-bg: #f0f2f5;
    --dark: #0a0e1a;
    --success: #25d366;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
}

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

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

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

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Section Header */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header.light h2, .section-header.light p { color: var(--white); }
.section-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 6px 22px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.section-header h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}
.section-header p { color: var(--gray); font-size: 1.05rem; max-width: 550px; margin: 0 auto; }

/* ============================================
   HEADER
   ============================================ */
.header {
    background: var(--primary);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(15, 27, 49, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo { display: flex; align-items: center; }
.logo img { height: 70px; width: auto; display: block; }

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

.nav-menu { display: flex; gap: 4px; }

.nav-link {
    padding: 10px 14px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    font-size: 0.85rem;
    border-radius: 6px;
    letter-spacing: 0.3px;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent);
}

.btn-quote {
    background: var(--accent);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 15px;
}

.btn-quote:hover { background: var(--accent-hover); transform: translateY(-2px); }

.hamburger { display: none; cursor: pointer; }
.bar { display: block; width: 24px; height: 2px; margin: 6px auto; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ============================================
   HERO VIDEO SECTION
   ============================================ */
.hero-video {
    position: relative;
    width: 100%;
    height: calc(100vh - 90px);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 90px;
}

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

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15,27,49,0.9) 0%, rgba(15,27,49,0.7) 50%, rgba(15,27,49,0.88) 100%);
    z-index: 1;
}

.hero-video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 24px;
    animation: fadeInUp 1s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

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

.hero-video-content p {
    font-size: 1.2rem;
    opacity: 0.85;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-video-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover { background: var(--accent-hover); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(230,126,34,0.35); }

.btn-secondary-dark {
    background: transparent;
    color: var(--white);
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid rgba(255,255,255,0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-secondary-dark:hover { background: var(--white); color: var(--primary); border-color: var(--white); transform: translateY(-3px); }

/* Hero Stats Row */
.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
    flex-wrap: wrap;
}

.hero-stat { text-align: center; }
.hero-stat-num { display: block; font-size: 2rem; font-weight: 800; color: var(--accent); }
.hero-stat-label { font-size: 0.85rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; }

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section { padding: 100px 0; background: var(--light-bg); }

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

.service-dark-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.service-dark-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.service-dark-icon {
    width: 65px;
    height: 65px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--accent);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-dark-card:hover .service-dark-icon { background: var(--accent); color: var(--white); }

.service-dark-card h3 { font-size: 1.25rem; color: var(--primary); margin-bottom: 12px; font-weight: 600; }
.service-dark-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }

.service-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover { gap: 10px; }

/* ============================================
   DEEP DIVE / ABOUT PREVIEW
   ============================================ */
.deep-dive { padding: 100px 0; background: var(--white); }

.deep-dive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.deep-dive-image { position: relative; }
.deep-dive-image img { border-radius: 16px; box-shadow: var(--shadow-lg); width: 100%; }

.deep-dive-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: var(--white);
    padding: 25px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.deep-dive-badge span { display: block; font-size: 2.5rem; font-weight: 800; line-height: 1; }
.deep-dive-badge small { font-size: 0.85rem; font-weight: 500; }

.deep-dive-content h2 { font-size: 2.4rem; color: var(--primary); margin: 20px 0 25px; font-weight: 700; }
.deep-dive-content p { color: var(--gray); line-height: 1.8; margin-bottom: 25px; }

.deep-dive-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 35px;
}

.deep-dive-features div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.deep-dive-features i { color: var(--success); font-size: 1.1rem; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

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

/* ============================================
   FLEET SECTION
   ============================================ */
.fleet-section { padding: 100px 0; background: var(--primary); }

.fleet-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fleet-slide {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.08);
}

.fleet-slide:hover { transform: translateY(-8px); border-color: var(--accent); }

.fleet-slide-img { position: relative; height: 220px; overflow: hidden; }
.fleet-slide-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.fleet-slide:hover .fleet-slide-img img { transform: scale(1.08); }

.fleet-slide-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
}

.fleet-slide-info { padding: 30px; color: var(--white); }
.fleet-slide-info h4 { font-size: 1.3rem; margin-bottom: 8px; }
.fleet-slide-info p { opacity: 0.7; font-size: 0.9rem; margin-bottom: 15px; }
.fleet-slide-info a { color: var(--accent); font-weight: 600; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 6px; }
.fleet-slide-info a:hover { gap: 10px; }

.fleet-cta { text-align: center; margin-top: 50px; }

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-outline-light:hover { background: var(--white); color: var(--primary); transform: translateY(-2px); }

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.why-section { padding: 100px 0; background: var(--light-bg); }

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

.why-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 25px;
    transition: var(--transition);
}

.why-card:hover .why-icon { background: var(--accent); color: var(--white); }

.why-card h4 { font-size: 1.2rem; color: var(--primary); margin-bottom: 12px; font-weight: 600; }
.why-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.7; }

/* ============================================
   RATES PREVIEW
   ============================================ */
.rates-preview { padding: 100px 0; background: var(--white); }

.rates-preview-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.rates-preview-text h2 { font-size: 2.4rem; color: var(--primary); margin: 20px 0 25px; font-weight: 700; }
.rates-preview-text p { color: var(--gray); line-height: 1.8; margin-bottom: 25px; font-size: 1.05rem; }
.rates-preview-text strong { color: var(--accent); }

.rates-preview-list { margin-bottom: 35px; }
.rates-preview-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.rates-preview-list i { color: var(--success); }

.rates-preview-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rate-highlight-card {
    background: var(--primary);
    padding: 60px 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.rate-highlight-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(230,126,34,0.15) 0%, transparent 70%);
}

.rate-from { display: block; color: var(--accent); font-size: 0.9rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; position: relative; z-index: 1; }
.rate-amount { display: block; color: var(--white); font-size: 4rem; font-weight: 800; line-height: 1; margin-bottom: 10px; position: relative; z-index: 1; }
.rate-desc { display: block; color: rgba(255,255,255,0.6); font-size: 0.95rem; position: relative; z-index: 1; }

/* ============================================
   PARTNER SECTION
   ============================================ */
.partner-section { padding: 80px 0; background: var(--light-bg); }

.partner-banner {
    background: var(--primary);
    border-radius: 20px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.partner-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(230,126,34,0.2) 0%, transparent 70%);
}

.partner-banner-text { position: relative; z-index: 1; color: var(--white); }
.partner-banner-text h2 { font-size: 2.2rem; margin: 15px 0 20px; font-weight: 700; }
.partner-banner-text h2 span { color: var(--accent); }
.partner-banner-text p { opacity: 0.8; margin-bottom: 30px; line-height: 1.7; }

.partner-banner-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.partner-banner-info div {
    background: rgba(255,255,255,0.08);
    padding: 20px;
    border-radius: 10px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.partner-banner-info i { color: var(--accent); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cta-section h2 { font-size: 2.4rem; font-weight: 700; margin-bottom: 15px; }
.cta-section p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 35px; max-width: 600px; margin-left: auto; margin-right: auto; }

.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--success);
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-whatsapp:hover { background: var(--success); color: var(--white); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid var(--white);
    transition: var(--transition);
}

.btn-call:hover { background: var(--white); color: var(--accent-hover); transform: translateY(-3px); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: #080d18; color: var(--white); padding: 80px 0 0; }

.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr; gap: 50px; margin-bottom: 60px; }

.footer-logo { height: 55px; margin-bottom: 20px; display: block; }

.footer-about p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.8; margin-bottom: 10px; }

.footer h4 { font-size: 1rem; margin-bottom: 25px; color: var(--accent); font-weight: 600; }

.footer-links li, .footer-services li { margin-bottom: 14px; }

.footer-links a, .footer-services a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

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

.footer-links i, .footer-services i { font-size: 0.7rem; color: var(--accent); }

.footer-contact p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.footer-contact i { color: var(--accent); width: 18px; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--accent); }

.partner-badge { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.partner-badge span { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 5px; }
.partner-badge a { color: var(--accent); font-size: 0.95rem; font-weight: 600; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover { background: var(--accent); transform: translateY(-3px); }

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover { transform: scale(1.1); background: #128c7e; }

/* ============================================
   PAGE BANNER (Inner Pages)
   ============================================ */
.page-banner {
    position: relative;
    height: 400px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 90px;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    opacity: 0.15;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,27,49,0.9) 0%, rgba(15,27,49,0.7) 100%);
}

.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.page-banner-content h1 { font-size: 3.2rem; font-weight: 800; margin-bottom: 15px; letter-spacing: -1px; }
.page-banner-content p { font-size: 1rem; opacity: 0.7; }
.page-banner-content a { color: var(--accent); }
.page-banner-content a:hover { text-decoration: underline; }
.page-banner-content span { color: rgba(255,255,255,0.5); }

/* ============================================
   ABOUT PAGE SPECIFIC
   ============================================ */
.about { padding: 100px 0; background: var(--light-bg); }

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

.about-text p { margin-bottom: 18px; color: var(--gray); line-height: 1.8; }
.about-text strong { color: var(--primary); }

.about-list { margin: 20px 0; }
.about-list li { padding: 10px 0; display: flex; align-items: center; gap: 12px; color: var(--primary); font-weight: 500; }
.about-list i { color: var(--success); font-size: 1.1rem; }

.about-contact { display: flex; gap: 30px; margin-top: 25px; padding-top: 25px; border-top: 1px solid #e2e8f0; }

.contact-person { display: flex; align-items: center; gap: 12px; }
.contact-person i { width: 45px; height: 45px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.contact-person a { color: var(--accent); font-weight: 600; }

.about-image { position: relative; }
.about-img-wrapper { position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-wrapper img { width: 100%; display: block; }

.experience-badge {
    position: absolute;
    bottom: 25px;
    left: -15px;
    background: var(--accent);
    color: var(--white);
    padding: 18px 22px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-years { display: block; font-size: 2.2rem; font-weight: 800; line-height: 1; }
.exp-text { font-size: 0.8rem; font-weight: 500; }

/* ============================================
   SERVICES PAGE SPECIFIC
   ============================================ */
.services-detail { padding: 100px 0; background: var(--primary); }

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-detail-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 40px 30px;
    color: var(--white);
    transition: var(--transition);
}

.service-detail-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-8px);
    border-color: var(--accent);
}

.service-detail-icon {
    width: 65px;
    height: 65px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 25px;
}

.service-detail-card h3 { font-size: 1.3rem; margin-bottom: 15px; font-weight: 600; }
.service-detail-card > p { opacity: 0.75; font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }

.service-detail-card ul { margin: 15px 0 25px; }
.service-detail-card li { padding: 6px 0; font-size: 0.9rem; opacity: 0.8; display: flex; align-items: center; gap: 10px; }
.service-detail-card li i { color: var(--success); font-size: 0.85rem; }

.btn-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--success);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.btn-book:hover { background: #128c7e; transform: translateY(-2px); }

/* ============================================
   FLEET PAGE SPECIFIC
   ============================================ */
.fleet-detail { padding: 100px 0; background: var(--light-bg); }

.fleet-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 50px;
    align-items: center;
}

.fleet-detail-card:nth-child(even) .fleet-detail-img { order: 2; }
.fleet-detail-card:nth-child(even) .fleet-detail-info { order: 1; }

.fleet-detail-img { height: 420px; overflow: hidden; }
.fleet-detail-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.fleet-detail-card:hover .fleet-detail-img img { transform: scale(1.05); }

.fleet-detail-info { padding: 50px; }

.fleet-detail-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.badge-popular { background: var(--accent); color: var(--white); }
.badge-value { background: var(--success); color: var(--white); }
.badge-heavy { background: var(--primary); color: var(--white); }

.fleet-detail-info h3 { font-size: 2rem; color: var(--primary); margin-bottom: 18px; font-weight: 700; }
.fleet-detail-info > p { color: var(--gray); line-height: 1.8; margin-bottom: 25px; }

.fleet-detail-info ul { margin-bottom: 30px; }
.fleet-detail-info li { padding: 10px 0; color: var(--primary); display: flex; align-items: center; gap: 12px; font-size: 0.95rem; border-bottom: 1px solid #f0f2f5; }
.fleet-detail-info li:last-child { border-bottom: none; }
.fleet-detail-info li i { color: var(--success); }

.fleet-price { font-size: 1.8rem; color: var(--accent); font-weight: 800; margin-bottom: 25px; }
.fleet-price small { font-size: 1rem; color: var(--gray); font-weight: 400; }

.btn-fleet {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--success);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-fleet:hover { background: #128c7e; transform: translateY(-2px); }

/* ============================================
   RATES PAGE SPECIFIC
   ============================================ */
.rates-page { padding: 100px 0; background: var(--primary); }

.rates-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.rates-stats .stat-box {
    background: rgba(255,255,255,0.06);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.08);
}

.rates-stats .stat-box .num { font-size: 2.2rem; font-weight: 800; color: var(--accent); }
.rates-stats .stat-box .label { font-size: 0.85rem; opacity: 0.7; }

.rates-tabs { display: flex; gap: 12px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }

.tab-btn {
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.1);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    transition: var(--transition);
    text-align: center;
}

.tab-btn i { display: block; font-size: 1.2rem; margin-bottom: 5px; color: var(--accent); }
.tab-btn small { font-weight: 400; opacity: 0.6; font-size: 0.75rem; }

.tab-btn.active, .tab-btn:hover { background: var(--accent); border-color: var(--accent); }
.tab-btn.active i, .tab-btn:hover i { color: var(--white); }

.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.5s ease; }

.rates-table-wrapper { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }

.rates-table { width: 100%; border-collapse: collapse; }
.rates-table thead { background: var(--primary); color: var(--white); }
.rates-table th { padding: 18px 24px; text-align: left; font-weight: 600; font-size: 0.88rem; }
.rates-table td { padding: 14px 24px; border-bottom: 1px solid #f0f2f5; font-size: 0.88rem; color: #1a202c; }
.rates-table tbody tr:hover { background: #f7fafc; }
.rates-table tbody tr:last-child td { border-bottom: none; }

.rate-price { background: var(--accent); color: var(--white); padding: 5px 14px; border-radius: 20px; font-weight: 700; font-size: 0.82rem; white-space: nowrap; }

.btn-table {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-table:hover { background: #128c7e; transform: scale(1.1); }

.rates-note { margin-top: 30px; text-align: center; color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.rates-note a { color: var(--accent); font-weight: 600; text-decoration: underline; }

/* ============================================
   PARTNER PAGE SPECIFIC
   ============================================ */
.partner-detail { padding: 100px 0; background: var(--light-bg); }

.partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }

.partner-info-card {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.partner-logo-area { text-align: center; padding-bottom: 30px; margin-bottom: 30px; border-bottom: 2px solid #f0f2f5; }
.partner-logo-area i { font-size: 4rem; color: var(--accent); margin-bottom: 15px; display: block; }
.partner-logo-area h3 { font-size: 2rem; color: var(--primary); }
.partner-logo-area span { color: var(--gray); font-size: 0.9rem; }

.partner-info-card > p { color: var(--gray); line-height: 1.8; margin-bottom: 25px; }

.partner-service-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 25px; }
.partner-service-tags span { background: var(--light-bg); padding: 10px 18px; border-radius: 25px; font-size: 0.85rem; display: flex; align-items: center; gap: 8px; }
.partner-service-tags i { color: var(--accent); }

.partner-contact { display: flex; gap: 20px; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid #f0f2f5; }
.partner-contact a { display: flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 600; font-size: 0.9rem; }
.partner-contact a:hover { color: var(--accent); }
.partner-contact i { color: var(--accent); }

.testimonial { background: var(--white); padding: 30px; border-radius: 10px; margin-bottom: 20px; box-shadow: var(--shadow); border-left: 4px solid var(--accent); }
.testimonial .stars { color: var(--accent); margin-bottom: 10px; }
.testimonial p { color: var(--gray); font-style: italic; margin-bottom: 15px; line-height: 1.7; }
.testimonial strong { color: var(--primary); font-size: 0.9rem; }

/* ============================================
   CONTACT PAGE SPECIFIC
   ============================================ */
.contact-page { padding: 100px 0; background: var(--white); }

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

.contact-info-card { background: var(--light-bg); padding: 50px; border-radius: 20px; }

.contact-item { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 30px; }

.contact-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.contact-item h4 { color: var(--primary); font-size: 1.05rem; margin-bottom: 5px; }
.contact-item a { color: var(--accent); font-weight: 600; }
.contact-item p { color: var(--gray); font-size: 0.9rem; }

.btn-whatsapp-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--success);
    color: var(--white);
    padding: 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    margin-top: 30px;
    transition: var(--transition);
}

.btn-whatsapp-large:hover { background: #128c7e; transform: translateY(-2px); }

.booking-form-card { background: var(--light-bg); padding: 50px; border-radius: 20px; }

.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-weight: 600; color: var(--primary); margin-bottom: 8px; font-size: 0.92rem; }
.form-group label i { color: var(--accent); margin-right: 6px; }
.form-group input, .form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(230,126,34,0.1); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.btn-whatsapp-booking {
    width: 100%;
    padding: 16px;
    background: var(--success);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-whatsapp-booking:hover { background: #128c7e; transform: translateY(-2px); }

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

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services-dark-grid, .fleet-carousel, .why-grid { grid-template-columns: repeat(2, 1fr); }
    .rates-stats { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .deep-dive-grid, .rates-preview-content, .partner-grid { grid-template-columns: 1fr; }
    .partner-banner { grid-template-columns: 1fr; }
    .hero-video-content h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: var(--primary);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        padding: 20px 0;
    }
    .nav-menu.active { left: 0; }
    .nav-link { padding: 15px 0; display: block; }
    .btn-quote { display: none; }
    .header .container { height: 80px; }
    .logo img { height: 55px; }

    .hero-video { height: calc(100vh - 80px); min-height: 500px; margin-top: 80px; }
    .hero-video-content h1 { font-size: 2.2rem; }
    .hero-video-content p { font-size: 1rem; }
    .hero-stats-row { gap: 25px; flex-wrap: wrap; }

    .services-dark-grid, .fleet-carousel, .why-grid, .rates-stats { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 2rem; }

    .fleet-detail-card { grid-template-columns: 1fr; }
    .fleet-detail-card:nth-child(even) .fleet-detail-img { order: 1; }
    .fleet-detail-card:nth-child(even) .fleet-detail-info { order: 2; }
    .fleet-detail-img { height: 280px; }

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

    .page-banner { height: 300px; padding-top: 80px; }
    .page-banner-content h1 { font-size: 2.2rem; }

    .deep-dive-badge { left: 10px; bottom: 10px; }
    .rate-amount { font-size: 3rem; }
    .partner-banner { padding: 40px 30px; }
    .about-content { grid-template-columns: 1fr; }
    .about-contact { flex-direction: column; }
}

@media (max-width: 480px) {
    .hero-video { min-height: 550px; }
    .hero-video-content h1 { font-size: 1.8rem; }
    .hero-video-buttons { flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary-dark { width: 100%; justify-content: center; }
    .cta-buttons { flex-direction: column; }
    .btn-whatsapp, .btn-call { width: 100%; justify-content: center; }
    .rates-table th, .rates-table td { padding: 10px 14px; font-size: 0.82rem; }
    .floating-whatsapp { width: 55px; height: 55px; font-size: 1.8rem; bottom: 20px; right: 20px; }
    .fleet-detail-info { padding: 30px 25px; }
    .partner-info-card, .contact-info-card, .booking-form-card { padding: 30px 20px; }
}
