/* 
   Bino Center Premium Brand Stylesheet - Refined from Scratch
   Font: Google Sans exclusively
   Brand Colors: Deep Black (#000000), Dark Slate (#111115), Vibrant Logo Orange (#fe5d0f)
*/

:root {
    --primary: #fe5d0f;
    --primary-rgb: 254, 93, 15;
    --primary-hover: #e04e0b;
    --primary-glow: rgba(254, 93, 15, 0.4);
    
    --bg-dark: #000000;
    --bg-card: rgba(17, 17, 21, 0.75);
    
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(254, 93, 15, 0.3);
    
    --text-primary: #ffffff;
    --text-muted: #a1a1aa;
    
    --font-sans: 'Google Sans', 'Google Sans Hebrew', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    font-family: var(--font-sans);
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    font-family: var(--font-sans);
}

/* RTL Helpers */
[dir="rtl"] {
    text-align: right;
}

/* LTR Safety Container for Phone/Numbers */
.ltr-dir {
    direction: ltr !important;
    display: inline-block;
}

/* Failsafe SVG Fills */
.action-icon,
.action-icon path,
.modal-close-btn svg,
.modal-close-btn svg path {
    fill: currentColor !important;
    stroke: none !important;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 24px 0;
    transition: var(--transition-smooth);
    animation: fadeInDown 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

header.scrolled {
    background: rgba(17, 17, 21, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 14px 0;
}


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

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

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

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

.header-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #ff762b 100%);
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 9999px; /* Rounded button */
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--primary-glow);
}

/* Hero Section with Looping Background Video */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-bottom: 10vh;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45; /* Muted background */
    transform: scale(1.02);
}

/* Spotlights overlay: left side transparent, right side orange and black */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: 
        linear-gradient(to top, #000000 0%, transparent 25%),
        radial-gradient(circle at 85% 50%, rgba(254, 93, 15, 0.3) 0%, rgba(0, 0, 0, 0) 65%),
        linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.4) 45%, #000000 100%);
}

.hero-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 18px;
    border-radius: 9999px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #ffffff;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-rating-badge .g-logo {
    display: flex;
    align-items: center;
}

.hero-rating-badge .rating-stars {
    color: #ffb400; /* Rich gold star color */
    letter-spacing: 2px;
}

.hero-rating-badge .rating-text {
    font-weight: 500;
    color: var(--text-muted);
}

.hero-rating-badge .rating-text strong {
    color: #ffffff;
}

/* Hero Headline styling */
.hero-title {
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-title span {
    color: var(--primary);
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Content wrapper on top of video */
.hero-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 10;
}

.hero-content {
    max-width: 580px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.hero-description {
    font-size: clamp(16px, 1.8vw, 20px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

/* Fully rounded button styled exactly like reference button - RTL oriented */
.explore-btn {
    direction: rtl !important;
    background: 
        linear-gradient(135deg, #fe5d0f 0%, #c23400 100%) padding-box, 
        linear-gradient(135deg, #ff945c 0%, #fe5d0f 100%) border-box;
    border: 2px solid transparent;
    color: #ffffff;
    padding: 8px 24px 8px 8px; /* Space on right, tight on left next to circle */
    border-radius: 9999px; /* Pill shape */
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    box-shadow: none !important; /* No shadow */
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

.explore-btn:hover {
    background: 
        linear-gradient(135deg, #ff762b 0%, #e04e0b 100%) padding-box, 
        linear-gradient(135deg, #ffa97a 0%, #ff762b 100%) border-box;
    transform: translateY(-2px);
    box-shadow: none !important;
}

/* White circle inside the button with arrow icon */
.explore-btn-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fe5d0f; /* Match brand color */
    transition: var(--transition-smooth);
}

.explore-btn:hover .explore-btn-circle {
    transform: scale(1.05);
}

.explore-btn-arrow {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Mobile Floating Capsule Actions Dock */
.mobile-action-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 320px;
    height: 64px;
    border-radius: 9999px; /* Pill shape */
    display: none; /* Hidden on desktop */
    z-index: 9999;
    background: rgba(17, 17, 21, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mobile-action-bar-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    padding: 0 12px;
}

.action-item {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.action-item:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.action-item.highlight {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(254, 93, 15, 0.4);
}

.action-item.highlight:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.action-icon {
    width: 20px;
    height: 20px;
}

/* Glassmorphic Contact Modal Form */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 28px;
    width: 100%;
    max-width: 500px;
    padding: 40px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(254, 93, 15, 0.05);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active .modal-card {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 24px;
    left: 24px; /* Top left for RTL Hebrew close button placement */
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.modal-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
}

.modal-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 14px 18px;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    transition: var(--transition-smooth);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(254, 93, 15, 0.15);
}

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

.form-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #ff762b 100%);
    color: #ffffff;
    border: none;
    border-radius: 9999px; /* Rounded button */
    padding: 14px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(254, 93, 15, 0.25);
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 93, 15, 0.45);
}

/* Success Card overlay inside modal */
.success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111115;
    border-radius: 28px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.success-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    max-width: 320px;
}

.success-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(254, 93, 15, 0.1);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    position: relative;
}

.success-circle::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0;
    animation: ripple 1.8s infinite ease-out;
}

.success-circle svg {
    width: 36px;
    height: 36px;
}

.success-title {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
}

.success-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.success-timer-row {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(254, 93, 15, 0.08);
    border: 1px solid rgba(254, 93, 15, 0.15);
    padding: 6px 16px;
    border-radius: 20px;
    margin-top: 8px;
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

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

@keyframes scaleFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.85);
    }
    to {
        opacity: 0.85;
        transform: translate(-50%, -50%) scale(1);
    }
}

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

/* =========================================
   FEATURE SPECIFICATION SECTION
   ========================================= */
.features-section {
    background-color: #000000;
    padding: 120px 0;
    position: relative;
    border-top: 1px solid var(--border-subtle);
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.features-header-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.features-section-title {
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.features-section-title span {
    color: var(--primary);
    background: linear-gradient(135deg, #ffffff 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-section-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 400;
}

.features-grid-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: linear-gradient(135deg, #111115 0%, #07070a 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    min-height: 380px;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.feature-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(254, 93, 15, 0.04);
}

.feature-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
    color: var(--primary);
    border-color: var(--primary-glow);
    background: rgba(254, 93, 15, 0.06);
}

.feature-card-icon {
    width: 22px;
    height: 22px;
}

.feature-card-title {
    font-size: 23px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.feature-card-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.feature-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: auto;
    z-index: 5;
}

.carousel-numbers,
.carousel-dots {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-number {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.feature-number:hover {
    color: rgba(255, 255, 255, 0.6);
}

.feature-number.active {
    color: var(--primary);
}

/* Card 1 Dot Pagination */
.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.carousel-dot.active {
    background-color: var(--primary);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--primary-glow);
}

/* Card 1 Carousel styling */
.carousel-card {
    justify-content: space-between;
}

.carousel-slides-container {
    position: relative;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px); /* Slide in from right (RTL forward direction) */
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.carousel-slide.active {
    position: relative; /* Active slide shapes the container height */
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2;
}

.carousel-slide.outgoing {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-30px); /* Exit to left */
    z-index: 1;
}

/* Card 1 Timeline Border SVG Styling */
.timeline-border-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    overflow: visible;
}

.timeline-border-rect {
    x: 1px;
    y: 1px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    stroke-linecap: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    opacity: 0.95;
}

/* Card 3 specific layout with full cover background image */
.feature-card.has-bg-image {
    background: none;
    position: relative;
    overflow: hidden;
}

.feature-card-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.22; /* Fades in background so text stays legible */
    transition: var(--transition-smooth);
}

.feature-card.has-bg-image:hover .feature-card-bg-img {
    transform: scale(1.05);
    opacity: 0.3;
}

.feature-card-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.feature-card-text-side {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 3;
}

/* =========================================
   PROMO & OPEN LEAD FORM SECTION
   ========================================= */
.promo-section {
    position: relative;
    width: 100%;
    min-height: 700px;
    padding: 120px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000000;
    border-top: 1px solid var(--border-subtle);
}

.promo-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.promo-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35; /* Fades in background so text/form stay readable */
    transform: scale(1.01);
}

.promo-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
}

.promo-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.promo-content-col {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.promo-title {
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 800;
    line-height: 1.05;
    color: #ffffff;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.promo-title .outline-text {
    color: transparent;
    -webkit-text-stroke: 1.5px #ffffff;
}

.promo-desc {
    font-size: clamp(16px, 1.8vw, 19px);
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 400;
}

.promo-form-col {
    display: flex;
    justify-content: flex-end;
}

.promo-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 28px;
    width: 100%;
    max-width: 480px;
    padding: 40px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(254, 93, 15, 0.05);
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.promo-form-title {
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
}

.promo-form-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 16px center;
    background-size: 18px;
    padding-left: 40px;
    cursor: pointer;
}

.form-select option {
    background-color: #111115;
    color: #ffffff;
}

/* =========================================
   FAQ ACCORDION SECTION
   ========================================= */
.faq-section {
    background: radial-gradient(circle at 10% 20%, #150805 0%, #000000 70%);
    padding: 120px 0;
    position: relative;
    border-top: 1px solid var(--border-subtle);
}

.faq-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.faq-header-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.faq-section-title {
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.faq-section-title span {
    color: var(--primary);
    background: linear-gradient(135deg, #ffffff 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-section-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 400;
}

.faq-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Video Column (Right in RTL) */
.faq-video-col {
    width: 100%;
}

.faq-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(254, 93, 15, 0.05);
}

.faq-video-caption {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 10px;
    opacity: 0.7;
}

.faq-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Accordion Column (Left in RTL) */
.faq-accordion-col {
    width: 100%;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(17, 17, 21, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth), background-color 0.4s ease;
}

/* Hover style for closed items */
.faq-item:not(.active):hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
}

/* Active item has a reddish/orange gradient background matching the reference */
.faq-item.active {
    background: linear-gradient(135deg, #fe5d0f 0%, #9c1f00 100%);
    border-color: transparent;
    box-shadow: 0 15px 30px rgba(156, 31, 0, 0.3);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: right;
    color: #ffffff;
}

.faq-question {
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
    margin-right: 16px;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: #ffffff;
}

/* Accordion Expand/Collapse using CSS Grid trick */
.faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-content {
    grid-template-rows: 1fr;
}

.faq-content-inner {
    min-height: 0;
    overflow: hidden;
}

.faq-answer {
    padding: 0 24px 24px 24px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 400;
}

.faq-item.active .faq-answer {
    color: rgba(255, 255, 255, 0.95);
}

/* =========================================
   SOCIAL PROOF REVIEWS MARQUEE
   ========================================= */
.reviews-section {
    background-color: #000000;
    padding: 120px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--border-subtle);
}

.reviews-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.reviews-badge-wrapper {
    display: flex;
    justify-content: center;
}

.reviews-badge {
    background: rgba(254, 93, 15, 0.08);
    border: 1px solid rgba(254, 93, 15, 0.2);
    padding: 8px 18px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.reviews-badge-star {
    color: var(--primary);
    font-size: 14px;
}

.reviews-badge-text {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.reviews-title {
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 800;
    text-align: center;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

/* Marquee Row & Track */
.reviews-marquee-area {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    direction: ltr; /* Force left-to-right coords for standard scroll math */
}


/* Opacity gradient overlays on left and right sides */
.reviews-marquee-area::before,
.reviews-marquee-area::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.reviews-marquee-area::before {
    left: 0;
    background: linear-gradient(to right, #000000 0%, transparent 100%);
}

.reviews-marquee-area::after {
    right: 0;
    background: linear-gradient(to left, #000000 0%, transparent 100%);
}

.reviews-marquee-row {
    width: 100%;
    overflow: hidden;
    display: flex;
}

.marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    will-change: transform;
}

/* Animations */
.scroll-left .marquee-track {
    animation: marquee-left-scroll 32s linear infinite;
}

.scroll-right .marquee-track {
    animation: marquee-right-scroll 32s linear infinite;
}

/* Hover slows down or pauses animation */
.reviews-marquee-area:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-left-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right-scroll {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Card Styling */
.review-card {
    background: linear-gradient(135deg, #111115 0%, #07070a 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 32px;
    width: 380px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    direction: rtl; /* Force Hebrew text direction inside card */
    position: relative;
    transition: var(--transition-smooth);
}

.review-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(254, 93, 15, 0.04);
}

.review-quote {
    font-size: 56px;
    color: var(--primary);
    font-family: serif;
    position: absolute;
    top: 12px;
    right: 24px;
    opacity: 0.15;
    line-height: 1;
}

.review-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 400;
    margin-top: 24px;
    margin-bottom: 24px;
}

.review-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    font-size: 14px;
}

/* Avatars Gradient presets matching current landing page colors */
.review-avatar.grad-1 { background: linear-gradient(135deg, #fe5d0f 0%, #c23400 100%); }
.review-avatar.grad-2 { background: linear-gradient(135deg, #ff762b 0%, #fe5d0f 100%); }
.review-avatar.grad-3 { background: linear-gradient(135deg, #fe5d0f 0%, #ff8e53 100%); }
.review-avatar.grad-4 { background: linear-gradient(135deg, #c23400 0%, #fe5d0f 100%); }
.review-avatar.grad-5 { background: linear-gradient(135deg, #ff8e53 0%, #ff762b 100%); }
.review-avatar.grad-6 { background: linear-gradient(135deg, #fe5d0f 0%, #ff762b 100%); }

.review-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-name {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

.review-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
   ========================================= */
@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(32px, 6vw, 48px);
    }

    .features-header-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .feature-card.has-bg-image {
        grid-column: span 2;
    }

    .promo-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .promo-content-col {
        align-items: center;
    }

    .promo-form-col {
        justify-content: center;
    }

    .faq-header-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .faq-grid-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 12px 0;
    }
    
    nav, .header-cta {
        display: none !important; /* Hide desktop nav on mobile screens */
    }
    
    .mobile-action-bar {
        display: block; /* Visible ONLY on mobile/tablet viewports */
    }
    
    body {
        padding-bottom: 100px; /* Prevent capsule dock overlap on footer elements */
    }
    
    .hero {
        align-items: center;
        padding-bottom: 80px;
        text-align: center;
    }
    
    .hero-container {
        padding: 0 24px;
    }
    
    .hero-content {
        align-items: center;
        margin: 0 auto;
    }
    
    .explore-btn {
        padding: 8px 24px 8px 8px;
    }

    /* Mobile overrides for features section */
    .features-section {
        padding: 65px 0;
    }
    
    .features-container {
        padding: 0 24px;
        gap: 40px;
    }

    .features-grid-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card.has-bg-image {
        grid-column: span 1;
        min-height: 380px;
    }

    .promo-section {
        padding: 80px 0;
    }

    .promo-container {
        padding: 0 24px;
        gap: 40px;
    }

    .promo-form-card {
        padding: 30px 24px;
    }

    .faq-section {
        padding: 80px 0;
    }

    .faq-container {
        padding: 0 24px;
        gap: 40px;
    }

    .faq-trigger {
        padding: 20px;
    }

    .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .reviews-section {
        padding: 80px 0;
    }

    .reviews-container {
        gap: 30px;
    }

    .review-card {
        width: 320px;
        padding: 24px;
        min-height: 220px;
    }
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    background: radial-gradient(circle at 90% 10%, #150805 0%, #000000 60%);
    padding: 120px 0;
    position: relative;
    border-top: 1px solid var(--border-subtle);
    overflow: hidden;
}

.cta-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.cta-title {
    font-size: clamp(34px, 4.5vw, 54px);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.cta-title span {
    color: var(--primary);
    background: linear-gradient(135deg, #ffffff 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

.cta-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.cta-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.cta-info-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(254, 93, 15, 0.08);
    border: 1px solid rgba(254, 93, 15, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.cta-info-icon {
    width: 20px;
    height: 20px;
}

.cta-form-col {
    display: flex;
    justify-content: flex-end;
}

.cta-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 28px;
    width: 100%;
    max-width: 480px;
    padding: 40px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(254, 93, 15, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
}

/* =========================================
   FOOTER SECTION
   ========================================= */
footer {
    background-color: #07070a;
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 40px 0;
    position: relative;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo-img {
    height: 54px;
    width: auto;
    align-self: flex-start;
}

.footer-logo-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-col-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
}

.footer-link-item a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.footer-link-item a:hover {
    color: var(--primary);
    padding-right: 4px;
}

.footer-hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
}

.footer-hour-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-muted);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    padding-bottom: 6px;
}

.footer-hour-item .day {
    font-weight: 600;
    color: #ffffff;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-contact-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-contact-item a:hover {
    color: var(--primary);
}

.footer-contact-icon {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    max-width: 1280px;
    margin: 60px auto 0 auto;
    padding: 30px 40px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.footer-social-link:hover {
    background: rgba(254, 93, 15, 0.08);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-social-icon {
    width: 16px;
    height: 16px;
}

/* Responsive overrides for new CTA & Footer sections */
@media (max-width: 1024px) {
    .cta-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .cta-content {
        align-items: center;
    }
    
    .cta-info-list {
        align-items: center;
    }
    
    .cta-form-col {
        justify-content: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-container {
        padding: 0 24px;
        gap: 40px;
    }
    
    .cta-form-card {
        padding: 30px 24px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-logo-img {
        align-self: center;
    }
    
    .footer-col-title::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .footer-hour-item {
        justify-content: space-between;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 20px 24px 0 24px;
        margin-top: 40px;
    }
}

/* =========================================
   POPULAR TIMES WIDGET
   ========================================= */
.footer-popular-times {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-days-tabs {
    display: flex;
    justify-content: space-between;
    gap: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    padding: 4px;
    border-radius: 12px;
}

.day-tab {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 0;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.day-tab:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.day-tab.active {
    color: #ffffff;
    background: var(--primary);
    box-shadow: 0 4px 10px rgba(254, 93, 15, 0.2);
}

.popular-live-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #ffffff;
    font-weight: 700;
    margin-top: 5px;
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ea4335; /* Google Live Red dot */
    position: relative;
}

.live-dot.closed-dot {
    background-color: #70757a !important; /* Muted gray dot when closed */
}

.live-dot.closed-dot::after {
    display: none !important;
}

.animate-pulse-glow::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #ea4335;
    opacity: 0;
    animation: ripple-red 1.6s infinite ease-out;
}

@keyframes ripple-red {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

.live-status-text {
    color: #ea4335;
}

.live-status-text.closed-text {
    color: var(--text-muted) !important;
}

.popular-chart-container {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-subtle);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popular-chart {
    height: 100px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 4px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 4px;
}

.chart-bar {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: flex-end;
    position: relative;
    cursor: pointer;
}

.bar-fill {
    width: 100%;
    height: 0%; /* Set dynamically */
    background: rgba(66, 133, 244, 0.35); /* Google Maps blue */
    border-radius: 4px 4px 0 0;
    transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.chart-bar:hover .bar-fill {
    background: rgba(66, 133, 244, 0.7);
}

.chart-bar.current-hour .bar-fill {
    background: #ea4335; /* Current hour is Google Red */
}

/* Tooltip on hover */
.bar-tooltip {
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: #111115;
    border: 1px solid var(--border-subtle);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-smooth);
    white-space: nowrap;
    z-index: 10;
}

.chart-bar:hover .bar-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-muted);
    padding-top: 4px;
}

.chart-labels span {
    width: 0;
    display: flex;
    justify-content: center;
    white-space: nowrap;
}

/* Align labels exactly with the 9am, 12pm, 3pm, 6pm, 9pm bars */
.chart-labels span:nth-child(1) { margin-right: 12.5%; } /* 9am: 3rd bar */
.chart-labels span:nth-child(2) { margin-right: 18.75%; } /* 12pm: 6th bar */
.chart-labels span:nth-child(3) { margin-right: 18.75%; } /* 3pm: 9th bar */
.chart-labels span:nth-child(4) { margin-right: 18.75%; } /* 6pm: 12th bar */
.chart-labels span:nth-child(5) { margin-right: 18.75%; } /* 9pm: 15th bar */

/* Tablet & Mobile responsive overrides for Popular Times */
@media (max-width: 1024px) {
    .footer-popular-times {
        grid-column: span 2;
        width: 100%;
        max-width: 580px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .footer-popular-times {
        grid-column: span 1;
        width: 100%;
        max-width: 480px;
        margin: 20px auto 0 auto;
    }
}

/* Mobile Fixed CTA Dock */
.mobile-fixed-cta-dock {
    display: none; /* Hidden on desktop */
}

@media (max-width: 768px) {
    .mobile-fixed-cta-dock {
        display: block; /* Visible ONLY on mobile/tablet viewports */
        position: fixed;
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        width: auto;
        max-width: 90%;
        pointer-events: auto;
    }
    
    .mobile-fixed-cta-dock .mobile-cta-btn {
        animation: none; /* Disable hero animation */
        box-shadow: 0 10px 30px rgba(254, 93, 15, 0.4) !important;
        white-space: nowrap;
        font-size: 16px;
        padding: 8px 20px 8px 8px; /* Tighter padding */
        display: inline-flex;
        align-items: center;
        gap: 16px;
        text-decoration: none;
    }

    .mobile-fixed-cta-dock .explore-btn-circle {
        width: 32px;
        height: 32px;
    }

    .hero .explore-btn {
        display: none !important;
    }
}

/* Credits Bar styling */
.credits-bar {
    padding: 16px 0;
    background-color: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.credits-link {
    opacity: 0.6;
    transition: opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.credits-link:hover {
    opacity: 1;
}



