* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
}

/* Navigation */
/* Navbar Styles */
/* ====================
   NAVBAR MOBILE FIX
   ==================== */

/* Navbar Base */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: #2c3e50;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Logo */
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    z-index: 1002;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Desktop Navigation */
.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: 500;
    display: block;
}

.nav-links a:hover {
    background: #3498db;
    color: white;
}

.nav-links a.active {
    background: #3498db;
    color: white;
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
    transition: all 0.3s;
}

.menu-toggle:hover {
    color: #3498db;
}

/* ====================
   MOBILE STYLES (Max-width: 768px)
   ==================== */
@media screen and (max-width: 768px) {
    nav {
        padding: 0.8rem 5%;
    }
    
    /* Tampilkan hamburger */
    .menu-toggle {
        display: block;
    }
    
    /* Sembunyikan menu default di mobile */
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: #2c3e50;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 80px; /* Space untuk logo */
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        gap: 0;
        z-index: 1001;
        box-shadow: 5px 0 15px rgba(0,0,0,0.2);
        transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        overflow-y: auto;
    }
    
    /* Tampilkan menu saat aktif */
    .nav-links.active {
        left: 0;
    }
    
    /* Style untuk setiap menu item */
    .nav-links li {
        width: 100%;
        margin-bottom: 0.8rem;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    /* Delay untuk animasi menu item */
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    
    /* Style untuk link di mobile */
    .nav-links a {
        padding: 1rem 1.2rem;
        width: 100%;
        border-radius: 8px;
        font-size: 1.1rem;
        background: rgba(255, 255, 255, 0.05);
        border-left: 3px solid transparent;
        transition: all 0.3s;
    }
    
    .nav-links a:hover {
        background: #3498db;
        border-left: 3px solid #3498db;
        transform: translateX(5px);
    }
    
    .nav-links a.active {
        background: #3498db;
        border-left: 3px solid white;
    }
    
    /* Overlay saat menu terbuka */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(3px);
        z-index: 1000;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    /* Logo lebih kecil di mobile */
    .logo {
        font-size: 1.2rem;
    }
}

/* ====================
   VERY SMALL MOBILE (Max-width: 480px)
   ==================== */
@media screen and (max-width: 480px) {
    .nav-links {
        width: 80%;
        max-width: 280px;
        padding-top: 70px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .nav-links a {
        padding: 0.9rem 1rem;
        font-size: 1rem;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .menu-toggle {
        font-size: 1.5rem;
    }
}

/* Emergency fix - tambahkan ini di akhir CSS */
@media (max-width: 768px) {
    .nav-links {
        background: #2c3e50 !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-links.active {
        transform: none !important;
        left: 0 !important;
    }
    
    /* Pastikan overlay tidak menutupi menu */
    .nav-overlay {
        z-index: 999 !important;
    }
    
    .nav-links {
        z-index: 1000 !important;
    }
}

/* ====================
   PREVENT BODY SCROLL WHEN MENU OPEN
   ==================== */
body.menu-open {
    overflow: hidden;
    height: 100vh;
}
/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    margin-top: 2rem;
    font-weight: bold;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Services Grid */
.services {
    padding: 5rem 10%;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    nav {
        flex-direction: column;
        align-items: center;
    }
}

/* Gallery Styles */
.gallery-section {
    padding: 3rem 5%;
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid #3498db;
    background: white;
    color: #3498db;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: #3498db;
    color: white;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: white;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.gallery-instagram {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    border-radius: 10px;
}

.instagram-btn {
    display: inline-block;
    background: white;
    color: #E1306C;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 1rem;
    font-weight: bold;
}

/* People Counter */
.people-counter {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.counter-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
}

.counter-btn:hover {
    background: #f0f0f0;
}

#bookingPeople {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Form Summary */
.form-summary {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed #ddd;
}

.summary-item.total {
    border-top: 2px solid #3498db;
    padding-top: 1rem;
    margin-top: 1rem;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), 
                url('assets/images/about-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 6rem 1rem;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero .subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* History Timeline */
.history-section {
    padding: 5rem 1rem;
    background: #f8f9fa;
}

.timeline {
    max-width: 800px;
    margin: 3rem auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #3498db;
    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 {
    flex: 0 0 100px;
    background: #3498db;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 0 2rem;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #3498db;
    border-radius: 50%;
    top: 30px;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
}

/* Vision & Mission */
.vision-mission {
    padding: 5rem 1rem;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.vm-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.vm-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.vm-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.vm-card.mission ul {
    text-align: left;
    padding-left: 1.5rem;
}

.vm-card.mission li {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

/* Values Section */
.values-section {
    padding: 5rem 1rem;
    background: #f8f9fa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Team Section */
.team-section {
    padding: 5rem 1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
}

.team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.member-photo {
    height: 250px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-member:hover .member-photo img {
    transform: scale(1.1);
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.position {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bio {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    color: #666;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.member-social a:hover {
    color: #3498db;
}

/* Stats Section */
.stats-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About CTA */
.about-cta {
    padding: 5rem 1rem;
    text-align: center;
    background: #f8f9fa;
}

.about-cta h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.about-cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #666;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-secondary {
    background: white;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(52, 152, 219, 0.9), rgba(41, 128, 185, 0.9)), 
                url('assets/images/contact-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 5rem 1rem;
}

.contact-info-section {
    padding: 4rem 1rem;
    background: #f8f9fa;
}

/* Contact Page Styles */
.service-hero {
    background: linear-gradient(rgba(36, 74, 100, 0.9), rgba(41, 128, 185, 0.9)), 
                url('assets/images/contact-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 5rem 1rem;
}

.service-info-section {
    padding: 4rem 1rem;
    background: #f8f9fa;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.info-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.info-card p {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.phone-link, .email-link, .map-link {
    display: block;
    color: #3498db;
    text-decoration: none;
    margin: 0.5rem 0;
    font-weight: 600;
}

.phone-link:hover, .email-link:hover, .map-link:hover {
    text-decoration: underline;
}

.hours-list {
    text-align: left;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed #eee;
}

.note {
    font-size: 0.9rem;
    color: #999;
    margin-top: 1rem;
    font-style: italic;
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 1rem;
}

.form-map-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .form-map-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h2 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-form {
    margin-top: 2rem;
}

.destination-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.map-quick-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.map-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-top: 1px solid #eee;
}

.map-info h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #3498db;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 0.5rem;
}

.quick-contact {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.quick-contact h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.quick-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.quick-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.quick-btn:hover {
    transform: translateY(-3px);
}

.whatsapp-btn {
    background: #25D366;
}

.phone-btn {
    background: #3498db;
}

.email-btn {
    background: #e74c3c;
}

.quick-btn i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.social-contact {
    margin-bottom: 2rem;
}

.social-contact h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
}

.facebook { background: #3b5998; }
.instagram { background: #e4405f; }
.twitter { background: #1da1f2; }
.youtube { background: #cd201f; }
.tiktok { background: #000000; }

.faq-links h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.faq-links ul {
    list-style: none;
    padding-left: 0;
}

.faq-links li {
    margin-bottom: 0.8rem;
}

.faq-links a {
    color: #3498db;
    text-decoration: none;
}

.faq-links a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 1rem;
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    color: #3498db;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
    margin-top: 2rem;
}

.faq-cta a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.faq-cta a:hover {
    text-decoration: underline;
}

/* Footer Enhancement */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.footer-section i {
    margin-right: 0.5rem;
    color: #3498db;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin-left: 60px;
    }
    
    .timeline-year {
        position: absolute;
        left: -90px;
        top: 0;
    }
    
    .timeline-content::before {
        left: -40px !important;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-buttons {
        grid-template-columns: 1fr;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.underline {
    width: 80px;
    height: 4px;
    background: #3498db;
    margin: 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    color: #666;
    max-width: 600px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

/* Form Styles Enhancement */
.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #3498db;
    outline: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.submit-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background: #2980b9;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

.form-note i {
    color: #3498db;
    margin-right: 0.5rem;
}

/* ====================
   BOOKING PAGE STYLES
   ==================== */

/* Booking Hero */
.booking-hero {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    padding: 3rem 1rem;
    text-align: center;
}

.booking-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.booking-hero .subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Booking Steps */
.booking-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 2rem auto 0;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.5;
    transition: all 0.3s;
}

.step.active {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.step.active .step-number {
    background: white;
    color: #3498db;
}

.step-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Booking Form Section */
.booking-form-section {
    padding: 3rem 1rem;
    background: #f8f9fa;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Form Sections */
.form-section {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.section-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.section-header h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-header p {
    color: #666;
    font-size: 0.95rem;
}

/* Form Grid */
.form-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* Form Groups */
.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group label i {
    color: #3498db;
    width: 20px;
    text-align: center;
}

.form-hint {
    display: block;
    color: #888;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    font-style: italic;
}

/* Input Styles */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
    color: #333;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Select Styling */
select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 3rem;
}

/* People Counter */
.people-counter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.counter-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.counter-btn:hover {
    border-color: #3498db;
    color: #3498db;
}

.counter-btn:active {
    transform: scale(0.95);
}

#peopleCount {
    width: 60px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: bold;
    background: #f8f9fa;
}

/* Textarea */
textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
    font-family: inherit;
}

/* Order Summary */
.order-summary {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #3498db;
}

.summary-content {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px dashed #ddd;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row span:first-child {
    color: #666;
    font-weight: 500;
}

.summary-row span:last-child {
    color: #2c3e50;
    font-weight: 600;
    text-align: right;
}

.summary-row.total {
    border-top: 2px solid #3498db;
    margin-top: 1rem;
    padding-top: 1.5rem;
    font-size: 1.2rem;
}

.summary-row.total span:last-child {
    color: #e74c3c;
    font-size: 1.3rem;
}

/* Form Actions */
.form-actions {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.terms-agreement {
    margin-bottom: 1.5rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-container input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    margin-top: 0.1rem;
    transition: all 0.3s;
}

.checkbox-container input:checked + .checkmark {
    background: #3498db;
    border-color: #3498db;
}

.checkbox-container input:checked + .checkmark:after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

.checkbox-container a {
    color: #3498db;
    text-decoration: none;
}

.checkbox-container a:hover {
    text-decoration: underline;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-primary, .btn-secondary {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: none;
}

.btn-primary {
    background: #25D366;
    color: white;
}

.btn-primary:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-secondary {
    background: #f8f9fa;
    color: #666;
    border: 2px solid #ddd;
}

.btn-secondary:hover {
    background: #e9ecef;
    border-color: #999;
}

.form-notice {
    background: #e3f2fd;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    color: #1976d2;
    font-size: 0.9rem;
}

.form-notice i {
    margin-right: 0.5rem;
}

/* WhatsApp Float Button Update */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

/* Date Picker Customization */
.flatpickr-calendar {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.flatpickr-day.selected {
    background: #3498db;
    border-color: #3498db;
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-hero h1 {
        font-size: 2rem;
    }
    
    .booking-steps {
        gap: 1rem;
    }
    
    .step-text {
        font-size: 0.8rem;
    }
    
    .form-section {
        padding: 1.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .whatsapp-float span {
        display: none;
    }
}

/* Loading State */
.loading {
    display: inline-block;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Error States */
.error {
    border-color: #e74c3c !important;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* ====================
   SERVICES PAGE STYLES
   ==================== */

/* Services Hero */
.services-hero {
    padding-top: 80px; /* Sesuaikan dengan tinggi navbar */
    padding-bottom: 60px;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    text-align: center;
    padding: 4rem 1rem;
}

.services-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid Section */
.services-grid-section {
    padding: 3rem 1rem;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.service-header h2 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.feature-tag i {
    font-size: 0.8rem;
}

/* Service Schedule */
.service-schedule {
    padding: 1.5rem;
    flex-grow: 1;
}

.service-schedule h3 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.schedule-time {
    background: #3498db;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
}

.schedule-label {
    color: #555;
    font-size: 0.9rem;
    flex: 1;
}

/* Service Footer */
.service-footer {
    padding: 1.5rem;
    border-top: 2px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.service-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.2rem;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e74c3c;
}

.book-btn {
    background: #25D366;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.book-btn:hover {
    background: #1da851;
    transform: scale(1.05);
}

.book-btn:active {
    transform: scale(0.95);
}

/* Service Rating */
.service-rating {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.stars {
    color: #FFD700;
    font-size: 0.9rem;
}

.rating-text {
    color: #666;
    font-size: 0.85rem;
}

/* Features Section */
.features-section {
    padding: 4rem 1rem;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: #f8f9fa;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-item p {
    color: #666;
    line-height: 1.5;
}

/* Booking CTA */
.booking-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 4rem 1rem;
}

.booking-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.booking-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #764ba2;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cta-button i {
    margin-right: 0.5rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.2rem;
    }
    
    .services-hero .subtitle {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .service-price {
        text-align: center;
    }
    
    .book-btn {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-cta h2 {
        font-size: 2rem;
    }
    
    .booking-cta p {
        font-size: 1rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .whatsapp-float span {
        display: none;
    }
}

@media (max-width: 480px) {
    .service-header h2 {
        font-size: 1.2rem;
    }
    
    .service-schedule h3 {
        font-size: 1rem;
    }
    
    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .schedule-time {
        align-self: flex-start;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
}

