/* AZZAHRA TRANSPORTAMA - Styles */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --primary: #7c3aed;
    --primary-dark: #6d28d9;
    --primary-light: #8b5cf6;
    --purple-50: #f5f3ff;
    --purple-100: #ede9fe;
    --purple-200: #ddd6fe;
    --purple-400: #a78bfa;
    --purple-600: #7c3aed;
    --purple-700: #6d28d9;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: white;
    color: var(--gray-900);
    line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.logo-text span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a.btn-primary {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
}

.nav-links a.btn-primary:hover {
    background: var(--primary-dark);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--gray-700);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    padding: 1rem 1.5rem;
    background: white;
    border-top: 1px solid var(--gray-200);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 0;
    color: var(--gray-700);
    text-decoration: none;
    border-bottom: 1px solid var(--gray-100);
}

.mobile-menu a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--purple-50) 0%, white 50%, var(--purple-50) 100%);
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10rem;
    right: -10rem;
    width: 20rem;
    height: 20rem;
    background: var(--purple-200);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(60px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10rem;
    left: -10rem;
    width: 20rem;
    height: 20rem;
    background: var(--purple-100);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(60px);
}

/* Hero Background Slider */
.hero-background-slider {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 280px;
    max-height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--purple-50) 0%, white 50%, var(--purple-50) 100%);
}

.hero-background-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background-slider .slide.active {
    opacity: 1;
}

.hero-background-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-color: #f3f4f6;
}

/* Dark overlay on background */
.hero-background-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.15));
    pointer-events: none;
    z-index: 1;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 0;
}

.slider-dots .dot:hover,
.slider-dots .dot.active {
    background: white;
    transform: scale(1.2);
    width: 12px;
    height: 12px;
}

/* Touch-friendly slider arrows (hidden by default, shown on mobile) */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.slider-arrow.prev {
    left: 10px;
}

.slider-arrow.next {
    right: 10px;
}

/* Show arrows on mobile/tablet */
@media (max-width: 768px) {
    .slider-arrow {
        display: flex;
    }
}

/* Hero Content */
.hero-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: black;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0);
}

.badge {
    display: inline-block;
    background: var(--purple-100);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--purple-200);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: var(--purple-50);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-600);
}

/* Sections */
section {
    padding: 6rem 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-title h2 span {
    color: var(--primary);
}

.section-title p {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: white;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.service-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    transition: all 0.3s;
    border: 1px solid var(--gray-100);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
}

/* Service Image Styles */
.service-image {
    width: 100%;
    height: 200px;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    padding: 0.5rem 0;
}

.service-card li svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #22c55e;
}

/* About Section */
.about {
    background: var(--gray-50);
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about-image .badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--primary);
    color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
}

.about-image .badge .number {
    font-size: 2.5rem;
    font-weight: 700;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.about-text h2 span {
    color: var(--primary);
}

.about-text p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--purple-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

/* Testimonials */
.testimonials {
    background: white;
}

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--gray-50);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #fbbf24;
    fill: currentColor;
}

.testimonial-content {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-author img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info .name {
    font-weight: 600;
    color: var(--gray-900);
}

.testimonial-author-info .position {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Contact Section */
.contact {
    background: white;
}

.contact-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: var(--gray-50);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 1rem;
    padding: 2.5rem;
    color: white;
}

.contact-info-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-info-content .label {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info-content p {
    opacity: 0.9;
}

/* Footer */
footer {
    background: var(--gray-900);
    color: white;
    padding: 5rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-300);
}

.footer-contact-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary-light);
    margin-top: 0.25rem;
}

.footer-links h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    padding: 0.25rem 0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 3rem;
    height: 3rem;
    background: var(--gray-800);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-400);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 5rem 1.5rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-header h1 span {
    opacity: 0.8;
}

.page-header p {
    opacity: 0.9;
    font-size: 1.25rem;
}

/* Why Choose Us */
.why-us {
    background: var(--gray-50);
}

.why-us-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-us-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.why-us-icon {
    width: 5rem;
    height: 5rem;
    background: var(--purple-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-us-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary);
}

.why-us-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.why-us-card p {
    color: var(--gray-600);
}

/* Tracking Section */
.tracking-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.tracking-form {
    background: var(--gray-50);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.tracking-form h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    text-align: center;
}

.demo-buttons {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--purple-50);
    border-radius: 0.5rem;
}

.demo-buttons p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.demo-btn {
    background: white;
    border: 1px solid var(--gray-300);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    cursor: pointer;
    margin-right: 0.5rem;
    margin-bottom: 0.25rem;
    transition: all 0.3s;
}

.demo-btn:hover {
    background: var(--purple-100);
    border-color: var(--primary);
}

.tracking-result {
    background: var(--gray-50);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.tracking-status {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 0.75rem;
    padding: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tracking-status .status-label {
    opacity: 0.8;
    font-size: 0.875rem;
}

.tracking-status .status-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.tracking-route {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tracking-route-item {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
}

.tracking-route-item .label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.tracking-route-item .value {
    font-weight: 600;
    color: var(--gray-900);
}

.tracking-history h4 {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.history-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
}

.history-dot {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: var(--primary);
    margin-top: 0.25rem;
}

.history-dot.inactive {
    background: var(--gray-300);
}

.history-line {
    width: 2px;
    background: var(--gray-200);
    margin-left: 0.375rem;
}

.history-content .status {
    font-weight: 600;
    color: var(--gray-900);
}

.history-content .location {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.history-content .date {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* Calculator */
.calculator-result {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #dcfce7;
    border: 1px solid #86efac;
    border-radius: 0.75rem;
}

.calculator-result h4 {
    color: #166534;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.calculator-result .row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.calculator-result .total {
    border-top: 1px solid #86efac;
    padding-top: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.calculator-result .total span {
    color: var(--primary);
}

/* Not Found */
.not-found {
    text-align: center;
    padding: 5rem 1.5rem;
}

.not-found h2 {
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.not-found p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

/* Latest News (Berita Terbaru) Section */
.latest-news {
    background: white;
    padding: 6rem 2rem;
}

.latest-news-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 1px solid var(--gray-100);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.news-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: var(--purple-100);
}

.news-card-content {
    padding: 1.5rem;
}

.news-card-badge {
    display: inline-block;
    background: var(--purple-100);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.news-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.news-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Marketing Contact (Hubungi Marketing) Section */
.marketing-contact {
    background: var(--gray-50);
    padding: 6rem 2rem;
}

.marketing-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.marketing-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 1px solid var(--gray-100);
}

.marketing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.marketing-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--purple-100);
}

.marketing-card-content {
    padding: 1.5rem;
    text-align: center;
}

.marketing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.marketing-card .region {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.marketing-card .contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.marketing-card .contact-item svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

.marketing-card .btn-contact {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.marketing-card .btn-contact:hover {
    background: var(--primary-dark);
}

/* Tracking Form on Homepage */
.tracking-widget {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    margin: 0 auto;
}

.tracking-widget h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    text-align: center;
}

.tracking-widget-form {
    display: flex;
    gap: 1rem;
}

.tracking-widget-form input {
    flex: 1;
    padding: 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
}

.tracking-widget-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.tracking-widget-form button {
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.tracking-widget-form button:hover {
    background: var(--primary-dark);
}

.tracking-widget-result {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 0.5rem;
}

.tracking-widget-result .status {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.tracking-widget-result .route {
    display: flex;
    justify-content: space-between;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.tracking-widget-result .history-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.tracking-widget-result .history-dot {
    width: 0.5rem;
    height: 0.5rem;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.tracking-widget-result .history-content {
    font-size: 0.9rem;
}

/* Marketing Section */
.marketing-banner {
    background: linear-gradient(135deg, var(--purple-600) 0%, var(--purple-800) 100%);
    padding: 4rem 2rem;
    color: white;
    text-align: center;
}

.marketing-banner h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.marketing-banner p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.marketing-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.marketing-image-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 1;
}

.marketing-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.marketing-image-card:hover img {
    transform: scale(1.1);
}

.marketing-image-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.marketing-image-card .overlay h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.marketing-image-card .overlay p {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-background-slider {
        height: 40vh;
        min-height: 280px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .latest-news-grid,
    .marketing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .marketing-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-background-slider {
        height: 35vh;
        min-height: 250px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .latest-news-grid,
    .marketing-grid {
        grid-template-columns: 1fr;
    }
    
    .marketing-images {
        grid-template-columns: 1fr;
    }
    
    .tracking-widget-form {
        flex-direction: column;
    }
}
