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

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #f97316;
    --accent-color: #dc2626;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    .nav-link,
    .btn-track,
    .btn-submit,
    .btn-business,
    .btn-service,
    .btn-info {
        min-height: 44px;
        min-width: 44px;
    }
    
    .hamburger {
        min-height: 44px;
        min-width: 44px;
        order: 999;
        margin-left: auto;
        flex-shrink: 0;
        display: flex !important;
    }
}

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

/* Navigation Bar */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.7rem 0;
    min-height: 78px;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s ease-in-out,
                background 0.3s ease-in-out;
    will-change: transform;
    display: flex;
    align-items: center;
}

/* Navbar untuk homepage (index.html) - hidden di awal */
.navbar.navbar-homepage {
    transform: translateY(-100%);
}

.navbar.navbar-homepage.scrolled {
    transform: translateY(0);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 auto;
    min-width: 180px;
    padding: 0;
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    filter: contrast(1.1) brightness(1.05);
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo a:hover img {
    transform: scale(1.05) translateZ(0);
    opacity: 0.9;
    filter: contrast(1.15) brightness(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    flex: 0 0 auto;
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    min-width: 150px;
}

.language-switcher {
    position: relative;
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.lang-btn i {
    font-size: 0.9rem;
}

.lang-btn:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    overflow: hidden;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    width: 100%;
    background: transparent;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    text-align: left;
}

.lang-option:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.lang-option.active {
    background: var(--bg-light);
    color: var(--primary-color);
}

.lang-option.active .fa-check {
    display: inline-block !important;
    color: var(--secondary-color);
}

.lang-option .fa-check {
    display: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
    padding: 0.25rem 0;
    line-height: 1.4;
    white-space: nowrap;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1000;
    padding: 0.5rem;
    margin-left: auto;
    flex-shrink: 0;
    order: 999;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
    border-radius: 2px;
}

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

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 4rem 0;
    overflow: hidden;
    margin-top: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 78px);
    object-fit: cover;
    object-position: center;
    z-index: 0;
    border: none;
    pointer-events: none;
}


.hero-overlay {
    position: absolute;
    top: -78px;
    left: 0;
    width: 100%;
    height: calc(100% + 78px);
    background: rgba(74, 104, 189, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.1s both;
}

.hero-logo img {
    max-width: 240px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3)) 
            brightness(1.25) 
            contrast(1.35) 
            saturate(1.5)
            drop-shadow(0 0 12px rgba(255, 255, 255, 0.4))
            drop-shadow(0 0 20px rgba(249, 115, 22, 0.3));
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: filter, transform;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.hero-logo:hover img {
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3)) 
            brightness(1.35) 
            contrast(1.45) 
            saturate(1.6)
            drop-shadow(0 0 18px rgba(255, 255, 255, 0.6))
            drop-shadow(0 0 30px rgba(249, 115, 22, 0.5));
    transform: scale(1.05) translateZ(0);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

/* Hero Explore Button */
.hero-explore {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.btn-explore {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    letter-spacing: 0.5px;
}

.btn-explore:hover {
    background: rgba(255, 255, 255, 0.37);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

/* Quick Actions Section */
.quick-actions {
    display: flex;
    max-width: 750px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.4s both;
    background: rgba(255, 255, 255, 0.511);
    border-radius: 80px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.quick-action-card {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.quick-action-card:active,
.quick-action-card:focus {
    background: rgba(255, 255, 255, 0.95);
}

.quick-action-card:active .action-icon,
.quick-action-card:focus .action-icon {
    transform: scale(1.05);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.quick-action-card:active .action-title,
.quick-action-card:focus .action-title {
    color: var(--primary-color);
    transform: translateX(3px);
}

.quick-action-card:active .action-title::after,
.quick-action-card:focus .action-title::after {
    width: 100%;
}

.quick-action-card:active .action-search-icon,
.quick-action-card:focus .action-search-icon {
    color: rgb(249, 115, 22);
    transform: scale(1.1);
    opacity: 0.9;
}

.quick-action-card:first-child {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.quick-action-card:hover {
    background: rgba(255, 255, 255, 0.95);
}

.quick-action-link {
    cursor: pointer;
}

.action-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid rgb(249, 115, 22);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(249, 115, 22);
    font-size: 1.8rem;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.action-icon i {
    position: relative;
    z-index: 1;
}

.quick-action-card:hover .action-icon {
    transform: scale(1.05);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Red pin for tracking icon */
.quick-action-card:first-child .action-icon::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    bottom: 4px;
    right: 4px;
    z-index: 2;
}

/* Red dot for tariff icon (same as tracking) */
.quick-action-card:last-child .action-icon::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    bottom: 4px;
    right: 4px;
    z-index: 2;
}

.action-title {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.quick-action-card:hover .action-title {
    color: var(--primary-color);
    transform: translateX(3px);
}

.quick-action-card:hover .action-title::after {
    width: 100%;
}

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

.action-search-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(249, 115, 22);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.quick-action-card:hover .action-search-icon {
    color: rgb(249, 115, 22);
    transform: scale(1.1);
    opacity: 0.9;
}

/* Mobile touch/click effect */
@media (hover: none) and (pointer: coarse) {
    .quick-action-card:active {
        background: rgba(255, 255, 255, 0.95);
    }

    .quick-action-card:active .action-icon {
        transform: scale(1.05);
        border-color: var(--primary-color);
        color: var(--primary-color);
    }

    .quick-action-card:active .action-title {
        color: var(--primary-color);
        transform: translateX(2px);
    }

    .quick-action-card:active .action-title::after {
        width: 100%;
    }

    .quick-action-card:active .action-search-icon {
        color: rgb(249, 115, 22);
        transform: scale(1.1);
        opacity: 0.9;
    }
}

/* Touch devices with hover capability */
@media (hover: hover) and (pointer: fine) {
    .quick-action-card:hover .action-title {
        color: var(--primary-color);
        transform: translateX(3px);
    }

    .quick-action-card:hover .action-title::after {
        width: 100%;
    }
}

/* Tracking Section */
.tracking-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    margin: 2rem auto;
    max-width: 700px;
    animation: fadeInUp 1s ease 0.4s both;
}

.tracking-section h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.tracking-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tracking-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.tracking-input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

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

.btn-track:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.tracking-result {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.tracking-result.show {
    display: block;
}

.tracking-result.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.tracking-result.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Tariff Section */
.tariff-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    margin: 2rem auto;
    max-width: 900px;
    animation: fadeInUp 1s ease 0.6s both;
}

.tariff-section h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.tariff-form .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Company Section */
/* About Us Section */
.about-us-section {
    padding: 4rem 0;
    background: var(--white);
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.about-title-underline {
    width: 120px;
    height: 4px;
    background: var(--secondary-color);
    margin: 0 auto;
    border-radius: 2px;
}

.about-content-wrapper {
    margin-top: 3rem;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-content-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-subtitle h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text {
    color: var(--text-light);
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.about-image-placeholder {
    width: 100%;
    min-height: 300px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 2px dashed #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.about-image-placeholder::before {
    content: 'Gambar akan ditempatkan di sini';
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.6;
}

.about-content-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-stats-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.about-stats-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.about-stats-card .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.about-stats-card .stat-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.about-stats-card .stat-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.company-section {
    background: var(--bg-light);
    padding-top: 8rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.company-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.company-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.company-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.company-image-placeholder {
    width: 100%;
    min-height: 400px;
    background: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.company-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.company-image:hover {
    transform: scale(1.02);
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(249, 115, 22, 0.1);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover::after {
    opacity: 1;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    color: var(--primary-color);
    text-shadow: 0 2px 8px rgba(30, 58, 138, 0.2);
}

.stat-item:hover .stat-label {
    color: var(--text-dark);
    font-weight: 600;
    transform: translateY(-2px);
}

/* Mobile touch effect */
.stat-item:active {
    transform: translateY(-4px) scale(1.01);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
}

/* Services Section */
.services-section {
    background: var(--white);
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Why Choose Section */
.why-choose-section {
    margin-bottom: 4rem;
}

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

.why-choose-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-choose-text .services-main-title {
    text-align: left;
    margin-bottom: 0;
}

.why-choose-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.8;
    text-align: left;
}

.why-choose-animation {
    width: 100%;
    height: 400px;
    background: transparent;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.why-choose-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.services-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
    text-align: center;
}

.services-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Excellence Section (Keunggulan Eksklusif) */
.excellence-section {
    margin-bottom: 4rem;
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.excellence-card {
    background: var(--white);
    border: 0.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.excellence-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.excellence-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.2);
}

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

.excellence-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--secondary-color), #fb923c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.excellence-card:hover .excellence-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.excellence-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.excellence-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.excellence-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.excellence-link:hover {
    color: var(--secondary-color);
    gap: 0.75rem;
}

.excellence-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.excellence-link:hover::after {
    transform: translateX(4px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color), #ea580c);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
    line-height: 1.3;
    min-height: 2.5em;
}

.service-card:hover .service-name {
    color: var(--secondary-color);
}

.service-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    flex-grow: 1;
    min-height: 3.6em;
}

.service-recommendation {
    background: var(--bg-light);
    padding: 1.25rem 1.25rem 1.25rem 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    margin-top: auto;
    position: relative;
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
}

.service-recommendation strong {
    display: block;
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.service-recommendation span {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    text-align: left;
    word-wrap: break-word;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
    border-radius: 20px;
    color: var(--white);
}

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.btn-services-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-services-cta:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

/* Business Solution Section */
.business-section {
    background: var(--bg-light);
    position: relative;
    padding: 5rem 0;
}


.business-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: stretch;
}

.business-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2.75rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.business-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(249, 115, 22, 0.2);
}

.business-card:hover::before {
    opacity: 1;
}

.business-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.25);
    flex-shrink: 0;
}

.business-card:hover .business-icon {
    transform: scale(1.12) rotate(8deg);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.35);
}

.business-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 auto 1.25rem;
    line-height: 1.4;
    text-align: center;
    width: 100%;
    letter-spacing: -0.3px;
}

.business-card h3.animated-title {
    min-height: 2.8em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-card h3.animated-title .title-text {
    position: absolute;
    opacity: 0;
    transform: translateY(10px);
    animation: titleFade 6s infinite;
}

.business-card h3.animated-title .title-text-1 {
    animation-delay: 0s;
}

.business-card h3.animated-title .title-text-2 {
    animation-delay: 3s;
}

/* Animation for 3 texts */
.business-card h3.animated-title-3 {
    min-height: 2.8em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-card h3.animated-title-3 .title-text {
    position: absolute;
    opacity: 0;
    transform: translateY(10px);
    animation: titleFade3 9s infinite;
}

.business-card h3.animated-title-3 .title-text-3-1 {
    animation-delay: 0s;
}

.business-card h3.animated-title-3 .title-text-3-2 {
    animation-delay: 3s;
}

.business-card h3.animated-title-3 .title-text-3-3 {
    animation-delay: 6s;
}

@keyframes titleFade {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    10% {
        opacity: 1;
        transform: translateY(0);
    }
    40% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

@keyframes titleFade3 {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    8% {
        opacity: 1;
        transform: translateY(0);
    }
    30% {
        opacity: 1;
        transform: translateY(0);
    }
    33% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}


.business-card p {
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 2rem;
    font-size: 1rem;
    flex-grow: 1;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.btn-business {
    display: inline-block;
    padding: 1rem 2.25rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
    align-self: center;
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.25);
    letter-spacing: 0.3px;
    min-width: 180px;
    text-align: center;
}

.btn-business:hover {
    background: #1e40af;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.35);
}

.btn-business:active {
    transform: translateY(-1px);
}

/* Business Solution Hero Section */
.business-hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    color: var(--white);
    padding: 6rem 0 5rem;
    text-align: center;
    position: relative;
    margin-top: 78px;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.business-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.business-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 58, 138, 0.6);
    z-index: 1;
}

.business-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.business-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -0.5px;
}

.business-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
}

/* Business Pillars Section */
.business-pillars-section {
    background: var(--bg-light);
    padding: 6rem 0;
    position: relative;
}

.business-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: stretch;
}

.business-pillar-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.business-pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    background: var(--white);
    border-color: rgba(249, 115, 22, 0.3);
}

.business-pillar-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: rgba(249, 115, 22, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(249, 115, 22, 0.3);
}

.business-pillar-card:hover .business-pillar-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(249, 115, 22, 0.25);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.business-pillar-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.pillar-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    background: rgba(249, 115, 22, 0.2);
    color: var(--secondary-color);
    border-radius: 12px;
    margin-left: 0.5rem;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.business-pillar-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.7;
}

/* Industry Section */
.industry-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.industry-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.industry-tab {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.industry-tab:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-color);
}

.industry-tab.active {
    border-color: transparent;
    background: var(--white);
}

.industry-tab-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.industry-tab:hover .industry-tab-icon {
    transform: scale(1.1) rotate(5deg);
}

.industry-tab-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.industry-tab-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.6;
}

/* Business CTA Section */
.business-cta-section {
    background: var(--bg-light);
    padding: 4rem 0;
    text-align: center;
}

.business-cta-content {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-business-ghost {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--primary-color);
    min-width: 250px;
    text-align: center;
}

.btn-business-ghost:hover {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.btn-business-ghost:active {
    transform: translateY(-1px);
}

/* Contact Section */
/* Closing Statement Section */
.closing-section {
    position: relative;
    padding: 3rem 0;
    overflow: hidden;
    background: var(--white);
    min-height: 300px;
    display: flex;
    align-items: center;
}

.closing-background {
    display: none;
}

.closing-overlay {
    display: none;
}

.closing-content {
    position: relative;
    z-index: 2;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.5rem;
    width: 100%;
}

.closing-video-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 3rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 20px;
    background: transparent;
}

.closing-video {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.closing-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.85;
    color: var(--primary-color);
    letter-spacing: 0.2px;
    margin: 0;
    max-width: 100%;
    text-align: center;
}

.closing-text br {
    line-height: 1.6;
}

.closing-text .text-accent {
    background: linear-gradient(180deg, #dc2626 0%, #dc2626 48%, #ffffff 52%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.1);
    color: transparent;
    font-weight: 700;
    position: relative;
    display: inline-block;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0 0.2em;
    margin: 0 0.2em;
    vertical-align: baseline;
    line-height: 1.2;
    text-align: center;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.5));
}

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

@keyframes lineExpand {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}


/* AOS Animation Support */
[data-aos] {
    opacity: 0;
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

.contact-section {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Modern Contact Section */
.contact-section-modern {
    padding: 8rem 0;
    background: var(--white);
}

.contact-modern-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Column: Information */
.contact-modern-info {
    padding-right: 2rem;
}

.contact-modern-title {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #00267d;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.contact-modern-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 90%;
    letter-spacing: -0.01em;
}

.contact-title-underline {
    width: 90%;
    height: 3px;
    background: var(--secondary-color);
    margin-bottom: 2rem;
    border-radius: 2px;
}

.contact-section-label {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.contact-modern-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 4rem;
}

.contact-modern-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.contact-modern-icon {
    width: 40px;
    height: 40px;
    background: #0F172A;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-modern-icon.whatsapp {
    background: #25D366;
}

.contact-modern-icon.email {
    background: var(--secondary-color);
}

.contact-modern-item:hover .contact-modern-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-modern-details {
    flex: 1;
    display: flex;
    align-items: center;
}

.contact-modern-details p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

.contact-info-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #475569;
    line-height: 1.7;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Airline Partners Carousel Section */
.airline-partners-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
    position: relative;
    overflow: hidden;
}

.airline-partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(15, 23, 42, 0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.airline-partners-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

/* Styling untuk "Mitra Maskapai Terpercaya" sama seperti "Inovasi Distribusi Tanpa Batas" */
.airline-partners-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
    text-align: center;
}

.airline-partners-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 0;
}

.airline-partners-carousel-container {
    position: relative;
    z-index: 1;
}

.airline-partners-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.airline-partners-carousel-track {
    display: flex;
    gap: 2rem;
    animation: slideAirlinePartners 30s linear infinite;
    width: fit-content;
}

.airline-partner-card {
    flex-shrink: 0;
    width: 180px;
    height: 120px;
    background: var(--white);
    border-radius: 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.airline-partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.5s;
}

.airline-partner-card:hover::before {
    left: 100%;
}

.airline-partner-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.2);
    border-color: #F97316;
}

.airline-partner-logo-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.05rem;
    background: transparent;
    border-radius: 0;
    transition: all 0.3s ease;
}

.airline-partner-card:hover .airline-partner-logo-wrapper {
    background: transparent;
    transform: scale(1.05);
}

.airline-partner-logo {
    width: calc(100% - 0.2rem);
    height: calc(100% - 0.2rem);
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    filter: grayscale(20%);
    opacity: 0.9;
    transition: all 0.4s ease;
}

.airline-partner-card:hover .airline-partner-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.airline-partner-card:hover .airline-partner-name {
    color: #F97316;
}

@keyframes slideAirlinePartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}

.airline-partners-carousel-wrapper:hover .airline-partners-carousel-track {
    animation-play-state: loop;
}

/* Right Column: Visual */
.contact-modern-visual {
    position: relative;
}

.contact-visual-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 500px;
    max-height: 600px;
}

.contact-visual-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

}

.contact-visual-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Contact Form Section Modern */
.contact-form-section-modern {
    padding: 6rem 0;
    background: #F8FAFC;
}

.contact-form-modern-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0F172A;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group-modern label {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0F172A;
}

.form-group-modern input,
.form-group-modern textarea,
.form-group-modern select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #0F172A;
    background: var(--white);
    transition: all 0.3s ease;
}

.form-group-modern input::placeholder,
.form-group-modern textarea::placeholder {
    color: #94A3B8;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus,
.form-group-modern select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

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

.form-group-modern textarea {
    resize: vertical;
    min-height: 140px;
    font-family: 'Inter', sans-serif;
}

.btn-submit-modern {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color), #ea580c);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
    margin-top: 1rem;
}

.btn-submit-modern:hover {
    background: linear-gradient(135deg, #ea580c, var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.4);
}

.btn-submit-modern:hover i {
    transform: translateX(5px) translateY(-5px) rotate(15deg);
    transition: transform 0.3s ease;
}

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

/* Footer */
/* Modern Footer */
.footer-modern {
    background: var(--white);
    color: #333;
    padding: 4rem 0 0;
    font-family: 'Poppins', 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.footer-modern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.footer-modern-column {
    display: flex;
    flex-direction: column;
}

.footer-modern-title {
    font-family: 'Poppins', 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.875rem;
    font-family: 'Poppins', 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

.footer-contact-item i {
    color: #F97316;
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.footer-contact-item span {
    font-weight: 400;
}

.footer-social-media {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F5F5;
    border-radius: 8px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background: #F97316;
    color: var(--white);
    transform: translateY(-2px);
}

.footer-social-icon i {
    font-size: 1rem;
}

.footer-modern-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-modern-menu li {
    margin-bottom: 0.75rem;
}

.footer-modern-menu li a {
    color: #666;
    text-decoration: none;
    font-size: 0.875rem;
    font-family: 'Poppins', 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-modern-menu li a:hover {
    color: #F97316;
}

.footer-modern-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #E5E5E5;
    color: #666;
    font-size: 0.875rem;
    font-family: 'Poppins', 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer-modern {
        padding: 3rem 0 0;
    }

    .footer-modern-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-modern-title {
        margin-bottom: 1.25rem;
    }

    .footer-social-media {
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .footer-modern {
        padding: 2.5rem 0 0;
    }

    .footer-modern-grid {
        gap: 1.5rem;
    }
}

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

/* Responsive Design */

/* Large Desktop (1200px and above) - Default styles */

/* Desktop (1024px - 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
}

/* Tablet Landscape (992px - 1023px) */
@media (max-width: 1023px) {
    .hero-logo img {
        max-width: 200px;
    }

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

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

    .section-title {
        font-size: 2.2rem;
    }

    .services-main-title {
        font-size: 2rem;
    }

    .tracking-features-premium .section-title-premium {
        font-size: 2rem;
    }

    .services-subtitle {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-cta {
        padding: 1.5rem;
    }

    .services-cta p {
        font-size: 1rem;
    }

    .business-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .business-card {
        padding: 2rem;
    }

    .business-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .business-hero-title {
        font-size: 2.2rem;
    }

    .business-hero-subtitle {
        font-size: 1.1rem;
    }

    .business-bento-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .business-pillar-card {
        padding: 2.5rem 2rem;
    }

    .industry-tabs {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .btn-business-ghost {
        width: 100%;
        max-width: 400px;
    }

    .business-card h3 {
        font-size: 1.3rem;
    }

    .business-card h3.animated-title {
        min-height: 2.5em;
    }

    .business-card h3.animated-title-3 {
        min-height: 2.5em;
    }

    .business-card p {
        font-size: 0.95rem;
    }

    .closing-section {
        padding: 4rem 0;
        min-height: 350px;
    }

    .closing-video-wrapper {
        margin-bottom: 2.5rem;
        border-radius: 16px;
    }

    .closing-video {
        border-radius: 16px;
    }

    .closing-text {
        font-size: 1.4rem;
        letter-spacing: 0.4px;
        line-height: 1.85;
    }


    .values-grid,
    .success-grid,
    .info-cards,
    .features-grid,
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .excellence-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-choose-text .services-main-title {
        text-align: center;
    }

    .why-choose-description {
        text-align: center;
        font-size: 1rem;
    }

    .why-choose-animation {
        height: 300px;
        order: -1;
    }

    .why-choose-video {
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    }

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

    .business-hero-title {
        font-size: 2.2rem;
    }

    .business-hero-subtitle {
        font-size: 1.1rem;
    }

    .business-bento-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .business-pillar-card {
        padding: 2.5rem 2rem;
    }

    .industry-tabs {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .btn-business-ghost {
        width: 100%;
        max-width: 400px;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
    .nav-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }

    .logo {
        min-width: auto;
        flex-shrink: 0;
        order: 1;
    }

    .logo img {
        height: 55px;
    }

    .nav-menu {
        order: 2;
    }

    .hamburger {
        display: flex !important;
        order: 3;
        margin-left: auto;
        flex-shrink: 0;
        position: relative;
    }

    .nav-right {
        display: none;
        min-width: auto;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 78px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 1rem;
        z-index: 999;
        max-height: calc(100vh - 78px);
        overflow-y: auto;
        transform: none;
    }

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

    .hero {
        min-height: 80vh;
        padding: 3rem 0;
    }

    .hero-logo img {
        max-width: 160px;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .btn-explore {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .quick-actions {
        flex-direction: column;
        gap: 0;
        border-radius: 15px;
    }

    .quick-action-card {
        padding: 1.5rem;
    }

    .quick-action-card:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .action-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .action-title {
        font-size: 1.1rem;
    }

    .action-search-icon {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

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

    .tracking-section,
    .tariff-section {
        max-width: 100%;
        margin: 1.5rem auto;
        padding: 1.5rem;
    }

    .tracking-input-group {
        flex-direction: column;
    }

    .btn-track {
        width: 100%;
        justify-content: center;
    }

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

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .company-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .company-image-placeholder {
        min-height: 300px;
    }

    .company-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .stat-item {
        flex: 1;
        min-width: 150px;
    }

    .services-main-title {
        font-size: 1.8rem;
    }

    .tracking-features-premium .section-title-premium {
        font-size: 1.8rem;
    }

    .services-subtitle {
        font-size: 1rem;
    }

    .service-card {
        padding: 2rem;
    }

    .service-name {
        font-size: 1.3rem;
    }

    .services-cta {
        padding: 1.5rem;
    }

    .services-cta p {
        font-size: 0.95rem;
    }

    .btn-services-cta {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

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

    .business-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .business-card {
        padding: 2rem;
    }

    .business-icon {
        width: 75px;
        height: 75px;
        font-size: 1.8rem;
    }

    .business-card h3 {
        font-size: 1.2rem;
    }

    .business-card h3.animated-title {
        min-height: 2.3em;
    }

    .business-card h3.animated-title-3 {
        min-height: 2.3em;
    }

    .business-card p {
        font-size: 0.9rem;
    }

    .btn-business {
        padding: 0.85rem 1.8rem;
        font-size: 0.9rem;
    }

    .values-grid,
    .success-grid,
    .info-cards,
    .features-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .excellence-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .excellence-card {
        padding: 2rem;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-choose-text .services-main-title {
        text-align: center;
        font-size: 1.8rem;
    }

    .why-choose-description {
        text-align: center;
        font-size: 0.95rem;
    }

    .why-choose-animation {
        height: 250px;
        order: -1;
    }

    .why-choose-video {
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .excellence-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .excellence-title {
        font-size: 1.15rem;
    }

    .excellence-description {
        font-size: 0.9rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .closing-section {
        padding: 3.5rem 0;
        min-height: 350px;
    }

    .closing-video-wrapper {
        margin-bottom: 2rem;
        border-radius: 12px;
    }

    .closing-video {
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    }

    .closing-text {
        font-size: 1.2rem;
        letter-spacing: 0.15px;
        line-height: 1.75;
    }

    .closing-text .text-accent {
        letter-spacing: 0.06em;
        padding: 0 0.08em;
        margin: 0 0.08em;
    }

    .closing-line {
        margin-bottom: 2rem;
    }

    .btn-closing {
        padding: 0.8rem 1.75rem;
        font-size: 0.9rem;
    }

    .page-header {
        padding: 3rem 0;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .comparison-table-wrapper {
        overflow-x: auto;
    }

    .comparison-table {
        min-width: 600px;
    }

    .vision-mission,
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vm-item h3,
    .vision-mission-grid .vm-item h3 {
        font-size: 1.3rem;
    }

    .vision-mission-grid .vm-item {
        padding: 2rem;
    }

    .vm-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .company-text h2 {
        font-size: 1.8rem;
    }

    .timeline::before {
        left: 50px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 4rem;
    }

    .timeline-year {
        position: absolute;
        left: 0;
        width: 80px;
        height: 80px;
        margin: 0;
    }

    .timeline-content {
        margin-left: 0;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
    }

    .timeline-content p {
        font-size: 0.95rem;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .stats-section .company-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .status-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .about-us-section {
        padding: 3rem 0;
    }

    .about-main-title {
        font-size: 2rem;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats-card {
        padding: 1.5rem;
    }

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

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
    .nav-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }

    .logo {
        order: 1;
        flex-shrink: 0;
    }

    .logo img {
        height: 50px;
    }

    .hamburger {
        display: flex !important;
        order: 3;
        margin-left: auto;
        flex-shrink: 0;
    }

    .container {
        padding: 0 20px;
    }

    .hero {
        min-height: 70vh;
        padding: 2rem 0;
    }

    .hero-logo img {
        max-width: 160px;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .btn-explore {
        padding: 0.85rem 1.8rem;
        font-size: 0.9rem;
    }

    .quick-actions {
        flex-direction: column;
        gap: 0;
        border-radius: 12px;
    }

    .quick-action-card {
        padding: 1.25rem;
        gap: 1rem;
    }

    .quick-action-card:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .action-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    .action-title {
        font-size: 1rem;
    }

    .action-search-icon {
        width: 26px;
        height: 26px;
        font-size: 0.95rem;
    }

    .action-search {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .tracking-section,
    .tariff-section {
        padding: 1.5rem;
    }

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

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .page-header {
        padding: 2.5rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .company-text h2 {
        font-size: 1.6rem;
    }

    .vm-item h3 {
        font-size: 1.4rem;
    }

    .timeline-content h3 {
        font-size: 1.15rem;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .stats-section .company-stats {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .services-main-title {
        font-size: 1.6rem;
    }

    .tracking-features-premium .section-title-premium {
        font-size: 1.6rem;
    }

    .services-subtitle {
        font-size: 0.95rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .service-name {
        font-size: 1.2rem;
    }

    .service-description {
        font-size: 0.95rem;
    }

    .service-recommendation {
        padding: 1rem 1rem 1rem 1.25rem;
    }

    .service-recommendation strong {
        font-size: 0.9rem;
        margin-bottom: 0.65rem;
    }

    .service-recommendation span {
        font-size: 0.85rem;
        line-height: 1.65;
    }

    .services-cta {
        padding: 1.25rem;
    }

    .services-cta p {
        font-size: 0.9rem;
    }

    .btn-services-cta {
        padding: 0.85rem 1.8rem;
        font-size: 0.9rem;
    }

    .business-card,
    .value-card,
    .success-card,
    .info-card,
    .feature-card,
    .location-card {
        padding: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .company-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        width: 100%;
    }

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

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin: 0 auto 1rem;
    }
}

/* Mobile Portrait (480px - 575px) */
@media (max-width: 575px) {
    .nav-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }

    .logo {
        order: 1;
        flex-shrink: 0;
    }

    .logo img {
        height: 50px;
    }

    .hamburger {
        display: flex !important;
        order: 3;
        margin-left: auto;
        flex-shrink: 0;
    }

    .hero {
        min-height: 60vh;
        padding: 1.5rem 0;
    }

    .hero-logo img {
        max-width: 130px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .btn-explore {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

    .quick-actions {
        flex-direction: column;
        gap: 0;
        border-radius: 10px;
    }

    .quick-action-card {
        padding: 1rem;
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .quick-action-card:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .action-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .action-title {
        font-size: 0.95rem;
    }

    .action-search-icon {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }

    .action-input,
    .action-input-small,
    .action-select {
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }

    .action-search {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .tariff-input-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .tracking-section,
    .tariff-section {
        padding: 1rem;
        margin: 1rem auto;
    }

    .tracking-section h2,
    .tariff-section h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .page-header {
        padding: 2rem 0;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

    .services-main-title {
        font-size: 1.5rem;
    }

    .tracking-features-premium .section-title-premium {
        font-size: 1.5rem;
    }

    .services-subtitle {
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .service-name {
        font-size: 1.1rem;
    }

    .service-description {
        font-size: 0.9rem;
    }

    .service-recommendation {
        padding: 0.95rem 0.95rem 0.95rem 1.15rem;
    }

    .service-recommendation strong {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }

    .service-recommendation span {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .services-cta {
        padding: 1rem;
    }

    .services-cta p {
        font-size: 0.85rem;
    }

    .btn-services-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

    .business-card,
    .value-card,
    .success-card,
    .info-card,
    .feature-card,
    .location-card {
        padding: 1.25rem;
    }

    .service-icon,
    .business-icon,
    .value-icon,
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .business-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .btn-track,
    .btn-submit,
    .btn-business,
    .btn-service,
    .btn-info {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .timeline-year {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .timeline-item {
        padding-left: 3rem;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }

    .vm-item h3 {
        font-size: 1.2rem;
    }

    .company-text h2 {
        font-size: 1.5rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .stats-section .company-stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.25rem;
    }

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

    .stat-label {
        font-size: 0.85rem;
    }

    section {
        padding: 2rem 0;
    }

    .company-section,
    .history-section,
    .values-section,
    .stats-section,
    .vision-mission-section {
        padding: 2.5rem 0;
    }

    .status-guide {
        padding: 1.5rem;
    }
}

/* Small Mobile (320px - 479px) */
@media (max-width: 479px) {
    .nav-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }

    .logo {
        order: 1;
        flex-shrink: 0;
    }

    .hamburger {
        display: flex !important;
        order: 3;
        margin-left: auto;
        flex-shrink: 0;
    }

    .logo img {
        height: 48px;
    }

    .hero {
        min-height: 50vh;
        padding: 1rem 0;
    }

    .hero-logo img {
        max-width: 100px;
    }

    .hero-logo {
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .btn-explore {
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
    }

    .quick-actions {
        flex-direction: column;
        gap: 0;
        border-radius: 8px;
    }

    .quick-action-card {
        padding: 0.9rem;
        gap: 0.6rem;
    }

    .quick-action-card:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .action-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .action-title {
        font-size: 0.9rem;
    }

    .action-search-icon {
        width: 22px;
        height: 22px;
        font-size: 0.85rem;
    }

    .action-input,
    .action-input-small,
    .action-select {
        font-size: 0.8rem;
        padding: 0.5rem 0.7rem;
    }

    .action-search {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .tracking-section,
    .tariff-section {
        padding: 0.75rem;
    }

    .tracking-section h2,
    .tariff-section h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .page-header p {
        font-size: 0.85rem;
    }

    .service-card,
    .business-card,
    .value-card,
    .success-card,
    .info-card,
    .feature-card,
    .location-card {
        padding: 1rem;
    }

    .service-name {
        font-size: 1.1rem;
    }

    .business-card h3,
    .value-card h3 {
        font-size: 1.2rem;
    }

    .form-group input,
    .form-group select,
    .tracking-input,
    .contact-form input,
    .contact-form textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .btn-track,
    .btn-submit,
    .btn-business,
    .btn-service,
    .btn-info {
        padding: 0.7rem 1.25rem;
        font-size: 0.85rem;
    }

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

    .stat-label {
        font-size: 0.85rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        padding-left: 2.5rem;
    }

    .timeline-year {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .timeline-content h3 {
        font-size: 1rem;
    }

    .timeline-content p {
        font-size: 0.85rem;
    }

    .vm-item h3 {
        font-size: 1.1rem;
    }

    .vm-item ul li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }

    .company-text h2 {
        font-size: 1.3rem;
    }

    .value-card {
        padding: 1.25rem;
    }

    .value-card h3 {
        font-size: 1.1rem;
    }

    .value-card p {
        font-size: 0.9rem;
    }

    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

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

    .stat-item {
        padding: 1rem 0.5rem;
    }

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

    .stat-label {
        font-size: 0.8rem;
    }

    .company-section,
    .history-section,
    .values-section,
    .stats-section,
    .vision-mission-section {
        padding: 2rem 0;
    }

    .nav-menu {
        top: 78px;
    }

    .container {
        padding: 0 15px;
    }

    .company-section,
    .history-section,
    .values-section,
    .stats-section {
        padding: 2rem 0;
    }
}

/* Extra Small Mobile (max-width: 319px) */
@media (max-width: 319px) {
    .nav-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }

    .logo {
        order: 1;
        flex-shrink: 0;
    }

    .logo img {
        height: 45px;
    }

    .hamburger {
        display: flex !important;
        order: 3;
        margin-left: auto;
        flex-shrink: 0;
        min-width: 40px;
        min-height: 40px;
    }

    .hamburger span {
        width: 22px;
        height: 2.5px;
    }

    .hero-logo img {
        max-width: 85px;
    }

    .hero-logo {
        margin-bottom: 1rem;
    }

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

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

    .section-title {
        font-size: 1.1rem;
    }

    .page-header h1 {
        font-size: 1.3rem;
    }

    .tracking-section,
    .tariff-section {
        padding: 0.5rem;
    }

    .timeline::before {
        left: 25px;
    }

    .timeline-item {
        padding-left: 2rem;
    }

    .timeline-year {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }

    .timeline-content h3 {
        font-size: 0.95rem;
    }

    .timeline-content p {
        font-size: 0.8rem;
    }

    .vm-item h3 {
        font-size: 1rem;
    }

    .vm-item ul li {
        font-size: 0.85rem;
    }

    .company-text h2 {
        font-size: 1.2rem;
    }

    .value-card {
        padding: 1rem;
    }

    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .stats-section .company-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .stat-label {
        font-size: 0.75rem;
    }

    .company-section,
    .history-section,
    .values-section,
    .stats-section,
    .vision-mission-section {
        padding: 1.5rem 0;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header .services-main-title {
    color: var(--white);
}

.page-header .services-subtitle {
    color: rgba(255, 255, 255, 0.95);
}

/* Active Nav Link */
.nav-link.active {
    color: var(--secondary-color);
}

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


/* Vision & Mission */
.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.vm-item h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vm-item ul {
    list-style: none;
    padding-left: 0;
}

.vm-item ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.vm-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Vision & Mission Section (New) */
.vision-mission-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.vision-mission-content {
    margin-top: 3rem;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.vision-mission-grid .vm-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vision-mission-grid .vm-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.vision-mission-grid .vm-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.vision-mission-grid .vm-item:hover::before {
    transform: scaleX(1);
}

.vm-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.vision-mission-grid .vm-item h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: block;
}

.vision-mission-grid .vm-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
}

.vision-mission-grid .vm-item ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.vision-mission-grid .vm-item ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--secondary-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    margin: 0 2rem;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.value-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

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

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

/* Service Features */
.service-features {
    margin: 1.5rem 0;
    text-align: left;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features ul li i {
    color: var(--secondary-color);
}

.btn-service {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-service:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Comparison Table */
.comparison-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table thead {
    background: var(--primary-color);
    color: var(--white);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
    font-weight: 600;
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

.text-success {
    color: #10b981;
}

/* Process Steps */
.process-section {
    background: var(--white);
    padding: 5rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), #ea580c);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-item p {
    color: var(--text-light);
}

/* Success Stories */
.success-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.success-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
}

.success-quote {
    font-size: 3rem;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.success-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.success-author {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.success-author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.success-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Business Benefits */
.business-benefits {
    margin: 1.5rem 0;
    text-align: left;
}

.business-benefits ul {
    list-style: none;
    padding: 0;
}

.business-benefits ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.business-benefits ul li i {
    color: var(--secondary-color);
}

/* Tariff Page Section */
.tariff-page-section {
    padding: 5rem 0;
}

.tariff-page-section .tariff-section {
    max-width: 100%;
    margin: 0;
}

.tariff-info-section {
    margin-top: 5rem;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
}

.info-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.btn-info {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-info:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Tracking Page Section */
.tracking-page-section {
    padding: 5rem 0;
}

.tracking-page-section .tracking-section {
    max-width: 100%;
    margin: 0;
}

.tracking-subtitle {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: center;
}

.tracking-features {
    margin-top: 5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

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

.feature-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-light);
}

/* Status Guide */
.status-guide {
    margin-top: 5rem;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
}

.status-list {
    margin-top: 2rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.status-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.status-icon.pending {
    background: #f59e0b;
}

.status-icon.in-transit {
    background: #3b82f6;
}

.status-icon.in-warehouse {
    background: #8b5cf6;
}

.status-icon.out-delivery {
    background: #10b981;
}

.status-icon.delivered {
    background: #059669;
}

.status-info h3 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.status-info p {
    color: var(--text-light);
    margin: 0;
}

/* Locations Section */
.locations-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.location-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

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

.location-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

/* History Section */
.history-section {
    background: var(--white);
    padding: 5rem 0;
}

/* Company Section Responsive Improvements */
@media (max-width: 991px) {
    .company-section {
        padding: 3rem 0;
    }

    .history-section {
        padding: 3rem 0;
    }

    .values-section {
        padding: 3rem 0;
    }

    .stats-section {
        padding: 3rem 0;
    }
}

/* Video Background Responsive */
@media (max-width: 768px) {
    .hero-video {
        object-position: center;
    }
}

@media (max-width: 480px) {
    .hero-video {
        object-position: center;
    }
}

/* Landscape orientation adjustments */
@media (max-width: 991px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }
    
    .page-header {
        padding: 2rem 0;
    }

    .business-hero-section {
        padding: 2.5rem 0 2rem;
    }

    .business-hero-title {
        font-size: 1.4rem;
    }

    .business-hero-subtitle {
        font-size: 0.9rem;
    }

    .business-pillars-section {
        padding: 2.5rem 0;
    }

    .business-pillar-card {
        padding: 1.5rem 1rem;
    }

    .business-pillar-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .business-pillar-title {
        font-size: 1.1rem;
    }

    .pillar-badge {
        font-size: 0.65rem;
        padding: 0.15rem 0.5rem;
        margin-left: 0.3rem;
    }

    .business-pillar-description {
        font-size: 0.85rem;
    }

    .industry-section {
        padding: 2.5rem 0;
    }

    .industry-tabs {
        gap: 1.25rem;
    }

    .industry-tab {
        padding: 1.5rem 1rem;
    }

    .industry-tab-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .industry-tab-title {
        font-size: 0.95rem;
    }

    .industry-tab-description {
        font-size: 0.8rem;
    }

    .business-cta-section {
        padding: 2rem 0;
    }

    .btn-business-ghost {
        padding: 0.95rem 1.75rem;
        font-size: 0.9rem;
        min-width: 180px;
    }
}

/* Premium Tariff Page Styles */

/* Tariff Hero Section */
.tariff-hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 78px;
    overflow: hidden;
}

.tariff-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-4.0.3&auto=format&fit=crop&w=2074&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.tariff-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(15, 23, 42, 0.75) 100%);
    z-index: 1;
}

.tariff-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.tariff-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.tariff-hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Glassmorphism Calculator Card */
.tariff-calculator-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-top: 2rem;
}

.tariff-form .form-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.tariff-form .form-group {
    display: flex;
    flex-direction: column;
}

.tariff-form .form-group label {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tariff-form .form-group label i {
    color: var(--secondary-color);
}

.tariff-form .form-group input,
.tariff-form .form-group select {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.tariff-form .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.tariff-form .form-group input:focus,
.tariff-form .form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

/* Dimension Toggle */
.dimension-toggle-group {
    display: flex;
    align-items: flex-end;
}

.dimension-toggle-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    margin-bottom: 0;
}

.dimension-toggle {
    display: none;
}

.toggle-slider {
    position: relative;
    width: 60px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--white);
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.dimension-toggle:checked + .toggle-slider {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.dimension-toggle:checked + .toggle-slider::before {
    transform: translateX(30px);
}

.toggle-text {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Dimension Fields */
.dimension-fields {
    grid-column: 1 / -1;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.dimension-fields .form-row {
    grid-template-columns: repeat(3, 1fr);
}

/* Premium CTA Button */
.btn-check-tariff-premium {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.btn-check-tariff-premium:hover {
    background: #ea580c;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.4);
}

.btn-check-tariff-premium:hover i {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

/* Tariff Results Section */
.tariff-results-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.tariff-comparison-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.tariff-comparison-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.tariff-comparison-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.tariff-comparison-card.featured-card {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.tariff-comparison-card.featured-card:hover {
    transform: scale(1.08) translateY(-8px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.comparison-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.comparison-card-header i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.comparison-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.card-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.card-badge.economy {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.card-badge.express {
    background: rgba(249, 115, 22, 0.1);
    color: var(--secondary-color);
}

.card-badge.heavy {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.comparison-card-price {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--bg-light);
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

.comparison-card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.comparison-card-features li {
    padding: 0.75rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.comparison-card-features li i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.btn-select-service.featured-btn {
    background: var(--secondary-color);
}

.btn-select-service.featured-btn:hover {
    background: #ea580c;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.loading-tariff {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    font-size: 1.2rem;
}

/* Trust Signals Section */
.trust-signals-section {
    padding: 4rem 0;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-signals-label {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-logo-item {
    width: 120px;
    height: 60px;
}

.trust-logo-placeholder {
    width: 100%;
    height: 100%;
    background: #e5e7eb;
    border-radius: 8px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.trust-logo-item:hover .trust-logo-placeholder {
    opacity: 0.8;
    filter: grayscale(80%);
}

/* Premium Info Cards */
.tariff-info-premium-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

/* Styling untuk "Informasi Tarif" sama seperti "Inovasi Distribusi Tanpa Batas" */
.tariff-info-premium-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
    text-align: center;
    position: relative;
}

.tariff-info-premium-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.info-cards-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.info-card-premium {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.info-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.info-card-premium.highlight-card {
    border: 2px solid var(--secondary-color);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.02) 0%, rgba(249, 115, 22, 0.05) 100%);
}

.info-icon-premium {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.25);
}

.info-icon-premium.highlight-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ea580c 100%);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.info-card-premium h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.info-card-premium ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 1.5rem;
}

.info-card-premium ul li {
    padding: 0.75rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-card-premium ul li i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.info-card-premium p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.btn-contact-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #25d366;
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-contact-premium:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

/* Responsive Design */
@media (max-width: 991px) {
    .tariff-hero-title {
        font-size: 2.5rem;
    }

    .tariff-hero-subtitle {
        font-size: 1.1rem;
    }

    .tariff-calculator-card {
        padding: 2rem;
    }

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

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

    .tariff-comparison-cards {
        grid-template-columns: 1fr;
    }

    .info-cards-premium {
        grid-template-columns: 1fr;
    }

    .trust-logos {
        gap: 2rem;
    }
}

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

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

    .tariff-hero-subtitle {
        font-size: 1rem;
    }

    .tariff-calculator-card {
        padding: 1.5rem;
    }

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

    .dimension-toggle-group {
        grid-column: 1 / -1;
    }
}

/* Premium Tracking Page Styles */

/* Tracking Hero Section */
.tracking-hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 78px;
    overflow: hidden;
}

.tracking-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-4.0.3&auto=format&fit=crop&w=2074&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.tracking-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 58, 138, 0.75) 100%);
    z-index: 1;
}

.tracking-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.tracking-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.tracking-hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Glassmorphism Tracking Form */
.tracking-form-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 1000px;
    margin: 0 auto;
}

.tracking-form-title {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.tracking-form-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Airline Tracking Cards */
.airline-tracking-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 100%;
    justify-items: center;
}

.airline-tracking-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 0;
    text-align: center;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    aspect-ratio: 1;
    min-height: 150px;
}

.airline-tracking-card:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--secondary-color);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.3);
}

.airline-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2rem;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.airline-tracking-card:hover .airline-logo-img {
    opacity: 1;
    transform: scale(1.1);
}

/* Premium Tracking Features */
.tracking-features-premium {
    padding: 5rem 0;
    background: var(--bg-light);
}

/* Styling untuk "Fitur Tracking" sama seperti "Inovasi Distribusi Tanpa Batas" */
.tracking-features-premium .section-title-premium {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 3rem;
    line-height: 1.3;
    text-align: center;
    position: relative;
}

.tracking-features-premium .section-title-premium::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-title-premium {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title-premium::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.features-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card-premium {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid transparent;
}

.feature-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(249, 115, 22, 0.2);
}

.feature-icon-premium {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.25);
    transition: all 0.3s ease;
}

.feature-card-premium:hover .feature-icon-premium {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.35);
}

.feature-card-premium h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card-premium p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}


/* Responsive Design */
@media (max-width: 991px) {
    .tracking-hero-title {
        font-size: 2.5rem;
    }

    .tracking-hero-subtitle {
        font-size: 1.1rem;
    }

    .tracking-form-glass {
        padding: 2rem;
    }

    .airline-tracking-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
        justify-items: center;
    }


    .airline-tracking-card {
        min-height: 120px;
    }

    .airline-logo-img {
        padding: 1.5rem;
    }

    .result-detail-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .result-map-placeholder {
        height: 250px;
    }

    .features-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .airline-logos-grid {
        gap: 2rem;
    }

    .status-timeline {
        padding-left: 2rem;
    }

    .status-timeline::before {
        left: 30px;
    }

    .timeline-icon-premium {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

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

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

    .tracking-hero-subtitle {
        font-size: 1rem;
    }

    .tracking-form-glass {
        padding: 1.5rem;
    }

    .airline-tracking-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        justify-items: center;
    }

    .airline-tracking-card {
        min-height: 100px;
    }

    .airline-logo-img {
        padding: 1rem;
    }

    .result-map-placeholder {
        height: 200px;
    }

    .stepper-steps {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .stepper-step {
        min-width: 80px;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step-label {
        font-size: 0.75rem;
    }

    .section-title-premium {
        font-size: 2rem;
    }

    .tracking-features-premium .section-title-premium {
        font-size: 2rem;
    }

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

    .airline-logos-grid {
        gap: 1.5rem;
    }

    .airline-logo-item {
        width: 120px;
        height: 70px;
    }

    .status-timeline {
        padding-left: 1.5rem;
    }

    .status-timeline::before {
        left: 25px;
    }

    .timeline-item-premium {
        gap: 1.5rem;
    }

    .timeline-icon-premium {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .timeline-content-premium h3 {
        font-size: 1.3rem;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hero-video,
    .hero-overlay,
    .footer,
    .btn-track,
    .btn-submit {
        display: none;
    }
    
    .hero {
        background: var(--white);
        color: var(--text-dark);
        min-height: auto;
    }
}

/* Live Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'Poppins', sans-serif;
}

.chat-button {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}


.chat-button:hover {
    transform: translateY(-3px);
}

.chat-button:hover .chat-avatar {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.chat-avatar {
    width: 120px;
    height: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.chat-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid var(--white);
    animation: bounce 1s infinite;
    z-index: 10;
}


@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.chat-window {
    position: absolute;
    bottom: 140px;
    right: 0;
    width: 380px;
    height: 500px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
}

.chat-window.active {
    display: flex;
}

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

.chat-header {
    background: linear-gradient(135deg, var(--secondary-color), #ea580c);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-header-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.chat-header-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    display: block;
}

.chat-header-info h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.chat-status {
    font-size: 0.85rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chat-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.chat-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.chat-message {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    animation: fadeIn 0.3s ease-out;
}

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

.chat-message.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--secondary-color), #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    display: block;
}

.user-message .message-avatar {
    background: var(--primary-color);
}

.message-content {
    max-width: 75%;
    background: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.user-message .message-content {
    background: linear-gradient(135deg, var(--secondary-color), #ea580c);
    color: var(--white);
}

.message-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.user-message .message-content p {
    color: var(--white);
}

.message-time {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    opacity: 0.7;
}

.user-message .message-time {
    color: rgba(255, 255, 255, 0.8);
}

.chat-input-container {
    padding: 1rem 1.5rem;
    background: var(--white);
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.chat-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.chat-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.chat-send {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--secondary-color), #ea580c);
    border: none;
    border-radius: 12px;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.chat-send:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.chat-send:active {
    transform: scale(0.95);
}

/* Responsive Chat Widget */
@media (max-width: 768px) {
    .chat-widget {
        bottom: 15px;
        right: 15px;
    }

    .chat-avatar {
        width: 100px;
        height: 100px;
    }

    .chat-window {
        width: calc(100vw - 30px);
        height: calc(100vh - 100px);
        max-height: 500px;
        bottom: 120px;
        right: 15px;
        border-radius: 20px 20px 0 0;
    }

    .chat-messages {
        padding: 1rem;
    }

    .message-content {
        max-width: 85%;
    }
}

@media (max-width: 480px) {
    .chat-window {
        width: 100vw;
        height: calc(100vh - 80px);
        right: 0;
        border-radius: 20px 20px 0 0;
    }
}

/* Responsive Design for Modern Contact Section */
@media (max-width: 991px) {
    .contact-modern-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-modern-info {
        padding-right: 0;
    }

    .contact-modern-title {
        font-size: 2.5rem;
    }

    .contact-modern-subtitle {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }

    .contact-title-underline {
        margin-bottom: 1.75rem;
    }

    .contact-section-label {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }

    .contact-visual-image {
        min-height: 400px;
        max-height: 500px;
    }
    
    .contact-visual-image img,
    .contact-visual-image video,
    .contact-visual-video {
        min-height: 400px;
        max-height: 500px;
    }

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

    .contact-form-modern-wrapper {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section-modern {
        padding: 4rem 0;
    }

    .contact-modern-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .contact-modern-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .contact-title-underline {
        margin-bottom: 1.5rem;
    }

    .contact-section-label {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .contact-info-text {
        font-size: 0.95rem;
    }

    .contact-modern-list {
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .contact-modern-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .contact-visual-image {
        min-height: 300px;
        max-height: 400px;
    }
    
    .contact-visual-image img,
    .contact-visual-image video,
    .contact-visual-video {
        min-height: 300px;
        max-height: 400px;
    }


    .contact-form-section-modern {
        padding: 4rem 0;
    }

    .contact-form-modern-wrapper {
        padding: 2.5rem 1.5rem;
    }

    .form-section-title {
        font-size: 2rem;
    }

}

/* Responsive for Airline Partners Carousel */
@media (max-width: 768px) {
    .airline-partners-section {
        padding: 4rem 0;
    }

    .airline-partners-title {
        font-size: 2rem;
    }

    .airline-partners-subtitle {
        font-size: 1.1rem;
    }

    .airline-partner-card {
        width: 150px;
        height: 100px;
        padding: 0;
    }

    .airline-partner-logo-wrapper {
        height: 100%;
        padding: 0.25rem;
    }
    
    .airline-partner-logo {
        width: calc(100% - 0.5rem);
        height: calc(100% - 0.5rem);
    }

    .airline-partners-carousel-track {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .airline-partners-section {
        padding: 3rem 0;
    }

    .airline-partners-title {
        font-size: 1.8rem;
    }

    .airline-partners-subtitle {
        font-size: 1rem;
    }

    .airline-partner-card {
        width: 130px;
        height: 90px;
        padding: 0;
    }

    .airline-partner-logo-wrapper {
        height: 100%;
        padding: 0.25rem;
    }
    
    .airline-partner-logo {
        width: calc(100% - 0.5rem);
        height: calc(100% - 0.5rem);
    }

    .airline-partners-carousel-track {
        gap: 1rem;
    }

    .contact-modern-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .contact-modern-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .contact-title-underline {
        margin-bottom: 1.25rem;
    }

    .contact-section-label {
        font-size: 1.1rem;
        margin-bottom: 1.75rem;
    }

    .contact-info-text {
        font-size: 0.9rem;
    }


    .contact-form-modern-wrapper {
        padding: 2rem 1.25rem;
    }
}

