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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between; /* logo kiri, menu kanan */
    align-items: center;
}

.logo {
    margin-right: auto;
}

.logo h2 {
    color: #00a8cc;
    font-weight: 700;
    font-size: 1.8rem;
}

.logo i {
    color: #ff6b35; 
}

/* Logo Animation */
.logo-text {
    display: inline-block;
    animation: logoGlow 4s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { text-shadow: 0 0 5px rgba(0, 168, 204, 0.5); }
    50% { text-shadow: 0 0 20px rgba(0, 168, 204, 0.8); }
}

.nav-menu {
    display: flex;
    list-style: none;
    margin-left: auto;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #00a8cc;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.wave {
    width: 15px;
    height: 40px;
    background: white;
    border-radius: 10px;
    animation: waveAnimation 1.2s infinite ease-in-out;
}

.wave:nth-child(2) { animation-delay: 0.2s; }
.wave:nth-child(3) { animation-delay: 0.4s; }

@keyframes waveAnimation {
    0%, 40%, 100% { transform: scaleY(0.4); }
    20% { transform: scaleY(1); }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 168, 204, 0.8), rgba(255, 107, 53, 0.8)),
                url('../img/bg_utama.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

/* Particle System */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) translateX(-50px) rotate(0deg);
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        opacity: 0;
        transform: translateY(-100px) translateX(50px) rotate(360deg);
    }
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

/* Typing Animation */
.typing-text {
    overflow: hidden;
    border-right: 3px solid rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    margin: 0 auto;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

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

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: rgba(255, 255, 255, 0.8); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Fade In Up Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.5s forwards;
}

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

/* CTA Button with Pulse Animation */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #ff6b35, #ff8e35);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

/* Pulse Animation */
.pulse-btn {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3); }
    50% { box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6); }
    100% { box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
}

.scroll-arrow {
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fdff 0%, #e3f2fd 100%);
}

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

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 168, 204, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Floating Cards Animation */
.floating-card {
    animation: floatUpDown 6s ease-in-out infinite;
}

.floating-card:nth-child(2) { animation-delay: 2s; }
.floating-card:nth-child(3) { animation-delay: 4s; }

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* 3D Tilt Effect */
[data-tilt] {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

/* Feature Icon Animation */
.feature-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.feature-card:hover .feature-icon i {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 20%, 60%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    80% { transform: translateY(-5px); }
}

.feature-card i {
    font-size: 3rem;
    color: #00a8cc;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00a8cc, #0288d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Packages Section */
.packages {
    padding: 20px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00a8cc, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gradient Text Animation */
.gradient-text {
    background: linear-gradient(-45deg, #00a8cc, #ff6b35, #00a8cc, #ff6b35);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Reveal Animation */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 1s ease forwards;
}

.reveal-text:nth-child(2) { animation-delay: 0.3s; }

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Packages Grid - Fixed for 3 per row */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 168, 204, 0.1);
    min-height: 600px;
}

/* Hover Lift Effect */
.hover-lift {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-lift:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

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

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

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ff6b35, #ff8e35);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.package-badge.pulse {
    animation: pulseGlow 2s infinite;
}

/* Image Overlay Effect */
.image-overlay {
    pointer-events: none;
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 168, 204, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.package-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    color: white;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.package-card:hover .overlay-content {
    transform: translateY(0);
}

.package-content {
    position: relative;
    z-index: 1;
    padding: 1.5rem;
}

.package-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.package-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.package-info span {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-info i {
    color: #00a8cc;
}

.package-content p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.package-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

/* Feature Item Animation */
.feature-item {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease forwards;
    color: #555;
    font-size: 0.85rem;
    padding: 0.2rem 0;
}

.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.4s; }
.feature-item:nth-child(4) { animation-delay: 0.6s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.package-price {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #00a8cc;
}

/* Animated Price */
.animated-price {
    position: relative;
    display: inline-block;
}

.animated-price::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #00a8cc, #ff6b35);
    animation: priceUnderline 2s ease-in-out infinite;
}

@keyframes priceUnderline {
    0%, 100% { width: 0; }
    50% { width: 100%; }
}

.per-person {
    color: #666;
    font-size: 0.9rem;
}

.btn-bg { 
    pointer-events: none; 
}

/* Enhanced Book Button */
.book-btn {
    width: 100%;
    background: linear-gradient(45deg, #00a8cc, #0288d1);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 168, 204, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 168, 204, 0.4);
    background: linear-gradient(45deg, #0288d1, #0277bd);
}

/* Ripple Button Effect */
.ripple-btn {
    position: relative;
    overflow: hidden;
}

.ripple-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Gallery Section */
.gallery {
    padding: 20px 0;
    background: linear-gradient(135deg, #f8fdff 0%, #ffffff 100%);
}

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

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Fun Facts Section */
.fun-facts {
    padding: 20px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #f8fdff 100%);
}

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

.fact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.fact-icon {
    font-size: 3rem;
    color: #00a8cc;
    margin-bottom: 1.5rem;
}

/* Transportation Section */
.transportation {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.transport-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.transport-info {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.transport-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.transport-features .feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.transport-features .feature i {
    color: #00a8cc;
    font-size: 1.2rem;
}

.transport-table-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.transport-table {
    width: 100%;
    border-collapse: collapse;
}

.transport-table th {
    background: linear-gradient(45deg, #00a8cc, #0288d1);
    color: white;
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
}

.transport-table td {
    padding: 1.2rem;
    border-bottom: 1px solid #eee;
}

.transport-table tr:hover {
    background: #f8fdff;
}

.transport-table tr.highlight {
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(0, 168, 204, 0.1));
}

.service-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-info i {
    color: #00a8cc;
    font-size: 1.2rem;
}

.transport-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8fdff;
    border-radius: 15px;
    border-left: 4px solid #00a8cc;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.transport-note i {
    color: #00a8cc;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

/* Enhanced Contact Section */
.contact-enhanced {
    padding: 20px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

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

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-header i {
    font-size: 1.5rem;
    color: #00a8cc;
}

.maps-link,
.wa-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #00a8cc;
    text-decoration: none;
    margin-top: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.maps-link:hover,
.wa-link:hover {
    color: #ff6b35;
}

.social-contact {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #00a8cc;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-contact a:hover {
    background: #ff6b35;
    transform: translateY(-2px);
}

.schedule .day {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.schedule .day.emergency {
    color: #ff6b35;
    font-weight: 600;
}

/* Enhanced Contact Form */
.contact-form-enhanced {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
}

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

.enhanced-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

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

.enhanced-form input,
.enhanced-form select,
.enhanced-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.enhanced-form input:focus,
.enhanced-form select:focus,
.enhanced-form textarea:focus {
    outline: none;
    border-color: #00a8cc;
    box-shadow: 0 0 0 3px rgba(0, 168, 204, 0.1);
}

.enhanced-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn-enhanced {
    width: 100%;
    background: linear-gradient(45deg, #ff6b35, #ff8e35);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

/* Enhanced Footer */
.footer-enhanced {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

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

.footer-section.company {
    max-width: none;
}

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

.company-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.rating {
    margin-top: 1rem;
}

.stars {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.company-desc {
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.certifications {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.contact-footer .emergency-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.emergency-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.emergency-item i {
    color: #ff6b35;
}

.newsletter {
    margin-top: 2rem;
}

.newsletter h5 {
    margin-bottom: 0.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 10px;
    background: #ff6b35;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #ff8e35;
}

.footer-social {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-social h4 {
    margin-bottom: 1rem;
}

.social-links-enhanced {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link.facebook:hover { background: #1877f2; }
.social-link.instagram:hover { background: #e4405f; }
.social-link.whatsapp:hover { background: #25d366; }
.social-link.youtube:hover { background: #ff0000; }
.social-link.tiktok:hover { background: #000000; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    opacity: 0.8;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ff6b35;
}

/* About Section (Original) */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #f8fdff 100%);
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #00a8cc, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.stat {
    text-align: center;
    background: white;
    padding: 2rem 1rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00a8cc;
    margin-bottom: 0.5rem;
}

/* Counter Animation */
.counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00a8cc;
}

.stat p {
    color: #666;
    font-weight: 500;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Contact Section (Original) */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

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

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #00a8cc;
    margin-top: 0.2rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00a8cc;
    box-shadow: 0 0 0 3px rgba(0, 168, 204, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(45deg, #ff6b35, #ff8e35);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

/* Footer (Original) */
.footer {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #b3d9ff;
}

.footer-section p {
    line-height: 1.6;
    color: #e6f3ff;
    margin-bottom: 1.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #e6f3ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ff6b35;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b3d9ff;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #00a8cc, #ff6b35);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #0288d1, #ff8e35);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .transport-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

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

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

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-grid,
    .facts-grid {
        grid-template-columns: 1fr;
    }

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

    .about-stats {
        grid-template-columns: 1fr;
    }

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

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

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

    .section-header h2 {
        font-size: 2.2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }
    
    .social-links-enhanced {
        flex-direction: column;
        align-items: center;
    }
    
    /* Disable animations on mobile for performance */
    .floating-card { 
        animation: none; 
    } 
    
    .particle { 
        display: none; 
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .package-content {
        padding: 1.5rem;
    }

    .contact-form,
    .contact-form-enhanced {
        padding: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }
}

/* Performance Optimizations */
* {
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

/* Smooth Transitions */
.smooth-transition {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Taxi Service Section */
.taxi-service {
    padding: 20px 0;
    background: linear-gradient(135deg, #f8fdff 0%, #ffffff 100%);
}

/* Taxi Overview */
.taxi-overview {
    margin: 3rem 0;
}

.taxi-info-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 168, 204, 0.1);
}

.taxi-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.taxi-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00a8cc, #0288d1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 168, 204, 0.3);
}

.taxi-title h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.taxi-title p {
    color: #666;
    font-size: 1.1rem;
}

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

.taxi-features .feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: #f8fdff;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.taxi-features .feature:hover {
    transform: translateX(5px);
}

.taxi-features .feature i {
    color: #00a8cc;
    font-size: 1.2rem;
}

.contact-taxi {
    background: linear-gradient(45deg, #00a8cc, #0288d1);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.contact-taxi h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Pricing Wrapper */
.taxi-pricing-wrapper {
    margin-top: 4rem;
}

.pricing-section {
    margin-bottom: 4rem;
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 168, 204, 0.1);
}

.pricing-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f8ff;
}

.pricing-title i {
    color: #00a8cc;
    font-size: 1.3rem;
}

/* Responsive Table */
.table-responsive {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.taxi-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.taxi-table th {
    background: linear-gradient(45deg, #00a8cc, #0288d1);
    color: white;
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.taxi-table th.price-col {
    text-align: center;
    min-width: 120px;
}

.taxi-table td {
    padding: 1.2rem;
    border-bottom: 1px solid #f0f8ff;
    vertical-align: middle;
}

.table-row {
    transition: all 0.3s ease;
}

.table-row:hover {
    background: linear-gradient(90deg, #f8fdff 0%, rgba(0, 168, 204, 0.05) 100%);
    transform: translateX(5px);
}

.table-row.popular {
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 168, 204, 0.1) 100%);
    border-left: 4px solid #ff6b35;
}

.destination-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.destination-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #00a8cc, #0288d1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.destination-details strong {
    display: block;
    color: #333;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.destination-details small {
    color: #666;
    font-size: 0.9rem;
}

.taxi-table .price {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #00a8cc;
}

.taxi-table .price::before {
    content: 'IDR ';
    font-size: 0.9rem;
    color: #666;
}

/* Mobile Cards - Hidden by default */
.mobile-cards {
    display: none;
}

.taxi-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 168, 204, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.taxi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.taxi-card.popular-card {
    border: 2px solid #ff6b35;
    background: linear-gradient(135deg, #fff 0%, #fff8f5 100%);
}

.card-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, #ff6b35, #ff8e35);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f8ff;
}

.card-header i {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00a8cc, #0288d1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.card-header h4 {
    color: #333;
    font-size: 1.2rem;
    margin: 0;
}

.card-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f8f8;
}

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

.detail-item .label {
    color: #666;
    font-weight: 500;
}

.detail-item .value {
    color: #333;
    font-weight: 600;
}

.card-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fdff;
    padding: 1rem;
    border-radius: 15px;
}

.price-label {
    color: #666;
    font-weight: 500;
}

.card-price .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00a8cc;
}

/* Premium Grid */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.premium-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 168, 204, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.premium-card.highlight-card {
    border: 2px solid #ff6b35;
    background: linear-gradient(135deg, #fff 0%, #fff8f5 100%);
}

.premium-header {
    margin-bottom: 1.5rem;
}

.premium-header i {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00a8cc, #0288d1);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 168, 204, 0.3);
}

.premium-header h4 {
    color: #333;
    font-size: 1.3rem;
    margin: 0;
}

.premium-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fdff;
    border-radius: 12px;
}

.premium-details span {
    color: #666;
    font-weight: 500;
}

.premium-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00a8cc;
}

.premium-price::before {
    content: 'IDR ';
    font-size: 1rem;
    color: #666;
}

/* Rental Options */
.rental-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 kolom sama lebar */
  gap: 2rem;
}


.rental-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 168, 204, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.rental-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.rental-card.popular-rental {
    border: 2px solid #ff6b35;
    background: linear-gradient(135deg, #fff 0%, #fff8f5 100%);
    transform: scale(1.05);
}

.rental-header {
    margin-bottom: 2rem;
}

.rental-header h4 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.rental-header p {
    color: #666;
    font-style: italic;
}

.rental-price {
    font-size: 2rem;
    font-weight: 700;
    color: #00a8cc;
    margin-bottom: 2rem;
}

.rental-price span {
    font-size: 1.2rem;
    color: #666;
}

.rental-includes {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.rental-includes span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #555;
    font-size: 0.95rem;
}

.rental-includes span i {
    color: #00a8cc;
    font-size: 1rem;
}

/* CTA Section */
.taxi-cta {
    background: linear-gradient(45deg, #00a8cc, #0288d1);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    color: white;
    margin: 3rem 0;
    box-shadow: 0 20px 40px rgba(0, 168, 204, 0.3);
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.primary-btn {
    background: #25d366;
    color: white;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.primary-btn:hover {
    background: #1fb855;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Notes Section */
.taxi-notes {
    background: #f8fdff;
    border-radius: 20px;
    padding: 2.5rem;
    border-left: 5px solid #00a8cc;
}

.notes-content h4 {
    color: #333;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notes-content h4 i {
    color: #00a8cc;
    font-size: 1.3rem;
}

.notes-content ul {
    list-style: none;
    padding: 0;
}

.notes-content li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 168, 204, 0.1);
    color: #555;
    line-height: 1.6;
}

.notes-content li:last-child {
    border-bottom: none;
}

.notes-content strong {
    color: #00a8cc;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .taxi-features {
        grid-template-columns: 1fr;
    }
    
    .premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rental-options {
        grid-template-columns: 1fr;
    }
    
    .rental-card.popular-rental {
        transform: none;
    }
}

@media (max-width: 768px) {
    .taxi-service {
        padding: 60px 0;
    }
    
    .taxi-info-card {
        padding: 2rem;
    }
    
    .taxi-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .taxi-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .pricing-section {
        padding: 2rem;
    }
    
    .pricing-title {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    /* Hide desktop table, show mobile cards */
    .desktop-table {
        display: none;
    }
    
    .mobile-cards {
        display: block;
    }
    
    .premium-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-btn,
    .secondary-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .taxi-cta {
        padding: 2rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .taxi-info-card {
        padding: 1.5rem;
    }
    
    .contact-taxi {
        padding: 1.5rem;
    }
    
    .phone-number {
        font-size: 1.3rem;
    }
    
    .pricing-section {
        padding: 1.5rem;
    }
    
    .taxi-card {
        padding: 1.2rem;
    }
    
    .premium-card {
        padding: 1.5rem;
    }
    
    .rental-card {
        padding: 1.5rem;
    }
    
    .taxi-cta {
        padding: 1.5rem;
    }
    
    .taxi-notes {
        padding: 1.5rem;
    }
}

/* Loading Animation for Cards */
@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.taxi-card,
.premium-card,
.rental-card {
    animation: cardSlideIn 0.6s ease forwards;
}

.taxi-card:nth-child(2) { animation-delay: 0.1s; }
.taxi-card:nth-child(3) { animation-delay: 0.2s; }
.taxi-card:nth-child(4) { animation-delay: 0.3s; }
.taxi-card:nth-child(5) { animation-delay: 0.4s; }

/* ===== Massage Section Styling ===== */
#massage {
background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
position: relative;
overflow: hidden;
}
#massage::before {
content: "";
position: absolute;
top: -50px;
right: -50px;
width: 200px;
height: 200px;
background: rgba(0,123,255,0.1);
border-radius: 50%;
z-index: 0;
}
#massage::after {
content: "";
position: absolute;
bottom: -60px;
left: -60px;
width: 250px;
height: 250px;
background: rgba(220,53,69,0.08);
border-radius: 50%;
z-index: 0;
}
#massage .section-title {
position: relative;
z-index: 1;
}
.massage-card {
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(6px);
border-radius: 16px;
box-shadow: 0 8px 20px rgba(0,0,0,0.05);
transition: transform 0.3s ease, box-shadow 0.3s ease;
position: relative;
z-index: 1;
}
.massage-card:hover {
transform: translateY(-6px);
box-shadow: 0 12px 26px rgba(0,0,0,0.08);
}
.massage-card h5 {
font-weight: 700;
color: #0d6efd;
}
.massage-card .price {
font-size: 1rem;
font-weight: 600;
color: #dc3545;
}
.massage-cta {
position: relative;
z-index: 1;
background: #fff;
border-radius: 20px;
box-shadow: 0 8px 20px rgba(0,0,0,0.05);
padding: 30px;
}

.img-zoom { 
overflow: hidden; 
border-radius: 12px; 
}
.img-zoom img {
transition: transform .5s ease;
}
.img-zoom:hover img {
transform: scale(1.05);
}