/* RESET & CSS VARIABLES */
:root {
    --primary-color: #0d1e3d;
    --secondary-color: #111111;
    --accent-color: #d4af37;
    --accent-hover: #b8962e;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #333333;
    --text-muted: #666666;
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --box-shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.05);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* CONTAINER GLOBAL */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

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

.relative-z {
    position: relative;
    z-index: 2;
}

/* TYPOGRAPHY COMPONENTS */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-weight: 700;
}

.section-header {
    margin-bottom: 60px;
}

.section-header .sub-title {
    font-family: var(--font-heading);
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    letter-spacing: -0.5px;
}

.gold-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 15px auto 0;
}

/* BUTTONS & GLOW EFFECT */
.btn-premium {
    background: linear-gradient(135deg, var(--accent-color), #f3e5ab);
    color: var(--secondary-color);
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.btn-premium:hover {
    background: linear-gradient(135deg, #f3e5ab, var(--accent-color));
    transform: translateY(-2px);
}

.btn-glow {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.7);
}

.btn-outline {
    border: 2px solid var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* LOADING SCREEN */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.luxury-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-circle {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(214, 175, 87, 0.1);
    border-top: 3px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    font-family: var(--font-heading);
    color: var(--white);
    letter-spacing: 5px;
    font-size: 0.9rem;
    font-weight: 600;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* STICKY NAVBAR WITH BLUR EFFECT */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(13, 30, 61, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo {
    font-family: var(--font-heading);
    color: var(--white);
    font-weight: 800;
    font-size: 1.4rem;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-logo span {
    color: var(--accent-color);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 5px 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
}

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

.navbar .btn-cta {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.navbar .btn-cta:hover {
    background-color: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--white);
    transition: var(--transition-smooth);
}

/* HERO FULLSCREEN SECTION */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    background: linear-gradient(rgba(13, 30, 61, 0.2), rgba(13, 30, 61, 0.2)), 
                url('/image/lintas sby.webp') no-repeat center center/cover;
    z-index: 1;
    transform: translateY(0);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(17, 17, 17, 0.7) 0%, rgba(13, 30, 61, 0.85) 60%, #0d1e3d 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 24px;
    margin-top: 60px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    display: inline-block;
    margin-bottom: 25px;
    animation: floatAnim 4s ease-in-out infinite;
}

.hero-section h1 {
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-section p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-actions .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.hero-actions .btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.badge-card {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 8px;
}

.badge-card i {
    color: var(--accent-color);
}

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

/* GRID LAYOUT PATTERNS */
.grid-layout {
    display: grid;
    gap: 30px;
}

.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-5 { grid-template-columns: repeat(5, 1fr); }

/* MODERN CARD KEUNGGULAN */
.premium-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--box-shadow-premium);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition-smooth);
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(13, 30, 61, 0.08);
}

.premium-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(13, 30, 61, 0.04);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.premium-card:hover .card-icon {
    background-color: var(--primary-color);
    color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(13, 30, 61, 0.2);
}

.premium-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.premium-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* PREMIUM TRAVEL CARDS (RUTE) */
.route-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--box-shadow-premium);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.route-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.route-img-wrapper {
    height: 180px;
    background: linear-gradient(135deg, var(--primary-color), #1b3565);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.route-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.route-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    z-index: 2;
}

.route-tag.luxury {
    background: linear-gradient(135deg, #8a2387, #e94057);
    color: var(--white);
}

.route-cities {
    position: relative;
    z-index: 2;
    text-align: center;
}

.route-cities h3 {
    color: var(--white);
    font-size: 1.35rem;
    letter-spacing: -0.5px;
}

.route-cities h3 i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin: 0 5px;
}

.route-body {
    padding: 25px;
}

.route-info-list {
    list-style: none;
    margin-bottom: 25px;
}

.route-info-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.08);
    font-size: 0.9rem;
}

.route-info-list li:last-child {
    border-bottom: none;
}

.route-info-list li span:first-child {
    color: var(--text-muted);
}

.route-info-list li span:first-child i {
    width: 20px;
    color: var(--primary-color);
}

.route-info-list li span:last-child {
    font-weight: 500;
    color: var(--text-dark);
}

.route-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 20px;
}

.route-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.route-price span {
    font-size: 0.75rem;
    font-family: var(--font-primary);
    color: var(--text-muted);
    font-weight: 400;
}

.btn-arrow {
    width: 45px;
    height: 45px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.route-card:hover .btn-arrow {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    transform: rotate(-45deg);
}

.route-card.spotlight {
    border: 1px solid rgba(214, 175, 55, 0.3);
}

/* SECTION JADWAL (GLASSMORPHISM TABLE) */
.schedule-section {
    background: linear-gradient(rgba(13, 30, 61, 0.92), rgba(13, 30, 61, 0.95)), 
                url('/image/juanda.webp') no-repeat center center/cover;
    background-attachment: fixed;
    color: var(--white);
}

.schedule-section .section-header h2 {
    color: var(--white);
}

.glass-table-wrapper {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.table-header-title {
    background: rgba(255, 255, 255, 0.04);
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.table-header-title h3 {
    color: var(--white);
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-header-title h3 i {
    color: var(--accent-color);
}

.glass-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    table-layout: fixed;
}

.glass-table th {
    background-color: rgba(0, 0, 0, 0.2);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    padding: 15px 25px;
}

.glass-table td {
    padding: 18px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.95rem;
}

.glass-table tr:last-child td {
    border-bottom: none;
}

.glass-table tr:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.time-badge {
    font-family: var(--font-heading);
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-ready {
    color: #4cd137;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-ready::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #4cd137;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #4cd137;
}

.schedule-note {
    text-align: center;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* SECTION HARGA (PRICING CARD PREMIUM) */
.pricing-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    box-shadow: var(--box-shadow-premium);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(13, 30, 61, 0.1);
}

.pricing-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.pricing-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 25px;
}

.pricing-value span {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features li i {
    color: #4cd137;
}

.btn-pricing {
    display: block;
    width: 100%;
    border: 1px solid rgba(13, 30, 61, 0.15);
    background: transparent;
    color: var(--primary-color);
    padding: 12px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.pricing-card:hover .btn-pricing {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Pricing Card Featured */
.pricing-card.featured {
    background-color: var(--primary-color);
    border: 1px solid var(--accent-color);
    overflow: hidden;
}

.pricing-card.featured .pricing-title { color: var(--white); }
.pricing-card.featured .pricing-value { color: var(--white); }
.pricing-card.featured .pricing-features li { color: rgba(255, 255, 255, 0.7); }
.pricing-card.featured .btn-pricing {
    background: linear-gradient(135deg, var(--accent-color), #f3e5ab);
    color: var(--secondary-color);
    border: none;
}

.popular-ribbon {
    position: absolute;
    top: 15px;
    right: -35px;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 35px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

/* SECTION ARMADA (IMAGE HOVER ZOOM) */
.fleet-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--box-shadow-premium);
    transition: var(--transition-smooth);
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.fleet-img-box {
    height: 180px;
    overflow: hidden;
    position: relative;
    background-color: #eaeaea;
}

.fleet-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.15);
    transition: var(--transition-smooth);
}

.fleet-card:hover .fleet-image-placeholder {
    transform: scale(1.1);
    color: rgba(214, 175, 55, 0.25);
}

.fleet-details {
    padding: 25px;
}

.fleet-details h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.fleet-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 20px;
    height: 63px;
    overflow: hidden;
}

.fleet-specs {
    display: flex;
    gap: 12px;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 15px;
}

.fleet-specs span {
    font-size: 0.75rem;
    background-color: var(--light-bg);
    padding: 4px 10px;
    border-radius: 4px;
    color: var(--text-dark);
    font-weight: 500;
}

/* TESTIMONIAL SLIDER MODERN */
.testimonial-section {
    position: relative;
}

.testimonial-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-slider {
    position: relative;
    height: 320px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testi-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
}

.testi-user h4 {
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.testi-user span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stars {
    margin-top: 10px;
    color: var(--accent-color);
    font-size: 0.85rem;
}

.slider-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    width: 110%;
    left: -5%;
    transform: translateY(-50%);
    pointer-events: none;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: var(--transition-smooth);
    pointer-events: auto;
}

.slider-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dots .dot.active {
    background-color: var(--accent-color);
    width: 24px;
    border-radius: 4px;
}

/* BIG CTA SECTION */
.big-cta-section {
    position: relative;
    background: linear-gradient(rgba(13, 30, 61, 0.45), rgba(13, 30, 61, 0.45)), 
                url('/image/sby.webp') no-repeat center center/cover;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.cta-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 11, 11, 0.9) 0%, rgba(13, 30, 61, 0.95) 100%);
    z-index: 1;
}

.cta-box h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 300;
}

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

.large-btn {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-outline.white-border {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline.white-border:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* FOOTER PREMIUM DARK */
.footer-premium {
    background-color: #060e1d;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-info h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-info h3 span {
    color: var(--accent-color);
}

.footer-about {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background-color: rgba(255,255,255,0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255,255,255,0.05);
}

.social-icons a:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-grid h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-grid h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--accent-color);
}

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact p {
    font-size: 0.85rem;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.footer-contact p i {
    color: var(--accent-color);
    margin-top: 3px;
}

.footer-hours p {
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.footer-hours p i {
    color: var(--accent-color);
}

.highlight-text {
    color: var(--white);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 30px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
}

.whatsapp-floating:hover {
    transform: scale(1.08);
}

.wa-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-family: var(--font-heading);
    font-weight: 600;
}

.whatsapp-floating:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

/* SCROLL REVEAL SCENE ANIMATIONS */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE BREAKPOINTS (MOBILE FIRST) */
@media (max-width: 1200px) {
    .cols-5 { grid-template-columns: repeat(3, 1fr); }
    .cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .section-padding { padding: 80px 0; }
    .hero-section h1 { font-size: 2.8rem; }
    .cols-3 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .slider-controls { width: 100%; left: 0; padding: 0 10px; }
}

@media (max-width: 768px) {
    html { font-size: 15px; }
    .hero-section h1 { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; gap: 12px; align-items: center; }
    .hero-actions .btn-premium, .hero-actions .btn-outline { width: 100%; max-width: 320px; justify-content: center; }
    
    .mobile-toggle { display: block; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    }
    .nav-menu.active { right: 0; }
    
    /* Mobile Hamburger Transform */
    .mobile-toggle.active .bar:nth-child(2) { opacity: 0; }
    .mobile-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .mobile-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    
    .cols-2, .cols-3, .cols-4, .cols-5 { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .large-btn { width: 100%; max-width: 320px; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .testimonial-slider { height: 420px; }
}

@media (max-width: 768px) {

    .glass-table {
        min-width: unset;
    }

    .glass-table th,
    .glass-table td {
        padding: 12px 10px;
        font-size: 0.78rem;
    }

    .glass-table th {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    .time-badge {
        font-size: 0.72rem;
        padding: 4px 8px;
        white-space: nowrap;
    }

    .status-ready {
        font-size: 0.72rem;
        white-space: nowrap;
    }

    .table-header-title h3 {
        font-size: 1rem;
    }
}