/* ===== ROOT VARIABLES ===== */
:root {
  --primary: #ff4e00;
  --primary-dark: #c93d00;
  --accent: #ffd200;
  --dark: #0a0a0a;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --dark4: #222222;
  --text: #e0e0e0;
  --text-muted: #888;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ===== SWITCH BANNER ===== */
.switch-banner {
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 5px 20px;
  font-size: 14px;
  flex-wrap: wrap;
}
.switch-btn {
  background: #fff;
  color: #6a11cb;
  padding: 5px 18px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s;
}
.switch-btn:hover { background: var(--accent); color: #000; transform: scale(1.05); }

/* ===== NAVBAR ===== */
.ep-navbar {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}
.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #fff !important;
  letter-spacing: 2px;
}
.navbar-brand span { color: var(--primary); }
.nav-link {
  color: var(--text) !important;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 6px 12px !important;
  border-radius: 6px;
  transition: all 0.3s;
}
.nav-link:hover { color: var(--primary) !important; background: rgba(255,78,0,0.1); }
.ep-cta-btn {
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: 6px;
}
.ep-cta-btn:hover { background: var(--primary-dark) !important; }
.navbar-toggler { border-color: rgba(255,255,255,0.2); }
.navbar-toggler-icon { filter: invert(1); }

/* ===== HERO ===== */
/* .hero-section {
  min-height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover; 
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.2s ease-in-out, transform 8s ease;
}
.slide-overlay {
  position: absolute;
  inset: 0;
} */


/* ===== PREMIUM HERO SECTION ===== */

.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #000;
}

/* Slider Wrapper */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Slides */
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    opacity: 0;
    transform: scale(1.15);
    transition:
        opacity 1.5s ease,
        transform 8s ease;

    animation: heroFloat 10s ease-in-out infinite;
}

/* Active Slide */
.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

/* Premium Overlay */
.slide-overlay {
    position: absolute;
    inset: 0;

    /* background:
        linear-gradient(
            to right,
            rgba(0,0,0,0.82) 0%,
            rgba(0,0,0,0.45) 45%,
            rgba(0,0,0,0.75) 100%
        ),
        linear-gradient(
            to top,
            rgba(0,0,0,0.85),
            rgba(0,0,0,0.15)
        ); */

    /* backdrop-filter: blur(1px); */
}

/* Animated Glow */
.slide-overlay::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 120, 0, 0.18);
    border-radius: 50%;

    top: -120px;
    right: -120px;

    filter: blur(90px);

    animation: glowMove 8s ease-in-out infinite alternate;
}

/* Subtle Grid Effect */
.slide-overlay::after {
    content: '';
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);

    background-size: 60px 60px;
    opacity: 0.3;
}
/*====== */

/* Slider Dots */
/* ===== PREMIUM DOTS ===== */

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

.slider-dot {
    width: 12px;
    height: 12px;

    border-radius: 50%;
    border: none;

    background: rgba(255,255,255,0.35);

    cursor: pointer;

    transition: all 0.4s ease;

    position: relative;
}

/* Glow Ring */
.slider-dot::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.slider-dot.active {
    background: #ff6b00;
    transform: scale(1.3);
    box-shadow:
        0 0 12px rgba(255,107,0,0.9),
        0 0 24px rgba(255,107,0,0.5);
}

.slider-dot.active::before {
    border-color: rgba(255,107,0,0.5);
    animation: pulseRing 1.8s infinite;
}
/* ===== HERO ANIMATIONS ===== */

@keyframes heroFloat {
    0% {
        background-position: center center;
    }
    50% {
        background-position: center 45%;
    }
    100% {
        background-position: center center;
    }
}

@keyframes glowMove {
    0% {
        transform: translate(0,0) scale(1);
    }

    100% {
        transform: translate(-40px,40px) scale(1.15);
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at top right,
        rgba(255,120,0,0.18),
        transparent 35%);

    z-index: 2;
    pointer-events: none;
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  font-size: 0.85rem;
  backdrop-filter: blur(6px);
}
.slider-arrow:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-50%) scale(1.1); }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 0 60px;
}
.tag-line {
  display: inline-block;
  background: rgba(255,78,0,0.15);
  border: 1px solid rgba(255,78,0,0.3);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  color: #fff;
  letter-spacing: 2px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-title span {
  -webkit-text-stroke: 2px var(--primary);
  color: transparent;
}
.hero-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin: 20px 0 32px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-btns { animation: fadeInUp 0.8s ease 0.3s both; display: flex; gap: 12px; flex-wrap: wrap; }
.ep-btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}
.ep-btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,78,0,0.4); }
.ep-btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s;
}
.ep-btn-outline:hover { border-color: var(--primary); color: var(--primary); background: rgba(255,78,0,0.08); }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.stat { position: relative; }
.stat-num { font-family: var(--font-display); font-size: 2.4rem; color: var(--primary); }
.stat-label { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border);
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ===== SECTIONS COMMON ===== */
.section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 0;
}

/* ===== SERVICES ===== */
.services-section { background: var(--dark2); }
.service-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  position: relative;
  transition: all 0.4s;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transition: bottom 0.4s;
}
.service-card:hover::before { bottom: 0; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(255,78,0,0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.service-card.featured {
  background: linear-gradient(135deg, rgba(255,78,0,0.15), rgba(255,210,0,0.05));
  border-color: rgba(255,78,0,0.4);
}
.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  letter-spacing: 1px;
}
.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,78,0,0.12);
  border: 1px solid rgba(255,78,0,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }
.service-link { color: var(--primary); font-weight: 600; font-size: 0.85rem; text-decoration: none; letter-spacing: 0.5px; }
.service-link:hover { color: var(--accent); }

/* ===== EVENTS ===== */
.events-section { background: var(--dark); }
.event-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: all 0.4s;
}
.event-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(0,0,0,0.5); }
.event-date-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  text-align: center;
  z-index: 2;
}
.event-date-badge .day { display: block; font-family: var(--font-display); font-size: 1.6rem; line-height: 1; color: var(--primary); }
.event-date-badge .month { display: block; font-size: 11px; letter-spacing: 2px; color: var(--text-muted); }
.event-img { height: 160px; }
.event-info { padding: 20px; }
.event-cat { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--primary); text-transform: uppercase; margin-bottom: 8px; }
.event-info h4 { color: #fff; font-weight: 700; margin-bottom: 10px; }
.event-info p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 4px; }
.ep-btn-sm {
  display: inline-block;
  margin-top: 14px;
  background: var(--primary);
  color: #fff;
  padding: 8px 22px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.ep-btn-sm:hover { background: var(--primary-dark); color: #fff; }

/* ===== GALLERY ===== */
.gallery-section { background: var(--dark2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gi-1 { grid-column: 1 / 3; }
.gi-4 { grid-column: 2 / 4; }
.gi-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
  padding: 16px;
  font-weight: 700;
  font-size: 0.9rem;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.gallery-item:hover .gi-label { transform: translateY(0); }
.gallery-item:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.5); }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gi-1, .gi-4 { grid-column: auto; }
}

/* ===== TEAM ===== */
.team-section { background: var(--dark); }
.team-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: all 0.4s;
}
.team-card:hover { transform: translateY(-6px); border-color: rgba(255,78,0,0.3); }
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #fff;
  margin: 0 auto 16px;
}
.team-card h5 { color: #fff; font-weight: 700; margin-bottom: 4px; }
.team-card p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 16px; }
.team-socials a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  background: var(--dark4);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin: 0 3px;
  text-decoration: none;
  transition: all 0.3s;
}
.team-socials a:hover { background: var(--primary); color: #fff; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--dark2); }
.testi-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
  transition: all 0.4s;
}
.testi-card.featured {
  background: linear-gradient(135deg, rgba(255,78,0,0.1), rgba(255,210,0,0.05));
  border-color: rgba(255,78,0,0.3);
}
.testi-card:hover { transform: translateY(-4px); }
.testi-stars { color: var(--accent); font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testi-card p { color: var(--text-muted); font-size: 0.95rem; font-style: italic; margin-bottom: 20px; }
.testi-author { color: #fff; font-size: 0.85rem; }

/* ===== BOOKING ===== */
.booking-section { background: var(--dark); }
.booking-desc { color: var(--text-muted); margin: 16px 0 24px; }
.booking-perks { list-style: none; padding: 0; }
.booking-perks li { color: var(--text); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.booking-perks li i { color: var(--primary); }
.booking-form-wrap {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}
.ep-input {
  background: var(--dark4) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  font-family: var(--font-body) !important;
  transition: border-color 0.3s !important;
}
.ep-input:focus {
  border-color: rgba(255,78,0,0.5) !important;
  box-shadow: 0 0 0 3px rgba(255,78,0,0.1) !important;
  outline: none !important;
}
.ep-input option { background: var(--dark4); }
.ep-input::placeholder { color: var(--text-muted) !important; }
.success-msg {
  text-align: center;
  padding: 24px;
  color: #38ef7d;
  font-size: 1.1rem;
  font-weight: 600;
}

/* ===== CONTACT INFO ===== */
.contact-info-section { background: var(--dark2); }
.contact-box {
  padding: 28px 20px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s;
}
.contact-box:hover { border-color: rgba(255,78,0,0.3); }
.contact-box i { font-size: 1.8rem; color: var(--primary); margin-bottom: 12px; }
.contact-box h6 { color: #fff; font-weight: 700; margin-bottom: 4px; }
.contact-box p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ===== FOOTER ===== */
.ep-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.footer-brand span { color: var(--primary); }
.footer-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }
.footer-socials a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: var(--dark3);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-right: 8px;
  text-decoration: none;
  transition: all 0.3s;
}
.footer-socials a:hover { background: var(--primary); color: #fff; }
.footer-head { color: #fff; font-weight: 700; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
