/* Executive Corporate Design Tokens */
:root {
    --primary-dark: #0A192F;
    --primary-blue: #1E3A8A;
    --accent-emerald: #10B981;
    --accent-gold: #F59E0B;
    --text-dark: #0F172A;
    --text-muted: #475569;
    --text-light: #94A3B8;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --border-color: #E2E8F0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --shadow-md: 0 4px 20px -2px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 10px 30px -5px rgba(15, 23, 42, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    height: 72px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 75%;
}

.logo-img {
    height: 42px;
    width: 42px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 0.3px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 10px;
    color: var(--accent-emerald);
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 1.2;
    margin-top: 2px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-link {
    color: #CBD5E1;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: #FFFFFF;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-emerald);
    transition: var(--transition);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-emerald) 0%, #059669 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-whatsapp {
    background: #25D366;
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1DA851;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 22px;
    cursor: pointer;
    padding: 6px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 80px;
    background: url('../images/hero_fleet.png') no-repeat center center/cover;
    color: #FFFFFF;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.8) 60%, rgba(10, 25, 47, 0.5) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content {
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: var(--accent-emerald);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.text-highlight {
    color: var(--accent-emerald);
}

.hero-description {
    font-size: 18px;
    color: #E2E8F0;
    margin-bottom: 36px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #CBD5E1;
    font-weight: 500;
}

.highlight-item i {
    color: var(--accent-gold);
}

/* Stats Section */
.stats-section {
    background: var(--primary-dark);
    padding: 40px 0;
    border-bottom: 4px solid var(--accent-emerald);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-card {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.stat-icon {
    font-size: 28px;
    color: var(--accent-emerald);
    margin-bottom: 8px;
}

.stat-number, .stat-plus {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: #FFFFFF;
}

.stat-plus {
    color: var(--accent-gold);
}

.stat-label {
    font-size: 13px;
    color: #94A3B8;
    margin-top: 4px;
}

/* Section Commons */
section {
    padding: 90px 0;
}

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

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

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent-emerald);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: var(--bg-light);
}

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

.about-image-wrapper {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-dark);
    color: #FFFFFF;
    padding: 24px;
    border-radius: 16px;
    border: 2px solid var(--accent-emerald);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.exp-years {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--accent-emerald);
    line-height: 1;
}

.exp-text {
    font-size: 12px;
    color: #94A3B8;
    margin-top: 4px;
    text-align: center;
}

.about-text {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.value-item {
    display: flex;
    gap: 14px;
    background: var(--bg-white);
    padding: 16px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.value-icon {
    font-size: 24px;
    color: var(--accent-emerald);
}

.value-info h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.value-info p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.service-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.service-icon {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: var(--accent-emerald);
    color: #FFFFFF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-md);
}

.service-card-body {
    padding: 24px;
}

.service-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

.service-features li {
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li i {
    color: var(--accent-emerald);
}

/* Spotlight Section */
.spotlight-section {
    background: var(--primary-dark);
    color: #FFFFFF;
}

.spotlight-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 44px;
}

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

.spotlight-title {
    color: #FFFFFF;
    font-size: 32px;
    margin-bottom: 16px;
}

.spotlight-desc {
    color: #94A3B8;
    font-size: 15px;
    margin-bottom: 30px;
}

.spotlight-specs {
    display: flex;
    gap: 20px;
}

.spec-card {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 20px;
    border-radius: 12px;
    flex: 1;
}

.spec-num {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-emerald);
}

.spec-label {
    font-size: 12px;
    color: #CBD5E1;
    margin-top: 4px;
}

.spotlight-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.gallery-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 180px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(10, 25, 47, 0.9) 0%, transparent 100%);
    padding: 10px;
    font-size: 11px;
    color: #FFFFFF;
    font-weight: 600;
}

/* Coverage & Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--bg-light);
    padding: 28px 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--bg-white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-emerald);
}

.feature-icon {
    font-size: 28px;
    color: var(--accent-emerald);
    margin-bottom: 14px;
}

.feature-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Contact Section */
.contact-section {
    background: var(--bg-light);
}

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

.contact-desc {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-dark);
    color: var(--accent-emerald);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.info-content strong {
    font-size: 14px;
    color: var(--primary-dark);
}

.info-content p {
    font-size: 13px;
    color: var(--text-muted);
}

.link-wa {
    color: #25D366;
    font-weight: 700;
}

.quote-form-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.quote-form-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

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

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-emerald);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.btn-block {
    width: 100%;
}

/* Footer */
.site-footer {
    background: var(--primary-dark);
    color: #94A3B8;
    padding-top: 60px;
    padding-bottom: 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 14px;
}

.footer-logo img {
    height: 32px;
}

.footer-links h4, .footer-contact h4 {
    color: #FFFFFF;
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a:hover {
    color: var(--accent-emerald);
}

.footer-contact p {
    font-size: 13px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 12px;
}

/* RESPONSIVE MOBILE MEDIA QUERIES */

@media (max-width: 992px) {
    .hero-title { font-size: 36px; }
    .about-grid, .spotlight-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    .site-header, .nav-container {
        height: 64px;
        padding: 0 16px;
    }

    .brand-logo {
        max-width: 80%;
        gap: 10px;
    }

    .logo-img {
        height: 34px;
        width: 34px;
    }

    .brand-name {
        font-size: 13px;
        letter-spacing: 0;
    }

    .brand-tagline {
        font-size: 9px;
    }

    .btn-quote {
        display: none; /* Hide header quote button on small mobile so title fits perfectly */
    }

    .mobile-toggle {
        display: block;
        font-size: 22px;
        color: #FFFFFF;
    }

    .nav-menu {
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        background: rgba(10, 25, 47, 0.98);
        backdrop-filter: blur(16px);
        padding: 20px 24px;
        border-bottom: 3px solid var(--accent-emerald);
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        width: 100%;
    }

    .nav-link {
        font-size: 15px;
        width: 100%;
        display: block;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .hero-section {
        padding-top: 90px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn-lg {
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
    }

    .about-image-wrapper {
        margin-bottom: 30px;
    }

    .experience-badge {
        right: 10px;
        bottom: -15px;
        padding: 16px;
    }

    .exp-years {
        font-size: 28px;
    }

    .spotlight-box {
        padding: 24px 18px;
    }

    .spotlight-gallery {
        grid-template-columns: 1fr;
    }

    .spotlight-specs {
        flex-direction: column;
        gap: 12px;
    }

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

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

@media (max-width: 480px) {
    .brand-name {
        font-size: 11px;
    }

    .brand-tagline {
        font-size: 8.5px;
    }

    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }
}
