/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&display=swap');

:root {
    --primary-red: #f3722c;      /* Orange (Keeping variable name to avoid massive rename) */
    --dark-red: #f8961e;         /* Darker Orange / Accent */
    --gold: #f9c74f;             /* Gold / Yellow Accent */
    --bg-dark: #111111;
    --bg-light: #ffffff;
    --text-dark: #333333;
    --text-light: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --transition: 0.3s ease-in-out;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Top Promo Bar */
.top-bar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--dark-red);
    color: #111;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 1002;
    transition: var(--transition);
}

.top-bar a {
    color: #111;
    text-decoration: underline;
    font-weight: 700;
    margin-left: 10px;
    transition: var(--transition);
}

.top-bar a:hover {
    color: var(--gold);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 40px; /* Below top bar */
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.3); /* Semi-transparent dark background */
    backdrop-filter: blur(4px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 50px;
}

.navbar .logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-red);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
}

.navbar.scrolled .logo {
    color: var(--primary-red);
    text-shadow: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-weight: 600;
    color: var(--text-light);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-links li a {
    color: var(--text-dark);
    text-shadow: none;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-red);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    color: var(--text-light);
    text-align: center;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

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

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active, .dot:hover {
    background: var(--primary-red);
    transform: scale(1.2);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--bg-light), transparent);
}

.hero-content {
    z-index: 2;
    animation: fadeIn 1.5s ease-out;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 span {
    color: var(--primary-red);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-inline: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-red);
    color: var(--text-light);
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-red);
    cursor: pointer;
}

.btn:hover {
    background: transparent;
    color: var(--primary-red);
    box-shadow: 0 0 15px var(--primary-red);
}

/* Sections General */
section {
    padding: 60px 50px 80px;
    scroll-margin-top: 80px;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.section-title span {
    color: var(--primary-red);
}

/* Categories Filter */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid var(--primary-red);
    background: transparent;
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-red);
    color: var(--text-light);
}

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

.packages .grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.card {
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.2);
}

.card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.4s ease, object-position 0.4s ease;
    display: block;
}

/* Package card — gambar proporsional & konsisten */
.packages .card-img {
    height: 200px;
    border-radius: 0;
}

.card:hover .card-img {
    transform: scale(1.08);
}

/* Accommodation card — gambar lebih tinggi & posisi terpusat */
.accommodations .card-img {
    height: 220px;
    object-position: center 30%;
}

.accommodations .card:hover .card-img {
    transform: scale(1.06);
    object-position: center 40%;
}

.card-img-wrapper {
    overflow: hidden;
    position: relative;
}

.card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-red);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.card-body {
    padding: 15px;
    position: relative;
    background: var(--bg-light);
    z-index: 2;
}

.card-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.card-desc {
    color: #666;
    margin-bottom: 12px;
    line-height: 1.4;
    font-size: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-red);
}

/* Accommodations Section */
.accommodations {
    background: #fcfcfc;
}

/* Pricing Cards Section */
.pricing-section {
    padding: 40px 5%;
    background: #f4f7f6;
    text-align: center;
    scroll-margin-top: 80px;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.pricing-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 30px 20px;
    width: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.pricing-card.recommended {
    border: 2px solid var(--primary-red);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(229, 9, 20, 0.15);
}

.pricing-card.recommended:hover {
    transform: scale(1.05) translateY(-10px);
}

.recommended-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-red);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-header h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.pricing-price {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.pricing-price .currency {
    font-size: 1.2rem;
    vertical-align: top;
    font-weight: 600;
}

.pricing-price .amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
}

.pricing-price .period {
    font-size: 0.9rem;
    color: #888;
}

.pricing-header p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #444;
    display: flex;
    align-items: center;
}

.pricing-features li i {
    color: #28a745;
    margin-right: 10px;
    font-size: 1.1rem;
}

.pricing-features li.disabled {
    color: #aaa;
    text-decoration: line-through;
}

.pricing-features li.disabled i {
    color: #dc3545;
}

/* Package Card Features */
.package-features-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 20px 0;
    text-align: left;
}

.package-features-list li {
    margin-bottom: 6px;
    font-size: 0.75rem;
    color: #444;
    display: flex;
    align-items: center;
}

.package-features-list li i {
    color: #28a745;
    margin-right: 6px;
    font-size: 0.85rem;
}

.package-features-list li.disabled {
    color: #aaa;
    text-decoration: line-through;
}

.package-features-list li.disabled i {
    color: #dc3545;
}

.pricing-btn {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border-radius: 25px;
}

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

.pricing-card.recommended .pricing-btn:hover {
    background: #c40810;
}

/* Page Header (harga.php) */
.page-header {
    padding: 120px 5% 60px;
    text-align: center;
    background: linear-gradient(135deg, #111, #222);
    color: #fff;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, var(--primary-red), var(--dark-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.1rem;
    color: #aaa;
}

/* Footer */
footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 50px;
    text-align: center;
    scroll-margin-top: 80px;
}

.footer-content h3 {
    color: var(--primary-red);
    margin-bottom: 15px;
}

.footer-content p {
    color: #999;
}

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

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-15px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================
   HAMBURGER MENU
   ============================ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span {
    background: var(--text-dark);
}

/* Animated X when open */
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================
   LARGE DESKTOP (1400px+)
   ============================ */
@media (min-width: 1400px) {
    section { padding: 80px 8%; }
    .navbar { padding: 20px 8%; }
    .navbar.scrolled { padding: 15px 8%; }
    .hero h1 { font-size: 5.5rem; }
}

/* ============================
   TABLET LANDSCAPE (1024px-1199px)
   ============================ */
@media (max-width: 1199px) {
    .packages .grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .pricing-grid {
        gap: 20px;
    }
    .pricing-card {
        width: 240px;
    }
}

/* ============================
   TABLET PORTRAIT (768px-1023px)
   ============================ */
@media (max-width: 1023px) {
    section { padding: 60px 30px; }
    .navbar { padding: 18px 30px; }
    .navbar.scrolled { padding: 14px 30px; }

    .packages .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 { font-size: 3.5rem; }
    .hero p  { font-size: 1.05rem; }

    .section-title { font-size: 2.2rem; }

    .pricing-grid {
        gap: 20px;
    }
    .pricing-card {
        width: calc(50% - 20px);
        min-width: 240px;
    }

    footer { padding: 50px 30px; }
}

/* ============================
   MOBILE (max 767px) — Hamburger ON
   ============================ */
@media (max-width: 767px) {
    /* Hamburger */
    .hamburger { display: flex; }

    /* Full-screen dropdown nav */
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.97);
        justify-content: center;
        align-items: center;
        gap: 30px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 1050;
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: all;
        animation: slideDown 0.3s ease;
    }

    .nav-links li a {
        font-size: 1.6rem;
        color: #fff !important;
        text-shadow: none !important;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        color: var(--primary-red) !important;
    }

    /* Sections */
    section { padding: 50px 20px; }

    /* Navbar - solid background so it's always visible */
    .navbar {
        padding: 14px 20px;
        top: 0;
        background: rgba(0, 0, 0, 0.92) !important;
        backdrop-filter: blur(8px);
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .navbar.scrolled { padding: 12px 20px; background: rgba(0, 0, 0, 0.95) !important; }

    /* Show top-bar on mobile, smaller font */
    .top-bar { font-size: 0.78rem; padding: 8px 15px; }

    /* Push navbar below the top-bar */
    .navbar { top: 36px !important; }

    /* Hero */
    .hero { height: 100svh; }
    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    .hero p { font-size: 0.95rem; }
    .slider-btn { padding: 10px 14px; font-size: 1.4rem; }
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }

    /* Section title */
    .section-title { font-size: 1.8rem; margin-bottom: 30px; }

    /* Cards grid */
    .packages .grid,
    .grid {
        grid-template-columns: 1fr;
    }

    /* Pricing cards */
    .pricing-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .pricing-card {
        width: 100%;
        max-width: 380px;
    }
    .pricing-card.recommended {
        transform: scale(1);
    }
    .pricing-card.recommended:hover {
        transform: translateY(-10px);
    }

    /* Category filter */
    .category-filter { gap: 10px; }
    .filter-btn { padding: 6px 14px; font-size: 0.85rem; }

    /* Footer */
    footer { padding: 40px 20px; }
    .footer-content h3 { font-size: 1.4rem; }

    /* WhatsApp widget */
    .wa-widget { width: 50px; height: 50px; font-size: 28px; bottom: 20px; right: 20px; }
}

/* ============================
   SMALL PHONE (max 420px)
   ============================ */
@media (max-width: 420px) {
    .hero h1 { font-size: 1.8rem; }
    .hero p  { font-size: 0.85rem; }
    .btn { padding: 10px 20px; font-size: 0.85rem; }
    .section-title { font-size: 1.5rem; }
    .pricing-card { padding: 25px 16px; }
    .card-img { height: 150px; }
}

/* WhatsApp Floating Widget */
.wa-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0px 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.3s ease;
    animation: pulse-wa 2s infinite;
}

.wa-widget:hover {
    transform: scale(1.1);
    color: white;
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===========================
   GALLERY SECTION
=========================== */
.gallery-section {
    padding: 80px 100px;
    background: #f8f9fa;
}

.section-subtitle {
    text-align: center;
    color: #888;
    margin-top: -20px;
    margin-bottom: 40px;
    font-size: 1rem;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gal-btn {
    padding: 8px 22px;
    border: 2px solid var(--primary-red);
    background: transparent;
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gal-btn:hover,
.gal-btn.active {
    background: var(--primary-red);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.gallery-item.hidden {
    display: none;
}

.gallery-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

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

.gallery-thumb:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    gap: 8px;
}

.gallery-thumb:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2.8rem;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

.gallery-overlay.video-overlay {
    opacity: 1;
    background: rgba(0,0,0,0.3);
}

.gallery-thumb:hover .gallery-overlay.video-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.video-overlay i {
    color: #fff;
    background: var(--primary-red);
    border-radius: 50%;
    padding: 4px;
}

.gallery-overlay span {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    padding: 0 12px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

/* Lightbox */
.lightbox-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease;
}

.lightbox-modal.open {
    display: flex;
}

.lightbox-modal img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 24px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.lightbox-close:hover { color: var(--primary-red); }

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease;
}

.video-modal.open {
    display: flex;
}

.video-modal-inner {
    background: #1a1a1a;
    border-radius: 14px;
    padding: 24px;
    width: 90vw;
    max-width: 860px;
    position: relative;
}

.video-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.video-modal-close:hover { color: var(--primary-red); }

#videoModalTitle {
    color: white;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ===========================
   TESTIMONIALS SECTION
=========================== */
.testimonials-section {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #111 0%, #1e1e1e 100%);
    overflow: hidden;
}

.testimonials-section .section-title {
    color: white;
}

.testimonials-section .section-subtitle {
    color: #aaa;
}

.testimonials-track-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    padding: 20px 100px 30px;
    animation: scrollTestimonials 30s linear infinite;
    width: max-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTestimonials {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 20px;
    width: 260px;
    flex-shrink: 0;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary-red);
    transform: translateY(-4px);
}

.testimonial-stars {
    margin-bottom: 14px;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 1rem;
    margin-right: 2px;
}

.testimonial-content {
    color: #ddd;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-red);
    flex-shrink: 0;
}

.testimonial-avatar-placeholder {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    color: white;
    font-size: 0.95rem;
}

.testimonial-author span {
    display: block;
    color: #999;
    font-size: 0.8rem;
    margin-top: 2px;
}

.testimonial-cta {
    text-align: center;
    margin-top: 40px;
    padding: 0 100px;
}

.testimonial-cta .btn {
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    padding: 12px 32px;
    font-size: 1rem;
}

.testimonial-cta .btn:hover {
    background: var(--primary-red);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-section { padding: 60px 20px; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
    .testimonials-section { padding: 60px 0 40px; }
    .testimonial-card { width: 240px; }
    .testimonials-track { padding: 20px 20px 30px; }
}
