
:root {
    --bg-main: #F7F5F2; 
    --dark-graphite: #1C1C1C; 
    --accent-orange: #E05D34; 
    --accent-hover: #C24A26;
    --card-bg: #FFFFFF; 
    --text-muted: #666666;
    --success: #2ecc71;
    --danger: #e74c3c;
    --fb-blue: #1877f2;
    --radius: 16px;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    -webkit-tap-highlight-color: transparent;
}
html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden; 
    background-color: var(--bg-main);
    color: var(--dark-graphite);
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.glass-header {
    background: rgba(28, 28, 28, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo i, .logo span { color: var(--accent-orange); }
.nav-links {
    display: flex;
    gap: 25px; 
    font-weight: 500;
}
.nav-links a {
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
}
.nav-links a i { color: var(--accent-orange); opacity: 0.8; font-size: 0.9rem; transition: opacity 0.3s; }
.nav-links a:hover i { opacity: 1; }
.nav-links a:hover { color: var(--accent-orange); }
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease-in-out;
}
.nav-links a:hover::after { width: 100%; }
.burger { display: none; font-size: 1.5rem; cursor: pointer; color: white; }
.hero {
    background: linear-gradient(rgba(28, 28, 28, 0.5), rgba(28, 28, 28, 0.8)), url('https://images.unsplash.com/photo-1502672260266-1c1de2d93688?q=80&w=2000&auto=format&fit=crop') center/cover;
    height: 85vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}
.hero-content {
    animation: fadeIn 1s ease-out;
}
.hero h1 { font-size: 4rem; margin-bottom: 15px; font-weight: 700; line-height: 1.1; }
.hero p { font-size: 1.3rem; margin-bottom: 35px; opacity: 0.9; font-weight: 300; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(224, 93, 52, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(224, 93, 52, 0); }
    100% { box-shadow: 0 0 0 0 rgba(224, 93, 52, 0); }
}
.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--accent-orange);
    color: white;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(224, 93, 52, 0.3);
}
.btn-main:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(224, 93, 52, 0.5);
}
.pulse-btn { animation: pulse 2s infinite; }
.btn-large { padding: 18px 50px; font-size: 1.15rem; }
.slide-icon { transition: transform 0.3s ease; }
.btn-main:hover .slide-icon, .link-action:hover .slide-icon { transform: translateX(6px); }
.center-action { text-align: center; margin-top: 50px; }
.section-padding { padding: 90px 0; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 60px; font-weight: 700; }
.grid-listings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}
.card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}
.card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.card-img-wrapper { position: relative; display: block; overflow: hidden; }
.card-img-wrapper img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card-img-wrapper img { transform: scale(1.05); }
.badge { position: absolute; top: 15px; left: 15px; padding: 6px 14px; border-radius: 6px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; z-index: 2; color: white; }
.badge-success { background: var(--success); }
.badge-danger { background: var(--danger); }
.card-body { padding: 30px; display: flex; flex-direction: column; flex-grow: 1; }
.status-indicator { font-size: 0.85rem; font-weight: 600; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.available { color: var(--success); }
.danger-text { color: var(--danger); font-weight: 700 !important; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.live-dot { background: var(--success); animation: pulseGreen 2s infinite; }
.dot-danger { background: var(--danger); }
@keyframes pulseGreen {
    0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(46, 204, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}
.price { font-size: 1.6rem; font-weight: 700; color: var(--accent-orange); margin-bottom: 12px; }
.price-sub { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.card-title-link h3 { font-size: 1.4rem; margin-bottom: 12px; color: var(--dark-graphite); transition: color 0.3s; }
.card-title-link:hover h3 { color: var(--accent-orange); }
.card-meta { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 25px; flex-grow: 1; }
.card-btn {
    display: block; text-align: center; background: var(--bg-main); color: var(--dark-graphite);
    padding: 12px 0; border-radius: 8px; font-weight: 600; transition: all 0.3s;
}
.card:hover .card-btn { background: var(--accent-orange); color: white; }
.btn-disabled { background-color: #eee !important; color: #999 !important; pointer-events: none; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.benefit-card {
    background: var(--card-bg); padding: 40px 30px; border-radius: var(--radius); text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.02); transition: var(--transition);
}
.benefit-card:hover {
    transform: translateY(-12px); box-shadow: 0 20px 40px rgba(224, 93, 52, 0.12); border-color: rgba(224, 93, 52, 0.2);
}
.icon-wrapper {
    width: 80px; height: 80px; margin: 0 auto 25px; background: rgba(224, 93, 52, 0.08);
    border-radius: 50%; display: flex; justify-content: center; align-items: center; transition: all 0.4s ease;
}
.icon-wrapper i { font-size: 2.2rem; color: var(--accent-orange); transition: all 0.4s ease; }
.benefit-card:hover .icon-wrapper { background: var(--accent-orange); transform: scale(1.1); }
.benefit-card:hover .icon-wrapper i { color: white; transform: scale(1.05); }
.benefit-card h4 { font-size: 1.3rem; margin-bottom: 15px; color: var(--dark-graphite); }
.benefit-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }
.video-showcase { background: linear-gradient(to bottom, var(--dark-graphite), #111); color: white; padding: 100px 0; text-align: center; }
.showcase-title { font-size: 2.5rem; margin-bottom: 15px; font-weight: 700; }
.showcase-sub { font-size: 1.1rem; color: #ccc; }
.video-wrapper {
    position: relative; max-width: 900px; margin: 50px auto 0; border-radius: var(--radius);
    overflow: hidden; cursor: pointer; box-shadow: 0 25px 50px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}
.glow-hover:hover { box-shadow: 0 20px 60px rgba(224, 93, 52, 0.3); transform: translateY(-5px); }
.video-wrapper img { width: 100%; display: block; opacity: 0.7; transition: opacity 0.4s; }
.video-wrapper:hover img { opacity: 1; }
.play-btn {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 80px; height: 80px; background: var(--accent-orange); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; padding-left: 6px; box-shadow: 0 0 30px rgba(224, 93, 52, 0.6); transition: var(--transition);
}
.video-wrapper:hover .play-btn { transform: translate(-50%, -50%) scale(1.15); background: white; color: var(--accent-orange); }
.link-action { color: var(--accent-orange); font-weight: 600; font-size: 1.1rem; border-bottom: 1px solid var(--accent-orange); padding-bottom: 3px; transition: all 0.3s; }
.link-action:hover { color: white; border-color: white; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.review-card { background: var(--card-bg); padding: 35px; border-radius: var(--radius); box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.02); transition: var(--transition); }
.review-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.06); }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.stars { color: #f39c12; font-size: 1.1rem; }
.fb-badge { background: rgba(24, 119, 242, 0.1); color: var(--fb-blue); padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; display: flex; align-items: center; gap: 6px; }
.fb-badge i { font-size: 1rem; }
.review-text { font-style: italic; color: var(--text-muted); margin-bottom: 25px; font-size: 1.05rem; }
.reviewer { display: flex; align-items: center; gap: 15px; }
.reviewer img { width: 55px; height: 55px; border-radius: 50%; border: 2px solid var(--bg-main); }
.reviewer-info h5 { font-size: 1.1rem; color: var(--dark-graphite); margin-bottom: 2px;}
.fb-link { color: var(--fb-blue); font-size: 0.9rem; font-weight: 600; text-decoration: underline; transition: opacity 0.3s; }
.fb-link:hover { opacity: 0.7; }
footer { background: linear-gradient(to bottom, var(--dark-graphite), #0a0a0a); color: white; padding: 70px 0 25px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; margin-bottom: 50px; }
.footer-logo { font-size: 1.8rem; font-weight: 700; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; }
.footer-logo i, .footer-logo span { color: var(--accent-orange); }
.footer-desc { color: #aaa; margin-bottom: 25px; line-height: 1.6; }
.wa-btn { display: inline-flex; align-items: center; gap: 12px; color: white; background: rgba(255,255,255,0.05); padding: 12px 20px; border-radius: 8px; font-size: 1.1rem; font-weight: 600; margin-bottom: 15px; transition: all 0.3s; border: 1px solid rgba(255,255,255,0.1); }
.wa-btn i { color: #25D366; font-size: 1.4rem; }
.wa-btn:hover { background: rgba(37, 211, 102, 0.2); border-color: #25D366; transform: translateY(-2px); }
.work-hours { color: #888; font-size: 0.95rem; margin-left: 5px; }
.footer-links h4 { font-size: 1.2rem; margin-bottom: 20px; color: white; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { display: inline-flex; align-items: center; gap: 10px; color: #aaa; transition: all 0.3s; }
.footer-links a i { color: var(--accent-orange); font-size: 0.8rem; opacity: 0; transform: translateX(-10px); transition: all 0.3s; }
.footer-links a:hover { color: white; transform: translateX(5px); }
.footer-links a:hover i { opacity: 1; transform: translateX(0); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 25px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; font-size: 0.95rem; color: #888; }
.payment-icons { display: flex; gap: 20px; align-items: center; }
.payment-icons i { font-size: 2.2rem; color: #fff; opacity: 0.6; transition: opacity 0.3s; cursor: pointer; }
.payment-icons i:hover { opacity: 1; }
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease; 
}
.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: linear-gradient(145deg, #1C1C1C 0%, #0a0a0a 100%);
    box-shadow: -15px 0 50px rgba(0,0,0,0.6);
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%); 
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); 
    overflow: hidden; 
}
.mobile-menu-content::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -20%;
    width: 250px;
    height: 250px;
    background: var(--accent-orange);
    filter: blur(100px);
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
}
.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}
.mobile-menu-header, .mobile-links, .mobile-contact-area {
    position: relative; 
    z-index: 1;
}
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 20px;
}
.close-btn {
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: transform 0.3s;
}
.close-btn:hover { color: var(--accent-orange); transform: rotate(90deg); }
.mobile-links { flex-grow: 1; }
.mobile-links li { 
    margin-bottom: 25px; 
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
}
.mobile-menu-overlay.active .mobile-links li {
    opacity: 1;
    transform: translateX(0);
}
.mobile-menu-overlay.active .mobile-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu-overlay.active .mobile-links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu-overlay.active .mobile-links li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-links li:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu-overlay.active .mobile-links li:nth-child(7) { transition-delay: 0.4s; }
.mobile-links a {
    color: white;
    font-size: 1.3rem;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}
.mobile-links a i { width: 30px; color: var(--accent-orange); font-size: 1.1rem; }
.mobile-links a:hover { color: var(--accent-orange); }
.whatsapp-fab {
    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: 2.2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 998; 
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease;
    animation: whatsappPulse 2s infinite;
}
.whatsapp-fab:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    color: white;
}
@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, opacity; 
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.mini-hero {
    background: linear-gradient(rgba(28, 28, 28, 0.7), rgba(28, 28, 28, 0.9)), url('https://images.unsplash.com/photo-1513694203232-719a280e022f?q=80&w=2000&auto=format&fit=crop') center/cover;
    height: 35vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}
.mini-hero h1 { font-size: 3rem; margin-bottom: 10px; font-weight: 700; }
.mini-hero p { font-size: 1.1rem; color: #ccc; }
.filter-bar {
    position: sticky;
    top: 75px; 
    background: rgba(247, 245, 242, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 900;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}
.filter-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    gap: 20px; 
    flex-wrap: wrap; 
}
.filter-pills {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 14px;
    flex-grow: 1;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-orange) rgba(0, 0, 0, 0.03);
}
.filter-pills::-webkit-scrollbar {
    height: 6px; 
}
.filter-pills::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 10px;
}
.filter-pills::-webkit-scrollbar-thumb {
    background-color: var(--accent-orange);
    border-radius: 10px;
}
.filter-pills::-webkit-scrollbar-thumb:hover {
    background-color: var(--accent-hover);
}
.pill {
    flex-shrink: 0; 
    scroll-snap-align: start; 
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    color: var(--dark-graphite);
}
.pill:hover { 
    border-color: var(--accent-orange); 
    color: var(--accent-orange); 
    transform: translateY(-2px);
}
.pill.active { 
    background: var(--accent-orange); 
    color: white; 
    border-color: var(--accent-orange); 
    box-shadow: 0 6px 20px rgba(224, 93, 52, 0.4); 
    transform: translateY(-2px) scale(1.03); 
}
.right-filters { display: flex; gap: 15px; }
.custom-select {
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: var(--card-bg);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-graphite);
    cursor: pointer;
    outline: none;
    transition: border 0.3s;
}
.custom-select:focus { border-color: var(--accent-orange); }
.favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    color: #ccc;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: none;
}
.favorite-btn:hover { transform: scale(1.1); color: var(--danger); }
.favorite-btn.active { color: var(--danger); }
.favorite-btn.active i { font-weight: 900; } 
.meta-icons { display: flex; gap: 15px; font-size: 0.9rem; color: var(--text-muted); margin-bottom: 25px; flex-wrap: wrap; }
.meta-icons span { display: flex; align-items: center; gap: 6px; }
.meta-icons i { color: var(--accent-orange); opacity: 0.8; }
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px dashed #ccc;
    display: none; 
}
.empty-state i { font-size: 3rem; color: #ccc; margin-bottom: 20px; }
.empty-state h3 { font-size: 1.5rem; margin-bottom: 10px; }
.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}
.video-tour-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.02);
    transition: var(--transition);
}
.video-tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(224, 93, 52, 0.08);
}
.premium-player-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
    user-select: none;
}
.premium-player-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.player-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 60%, transparent 100%);
    padding: 20px 25px 15px 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 5;
}
.premium-player-container:hover .player-controls,
.premium-player-container.paused .player-controls {
    opacity: 1;
    transform: translateY(0);
}
.timeline-container {
    height: 6px;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    transition: height 0.2s ease;
}
.timeline-container:hover {
    height: 8px;
}
.timeline-buffered {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    width: 0%;
}
.timeline-current {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: var(--accent-orange);
    border-radius: 10px;
    width: 0%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.timeline-current::after {
    content: '';
    position: absolute;
    right: -5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    transform: scale(0);
    transition: transform 0.2s ease;
}
.timeline-container:hover .timeline-current::after {
    transform: scale(1);
}
.controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}
.controls-left, .controls-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.player-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, transform 0.1s;
    padding: 5px;
}
.player-btn:hover {
    color: var(--accent-orange);
    transform: scale(1.08);
}
.player-btn:active {
    transform: scale(0.95);
}
.play-toggle i {
    font-size: 1.3rem;
}
.volume-block {
    display: flex;
    align-items: center;
    gap: 8px;
}
.volume-slider {
    width: 0;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    outline: none;
    cursor: pointer;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.volume-block:hover .volume-slider,
.volume-slider:focus {
    width: 70px;
}
.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
}
.volume-slider::-moz-range-thumb {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
}
.time-block {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}
.big-play-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    z-index: 3;
    cursor: pointer;
    transition: background 0.3s ease, opacity 0.3s ease;
}
.big-play-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    padding-left: 6px; 
    box-shadow: 0 10px 30px rgba(224, 93, 52, 0.5);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s;
}
.premium-player-container:hover .big-play-icon {
    transform: scale(1.08);
}
.premium-player-container.playing .big-play-overlay {
    opacity: 0;
    pointer-events: none;
}
.video-card-body {
    padding: 30px;
}
.video-card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--dark-graphite);
}
.video-card-body .video-loc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.video-card-body .video-loc i {
    color: var(--accent-orange);
}
.video-footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 20px;
}
.tech-badges {
    display: flex;
    gap: 10px;
}
.tech-badge {
    background: var(--bg-main);
    color: var(--dark-graphite);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.tech-badge i {
    color: var(--accent-orange);
}
@media (max-width: 1024px) {
    .nav-links { display: none; } 
    .burger { display: block; font-size: 1.6rem; }
    .hero h1 { font-size: 3.2rem; }
}
@media (max-width: 768px) {
    .hero { height: 75vh; }
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    .section-title { font-size: 1.8rem; margin-bottom: 35px; }
    .section-padding { padding: 60px 0; }
    .btn-main { width: 100%; text-align: center; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 15px; }
    .payment-icons { justify-content: center; width: 100%; }
    .whatsapp-fab {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.9rem;
    }
    .filter-container { 
        flex-direction: column; 
        align-items: flex-start; 
        overflow: hidden; 
        width: 100%; 
    }
    .filter-pills { padding-bottom: 15px; } 
    .right-filters { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
    .mini-hero { height: 25vh; }
    .mini-hero h1 { font-size: 2.2rem; }
}