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

:root {
    --primary-orange: #FF8C00;
    --light-orange: #FFA500;
    --dark-orange: #E67E00;
    --bg-white: #FFFFFF;
    --text-dark: #333333;
    --text-gray: #666666;
    --light-bg: #FFE5CC;
    --lighter-bg: #FFF5E6;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(255, 140, 0, 0.2);
    --navbar-height: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: var(--navbar-height);
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo span {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-orange);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-orange);
    transition: all 0.3s ease;
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: calc(-1 * var(--navbar-height));
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.9) 0%, rgba(255, 165, 0, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
    margin-top: var(--navbar-height);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.brand-name {
    display: block;
    font-size: 64px;
    margin-top: 15px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

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

/* Page Header */
.page-header {
    padding: 60px 0 60px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--light-orange) 100%);
    color: white;
    text-align: center;
    margin-top: 0;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 15px;
    text-align: center;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: var(--primary-orange);
    color: white;
    width: 100%;
    margin-top: 15px;
}

.btn-secondary:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.btn-large {
    padding: 18px 50px;
    font-size: 18px;
}

.whatsapp-icon {
    font-size: 24px;
    margin-right: 10px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 50px;
}

/* Why Choose Us */
.why-choose {
    background: var(--lighter-bg);
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

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

.feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-orange);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Services Preview - Clean Version without images */
.services-preview {
    background: white;
}

.services-grid-clean {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.service-card-clean {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    border: 2px solid transparent;
}

.service-card-clean:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
    border-color: var(--primary-orange);
}

.service-card-clean.featured {
    border: 2px solid var(--primary-orange);
    background: linear-gradient(135deg, var(--lighter-bg) 0%, white 100%);
}

.service-icon-large {
    font-size: 80px;
    margin-bottom: 20px;
}

.service-card-clean h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card-clean p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.price-tag {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-orange);
    margin: 20px 0;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-orange);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

/* Old service grid styles for other pages */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.service-card.featured {
    border: 2px solid var(--primary-orange);
}

.service-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 30px;
    text-align: center;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-content p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

/* Layanan Detail Page */
.layanan-detail {
    background: var(--lighter-bg);
}

.layanan-item {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px var(--shadow);
    position: relative;
}

.layanan-item.featured-service {
    border: 3px solid var(--primary-orange);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-orange);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.layanan-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--lighter-bg);
}

.layanan-icon-large {
    font-size: 72px;
}

.layanan-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 5px;
}

.layanan-tagline {
    font-size: 18px;
    color: var(--text-gray);
}

.layanan-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.layanan-description h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 25px 0 15px;
}

.layanan-description p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.benefit-list,
.requirement-list {
    list-style: none;
    margin: 15px 0;
}

.benefit-list li,
.requirement-list li {
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 15px;
}

.pricing-card {
    background: var(--lighter-bg);
    padding: 30px;
    border-radius: 12px;
    position: sticky;
    top: 100px;
}

.pricing-card.featured-pricing {
    background: linear-gradient(135deg, var(--lighter-bg) 0%, white 100%);
    border: 2px solid var(--primary-orange);
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 20px;
    text-align: center;
}

.price-list {
    margin-bottom: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
}

.price-row:last-child {
    border-bottom: none;
}

.service-type {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

.price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-orange);
}

/* Armada Section */
.armada {
    background: linear-gradient(135deg, var(--lighter-bg) 0%, white 100%);
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 25px;
    background: white;
    border: 2px solid var(--light-orange);
    color: var(--primary-orange);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.filter-btn:hover {
    background: var(--lighter-bg);
}

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

/* Car Category */
.car-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--light-orange);
}

/* Cars Grid */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.car-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.car-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-hover);
    border-color: var(--primary-orange);
}

.car-card.featured-car {
    border-color: var(--primary-orange);
}

.car-card.hidden {
    display: none;
}

.premium-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.car-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.car-info {
    padding: 25px;
}

.car-info h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.car-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.car-specs span {
    background: var(--lighter-bg);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--primary-orange);
    font-weight: 600;
}

.price-options {
    background: var(--lighter-bg);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
}

.price-item:last-child {
    border-bottom: none;
}

/* Travel Info */
.travel-info {
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px var(--shadow);
}

.info-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 30px;
    text-align: center;
}

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

.travel-card {
    background: var(--lighter-bg);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--light-orange);
}

.travel-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.travel-card p {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.travel-card ul {
    list-style: none;
}

.travel-card ul li {
    padding: 6px 0;
    color: var(--text-dark);
    font-size: 14px;
}

/* Booking Section */
.booking-section {
    background: var(--lighter-bg);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.booking-steps h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 30px;
}

.step-list {
    margin-bottom: 40px;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px var(--shadow);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px var(--shadow-hover);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

.info-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px var(--shadow);
    border-left: 4px solid var(--primary-orange);
}

.info-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.info-box ul {
    list-style: none;
}

.info-box ul li {
    padding: 8px 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 25px;
}

.info-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: 700;
}

.booking-contact {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card-main {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
}

.contact-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.contact-card-main h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.contact-card-main > p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--lighter-bg);
    border-radius: 12px;
    margin-bottom: 15px;
    text-align: left;
}

.contact-item .icon {
    font-size: 32px;
}

.contact-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 14px;
    color: var(--text-gray);
}

.quick-links {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--lighter-bg);
}

.quick-links p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.promo-banner {
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    color: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
}

.promo-banner h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.promo-banner p {
    margin-bottom: 15px;
}

.promo-banner ul {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.promo-banner ul li {
    padding: 8px 0;
    font-size: 15px;
}

.promo-note {
    font-size: 13px;
    opacity: 0.9;
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--lighter-bg);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Contact Page */
.kontak {
    background: var(--bg-white);
}

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

.kontak-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-hover);
    border-color: var(--primary-orange);
}

.info-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.info-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.info-card .note {
    font-size: 14px;
    font-style: italic;
    margin-top: 10px;
}

.social-card {
    background: linear-gradient(135deg, var(--lighter-bg) 0%, white 100%);
}

.social-links-large {
    margin-top: 20px;
}

.social-button {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border: 2px solid var(--primary-orange);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.social-button:hover {
    background: var(--primary-orange);
    color: white;
    transform: scale(1.05);
}

.social-button svg {
    flex-shrink: 0;
}

.social-label {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.social-button:hover .social-label {
    color: white;
}

.social-handle {
    display: block;
    font-size: 18px;
    font-weight: 600;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    height: 100%;
    min-height: 500px;
}

.map-container iframe {
    display: block;
}

/* Office Section */
.office-section {
    background: var(--lighter-bg);
}

.office-image-container {
    max-width: 900px;
    margin: 0 auto 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
}

.office-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.office-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 16px;
}

.why-contact {
    background: white;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--light-orange) 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-section .section-title,
.cta-section h2 {
    color: white;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 50px 0 25px;
}

.footer-content {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-logo p {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-orange);
}

.footer-text {
    max-width: 600px;
    margin: 0 auto 20px;
    opacity: 0.9;
    line-height: 1.7;
}

.footer-contact {
    margin-top: 20px;
}

.footer-contact p {
    margin: 10px 0;
    opacity: 0.9;
}

.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

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

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

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

.hero-content {
    animation: fadeInUp 1s ease;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-orange);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cars-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .layanan-body {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        position: relative;
        top: 0;
    }
    
    .booking-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --navbar-height: 70px;
    }
    
    body {
        padding-top: var(--navbar-height);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--navbar-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--navbar-height));
        flex-direction: column;
        background: white;
        padding: 20px;
        box-shadow: 0 5px 20px var(--shadow);
        transition: left 0.3s ease;
        gap: 0;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .hero {
        margin-top: calc(-1 * var(--navbar-height));
    }
    
    .hero-content {
        margin-top: var(--navbar-height);
        padding: 20px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .brand-name {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .page-header {
        padding: 40px 0 40px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .kontak-grid {
        grid-template-columns: 1fr;
    }
    
    .cars-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .services-grid-clean {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .logo span {
        font-size: 12px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .filter-tabs {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .layanan-header {
        flex-direction: column;
        text-align: center;
    }
    
    .layanan-header h2 {
        font-size: 28px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}