:root {
    --primary-gold: #c09b66;
    --dark-bg: #0a0a0a;
    --light-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --gold-gradient: linear-gradient(135deg, #c09b66 0%, #e6d5b8 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
}

/* Smooth Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-100px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Navbar */
.navbar {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.85) 100%);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(192, 155, 102, 0.1);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 10, 0.98);
}

.navbar.scrolled .logo-image {
    height: 45px;
}

.navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(192, 155, 102, 0.3));
    transition: all 0.3s ease;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.logo:hover .logo-image {
    filter: drop-shadow(0 4px 16px rgba(192, 155, 102, 0.6));
    transform: scale(1.05);
}

.logo:hover .logo-text {
    text-shadow: 0 0 20px rgba(192, 155, 102, 0.6);
    color: #e6c896;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-gold);
    font-size: 28px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), 
                url('../../sampul.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(192, 155, 102, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1.5s ease-in;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text-gray);
    animation: fadeIn 2s ease-in;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--dark-bg);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(192, 155, 102, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(192, 155, 102, 0.5);
}

/* Section Styling */
section {
    padding: 100px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: var(--gold-gradient);
    bottom: -10px;
    left: 20%;
}

.section-title p {
    color: var(--text-gray);
    font-size: 18px;
}

/* Booking Section */
.booking-section {
    background: var(--light-bg);
}

.booking-form {
    background: rgba(26, 26, 26, 0.8);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(192, 155, 102, 0.2);
    backdrop-filter: blur(10px);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--primary-gold);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(192, 155, 102, 0.3);
    color: var(--text-light);
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(192, 155, 102, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Armada Cards */
.armada-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.armada-card {
    background: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(192, 155, 102, 0.2);
    cursor: pointer;
}

.armada-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(192, 155, 102, 0.3);
}

.armada-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.armada-card:hover img {
    transform: scale(1.1);
}

.armada-info {
    padding: 25px;
}

.armada-info h3 {
    color: var(--primary-gold);
    font-size: 24px;
    margin-bottom: 10px;
}

.armada-info .type {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.armada-info .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 15px 0;
}

.armada-info .facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.facility-tag {
    background: rgba(192, 155, 102, 0.2);
    color: var(--primary-gold);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.2) rotate(3deg);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--primary-gold);
    font-size: 20px;
}

/* About Section */
.about-section {
    background: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    color: var(--primary-gold);
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.visi-misi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.vm-card {
    background: rgba(192, 155, 102, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(192, 155, 102, 0.3);
}

.vm-card h4 {
    color: var(--primary-gold);
    font-size: 24px;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 50px 20px 20px;
    border-top: 1px solid rgba(192, 155, 102, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.footer-section h3 {
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(192, 155, 102, 0.1);
    color: var(--text-gray);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        padding: 30px;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .visi-misi {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

/* ========================================
   LOADING SCREEN WITH BUS ANIMATION
   ======================================== */

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.bus-animation {
    position: relative;
    width: 300px;
    height: 150px;
    margin: 0 auto 30px;
}

.road {
    position: absolute;
    bottom: 20px;
    width: 100%;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--primary-gold) 0px,
        var(--primary-gold) 20px,
        transparent 20px,
        transparent 40px
    );
    animation: roadMove 1s linear infinite;
}

@keyframes roadMove {
    0% { background-position: 0 0; }
    100% { background-position: 40px 0; }
}

.bus {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    animation: busFloat 2s ease-in-out infinite;
}

@keyframes busFloat {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

.bus-body {
    width: 120px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 10px 10px 5px 5px;
    position: relative;
    box-shadow: 0 5px 20px rgba(192, 155, 102, 0.5);
}

.bus-body::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 10px;
    width: 90px;
    height: 20px;
    background: var(--gold-gradient);
    border-radius: 8px 8px 0 0;
}

.bus-window {
    position: absolute;
    top: -10px;
    width: 20px;
    height: 12px;
    background: rgba(10, 10, 10, 0.8);
    border-radius: 3px;
}

.bus-window:nth-child(1) { left: 15px; }
.bus-window:nth-child(2) { left: 40px; }
.bus-window:nth-child(3) { left: 65px; }

.bus-wheel {
    position: absolute;
    bottom: -10px;
    width: 20px;
    height: 20px;
    background: #333;
    border-radius: 50%;
    border: 3px solid var(--primary-gold);
    animation: wheelRotate 0.8s linear infinite;
}

@keyframes wheelRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.wheel-front { right: 15px; }
.wheel-back { left: 15px; }

.loader-text {
    font-size: 36px;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    margin-bottom: 10px;
    animation: pulse 2s ease-in-out infinite;
}

.loader-subtext {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.loader-percentage {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 15px 0;
    font-family: 'Arial', sans-serif;
    text-shadow: 0 0 20px rgba(192, 155, 102, 0.5);
    animation: percentagePulse 1s ease-in-out infinite;
    letter-spacing: 2px;
}

@keyframes percentagePulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.loader-bar {
    width: 300px;
    height: 6px;
    background: rgba(192, 155, 102, 0.2);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.loader-progress {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 10px;
    transition: width 0.3s ease-out;
    box-shadow: 0 0 10px rgba(192, 155, 102, 0.6);
}

/* Loading Animation (old - keep for compatibility) */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(192, 155, 102, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-gold);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success/Error Messages */
.message {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    animation: slideInDown 0.5s ease;
}

@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.message.success {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid #28a745;
    color: #28a745;
}

.message.error {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    color: #dc3545;
}

/* ========================================
   FACILITIES SHOWCASE - PREMIUM STYLE
   ======================================== */

.facilities-showcase {
    position: relative;
    overflow: hidden;
}

.facilities-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(192, 155, 102, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.facilities-grid-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.facility-showcase-item {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9) 0%, rgba(15, 15, 15, 0.9) 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(192, 155, 102, 0.1);
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.facility-showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(192, 155, 102, 0.15) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.facility-showcase-item:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: rgba(192, 155, 102, 0.5);
    box-shadow: 0 20px 50px rgba(192, 155, 102, 0.3), 0 0 60px rgba(192, 155, 102, 0.2);
}

.facility-showcase-item:hover::before {
    opacity: 1;
}

.facility-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(180deg, #000 0%, #1a1a1a 100%);
}

.facility-image-wrapper.no-image {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid rgba(192, 155, 102, 0.2);
}

.facility-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(192, 155, 102, 0.1) 0%, transparent 70%);
}

.facility-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.facility-showcase-item:hover .facility-image-wrapper img {
    transform: scale(1.2) rotate(2deg);
}

.facility-icon-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(192, 155, 102, 0.5);
    transition: all 0.5s ease;
    z-index: 2;
}

.facility-icon-overlay i {
    font-size: 28px;
    color: #000;
}

.facility-showcase-item:hover .facility-icon-overlay {
    transform: rotate(360deg) scale(1.15);
    box-shadow: 0 12px 35px rgba(192, 155, 102, 0.7);
}

.facility-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.facility-content h3 {
    font-size: 22px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.facility-content p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 14px;
}

/* Responsive Facilities */
@media (max-width: 768px) {
    .facilities-grid-showcase {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 25px;
    }
    
    .facility-image-wrapper {
        height: 180px;
    }
    
    .facility-content {
        padding: 20px;
    }
    
    .facility-content h3 {
        font-size: 18px;
    }
    
    .facility-icon-overlay {
        width: 50px;
        height: 50px;
    }
    
    .facility-icon-overlay i {
        font-size: 22px;
    }
}

/* ========================================
   CINEMATIC VIDEO GALLERY - AUTOPLAY ON SCROLL
   ======================================== */

.cinematic-gallery-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--light-bg) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cinematic-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(192, 155, 102, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cinematic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.cinematic-video-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95) 0%, rgba(15, 15, 15, 0.95) 100%);
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid rgba(192, 155, 102, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    position: relative;
}

.cinematic-video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(192, 155, 102, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.cinematic-video-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(192, 155, 102, 0.5);
    box-shadow: 0 20px 60px rgba(192, 155, 102, 0.3), 0 0 80px rgba(192, 155, 102, 0.15);
}

.cinematic-video-card:hover::before {
    opacity: 1;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #000;
}

.cinematic-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.cinematic-video-card:hover .cinematic-video {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.cinematic-video.playing + .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gold-gradient);
    border: none;
    color: #000;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(192, 155, 102, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
}

.play-button:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(192, 155, 102, 0.7);
}

.play-button i {
    transition: all 0.3s ease;
}

.play-button.playing i:before {
    content: '\f04c'; /* pause icon */
}

.video-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--primary-gold);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    border: 1px solid rgba(192, 155, 102, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.video-badge i {
    font-size: 16px;
}

.video-info {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.video-info h3 {
    font-size: 24px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.video-info p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 15px;
}

/* Video playing state */
.cinematic-video.playing {
    filter: brightness(1.1);
}

/* Autoplay indicator */
.video-autoplay-indicator {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(192, 155, 102, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 20px;
    color: var(--primary-gold);
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    display: none;
    align-items: center;
    gap: 5px;
    animation: pulse 2s ease-in-out infinite;
}

.video-autoplay-indicator.active {
    display: flex;
}

/* Responsive Cinematic Gallery */
@media (max-width: 768px) {
    .cinematic-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .video-wrapper {
        height: 300px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
    
    .video-info {
        padding: 20px;
    }
    
    .video-info h3 {
        font-size: 20px;
    }
}

/* ========================================
   LUXURY ARMADA REDESIGN - PREMIUM STYLE
   ======================================== */

.luxury-armada-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.luxury-armada-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(192, 155, 102, 0.1);
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.luxury-armada-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(192, 155, 102, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.luxury-armada-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(192, 155, 102, 0.5);
    box-shadow: 0 25px 60px rgba(192, 155, 102, 0.3), 0 0 80px rgba(192, 155, 102, 0.2);
}

.luxury-armada-card:hover::before {
    opacity: 1;
}

.armada-image-wrapper {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(180deg, #000 0%, #1a1a1a 100%);
}

.armada-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-armada-card:hover .armada-main-image {
    transform: scale(1.15);
}

.armada-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold-gradient);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    color: #000;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(192, 155, 102, 0.5);
    animation: pulse 2s ease-in-out infinite;
    z-index: 3;
}

.armada-badge i {
    margin-right: 5px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 5px 20px rgba(192, 155, 102, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 8px 30px rgba(192, 155, 102, 0.7); }
}

.armada-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.luxury-armada-card:hover .armada-overlay {
    opacity: 1;
}

.btn-view-detail {
    background: var(--gold-gradient);
    color: #000;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(192, 155, 102, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-view-detail:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(192, 155, 102, 0.6);
}

.btn-view-detail i {
    margin-right: 10px;
}

.luxury-armada-content {
    padding: 35px;
    position: relative;
    z-index: 2;
}

.armada-header {
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(192, 155, 102, 0.2);
    padding-bottom: 20px;
}

.armada-header h3 {
    font-size: 28px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.armada-type {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(192, 155, 102, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--primary-gold);
    font-weight: 500;
    border: 1px solid rgba(192, 155, 102, 0.3);
}

.armada-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.spec-item {
    background: rgba(192, 155, 102, 0.08);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(192, 155, 102, 0.2);
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: rgba(192, 155, 102, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(192, 155, 102, 0.3);
}

.spec-item i {
    font-size: 24px;
    color: var(--primary-gold);
    margin-bottom: 8px;
    display: block;
}

.spec-item span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-gray);
}

.luxury-facilities {
    margin-bottom: 25px;
}

.luxury-facilities h4 {
    font-size: 18px;
    color: var(--primary-gold);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.luxury-facilities h4 i {
    font-size: 20px;
}

.facility-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.luxury-facility-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(192, 155, 102, 0.05);
    padding: 12px 15px;
    border-radius: 12px;
    border-left: 3px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.luxury-facility-item:hover {
    background: rgba(192, 155, 102, 0.15);
    transform: translateX(5px);
}

.luxury-facility-item i {
    color: var(--primary-gold);
    font-size: 18px;
    min-width: 20px;
}

.luxury-facility-item span {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.armada-description {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(192, 155, 102, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
}

.armada-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 25px;
    border-top: 2px solid rgba(192, 155, 102, 0.2);
}

.armada-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.price-value {
    font-size: 32px;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-unit {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 3px;
}

.btn-book-now {
    background: var(--gold-gradient);
    color: #000;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(192, 155, 102, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.btn-book-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(192, 155, 102, 0.6);
}

/* ========================================
   LUXURY MODAL - ARMADA DETAIL
   ======================================== */

.luxury-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.luxury-modal-content {
    background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 30px;
    position: relative;
    border: 2px solid rgba(192, 155, 102, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 100px rgba(192, 155, 102, 0.3);
    animation: slideInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(100px); }
    to { opacity: 1; transform: translateY(0); }
}

.luxury-modal-content::-webkit-scrollbar {
    width: 10px;
}

.luxury-modal-content::-webkit-scrollbar-track {
    background: rgba(192, 155, 102, 0.1);
    border-radius: 10px;
}

.luxury-modal-content::-webkit-scrollbar-thumb {
    background: var(--gold-gradient);
    border-radius: 10px;
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(192, 155, 102, 0.2);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--gold-gradient);
    color: #000;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 5px 20px rgba(192, 155, 102, 0.6);
}

.modal-header-luxury {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(192, 155, 102, 0.1) 0%, transparent 100%);
}

.modal-image-section {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.modal-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.modal-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold-gradient);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    color: #000;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(192, 155, 102, 0.6);
}

.modal-title-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-title-section h2 {
    font-size: 42px;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.modal-subtitle {
    font-size: 18px;
    color: var(--primary-gold);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-specs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.modal-spec-item {
    background: rgba(192, 155, 102, 0.1);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-gold);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.modal-spec-item:hover {
    background: rgba(192, 155, 102, 0.2);
    transform: translateX(10px);
}

.modal-spec-item i {
    font-size: 28px;
    color: var(--primary-gold);
}

.modal-spec-item span {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

.modal-body-luxury {
    padding: 40px;
}

.modal-section {
    margin-bottom: 40px;
}

.modal-section h3 {
    font-size: 24px;
    color: var(--primary-gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(192, 155, 102, 0.3);
}

.modal-section h3 i {
    font-size: 26px;
}

.modal-section p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 16px;
}

.modal-facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.modal-facility-item {
    background: rgba(192, 155, 102, 0.08);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(192, 155, 102, 0.2);
    transition: all 0.3s ease;
}

.modal-facility-item:hover {
    background: rgba(192, 155, 102, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(192, 155, 102, 0.3);
    border-color: var(--primary-gold);
}

.modal-facility-item i {
    font-size: 32px;
    color: var(--primary-gold);
    margin-bottom: 12px;
    display: block;
}

.modal-facility-item span {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
}

.facility-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.facility-photo-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid rgba(192, 155, 102, 0.2);
}

.facility-photo-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(192, 155, 102, 0.4);
    border-color: var(--primary-gold);
}

.facility-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.facility-photo-item:hover img {
    transform: scale(1.1);
}

.facility-photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--primary-gold);
    padding: 15px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.facility-photo-item:hover .facility-photo-label {
    transform: translateY(0);
}

.modal-footer-luxury {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(192, 155, 102, 0.1) 0%, transparent 100%);
    border-radius: 20px;
}

.modal-price-section {
    display: flex;
    flex-direction: column;
}

.modal-price-label {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.modal-price-value {
    font-size: 48px;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.modal-price-unit {
    font-size: 16px;
    color: var(--text-gray);
    margin-top: 5px;
}

.btn-modal-book {
    background: var(--gold-gradient);
    color: #000;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(192, 155, 102, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-modal-book:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(192, 155, 102, 0.7);
}

.btn-modal-book i {
    font-size: 20px;
}

/* ========================================
   TESTIMONIALS SECTION - PREMIUM STYLE
   ======================================== */

.testimonials-section {
    background: var(--light-bg);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
}

.testimonial-card {
    min-width: 100%;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9) 0%, rgba(15, 15, 15, 0.9) 100%);
    padding: 40px;
    border-radius: 25px;
    border: 2px solid rgba(192, 155, 102, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 120px;
    color: rgba(192, 155, 102, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--primary-gold);
    font-size: 20px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: 28px;
    color: #000;
}

.author-info h4 {
    font-size: 18px;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-gray);
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold-gradient);
    border: none;
    color: #000;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(192, 155, 102, 0.4);
}

.testimonial-nav:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(192, 155, 102, 0.6);
}

.testimonial-nav.prev { left: -70px; }
.testimonial-nav.next { right: -70px; }

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(192, 155, 102, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--primary-gold);
    width: 30px;
    border-radius: 10px;
}

/* ========================================
   CONTACT SECTION WITH MAP
   ======================================== */

.contact-section {
    background: var(--dark-bg);
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9) 0%, rgba(15, 15, 15, 0.9) 100%);
    border-radius: 20px;
    border: 2px solid rgba(192, 155, 102, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(192, 155, 102, 0.5);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(192, 155, 102, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 28px;
    color: #000;
}

.contact-details h3 {
    font-size: 18px;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.contact-details p {
    color: var(--text-gray);
    line-height: 1.6;
}

.btn-wa-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.btn-wa-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(192, 155, 102, 0.2);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(192, 155, 102, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--gold-gradient);
    color: #000;
    transform: translateY(-3px);
}

/* Responsive untuk Luxury Armada */
@media (max-width: 1024px) {
    .luxury-armada-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .testimonial-nav.prev { left: 10px; }
    .testimonial-nav.next { right: 10px; }
    
    .modal-header-luxury {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .modal-facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facility-photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .facility-photo-item {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 40px;
    }
    
    .logo-text {
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    .luxury-armada-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .armada-specs {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .facility-list {
        grid-template-columns: 1fr;
    }
    
    .armada-footer {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-book-now {
        width: 100%;
        justify-content: center;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .testimonial-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .testimonial-nav.prev { left: 5px; }
    .testimonial-nav.next { right: 5px; }
    
    .contact-wrapper {
        gap: 30px;
    }
    
    .contact-map {
        height: 350px;
    }
    
    .bus-animation {
        width: 200px;
        height: 100px;
    }
    
    .bus-body {
        width: 80px;
        height: 40px;
    }
    
    .bus-body::before {
        width: 60px;
        height: 15px;
        left: 7px;
    }
    
    .bus-window {
        width: 15px;
        height: 10px;
    }
    
    .bus-window:nth-child(1) { left: 10px; }
    .bus-window:nth-child(2) { left: 28px; }
    .bus-window:nth-child(3) { left: 46px; }
    
    .bus-wheel {
        width: 15px;
        height: 15px;
    }
    
    .loader-text {
        font-size: 28px;
    }
    
    .luxury-modal-content {
        width: 95%;
        border-radius: 20px;
    }
    
    .modal-header-luxury {
        padding: 25px;
    }
    
    .modal-body-luxury {
        padding: 25px;
    }
    
    .modal-facilities-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .facility-photos-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .facility-photo-item {
        height: 220px;
    }
    
    .facility-photo-label {
        transform: translateY(0);
        font-size: 12px;
        padding: 12px;
    }
    
    .modal-footer-luxury {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .btn-modal-book {
        width: 100%;
        justify-content: center;
    }
}
