/*-----------------------------------------------------------------------------------
    Template Name: Success Visas / SkyElite Luxury Aviation Redesign
    Description: Clean, Symmetric, Premium Luxury Aviation UI/UX Design System
    Author: Senior UI/UX Designer & Frontend Developer
-----------------------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary: #202A36;
  --secondary: #4B5563;
  --background: #F9FAFB;
  --white: #FFFFFF;
  --accent: #D1D5DB;
  --text: #111827;
  --muted-text: #6B7280;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 35px -5px rgba(0, 0, 0, 0.12);
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Precision Alignment */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

html::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

body::-webkit-scrollbar {
  display: none;
}

*::-webkit-scrollbar {
  display: none;
}

body {
  font-family: var(--font-main) !important;
  background-color: var(--background) !important;
  color: var(--text) !important;
  line-height: 1.6;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main) !important;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 0;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  transition: all var(--transition-normal);
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Container & Grid Alignment */
.container {
  width: 100% !important;
  max-width: 1240px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.as-mainwrapper {
  overflow-x: hidden;
}

.bg-white {
  background-color: var(--background) !important;
}

.bg-light-gradient {
  background: linear-gradient(180deg, #F9FAFB 0%, #F3F4F6 100%);
}

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

/* Header & Top Bar Alignment */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
}

.header-top {
  background: rgba(17, 24, 39, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--accent);
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header-top-left span,
.header-top-right span {
  font-weight: 400;
}

.header-top b {
  color: var(--white);
  font-weight: 600;
}

.header-top-right {
  display: flex;
  gap: 28px;
}

/* Header Logo & Navigation Alignment */
.header-logo-menu {
  padding: 22px 0;
  transition: all var(--transition-normal);
  background: transparent;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-brand-text {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  text-transform: uppercase;
  transition: color var(--transition-normal);
  display: inline-block;
}

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

/* Logo image in navbar (subpages) */
.nav-logo-img {
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.18));
}
.nav-logo-img:hover {
  opacity: 0.88;
}

/* Logo image in hero section (start page) */
.hero-logo-img {
  height: 80px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
  margin-bottom: 4px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
}
.hero-badge {
  display: inline-block;
  text-decoration: none;
}

/* Main Navigation Menu */
.mainmenu nav > ul#nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mainmenu nav > ul#nav > li {
  position: relative;
}

.mainmenu nav > ul#nav > li > a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  padding: 8px 0;
  text-transform: capitalize;
  letter-spacing: 0.01em;
  display: inline-block;
  position: relative;
}

.mainmenu nav > ul#nav > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--white);
  transition: width var(--transition-normal);
  border-radius: 2px;
}

.mainmenu nav > ul#nav > li:hover > a::after,
.mainmenu nav > ul#nav > li.current > a::after {
  width: 100%;
}

/* Submenu Dropdown */
.mainmenu nav > ul#nav > li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition-normal);
  border: 1px solid rgba(229, 231, 235, 0.8);
  list-style: none;
  z-index: 100;
}

.mainmenu nav > ul#nav > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mainmenu nav > ul#nav > li .sub-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

.mainmenu nav > ul#nav > li .sub-menu li a:hover {
  background: var(--background);
  color: var(--primary);
}

/* Hero Section */
.hero-video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--primary);
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.6) 0%, rgba(32, 42, 54, 0.8) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  max-width: 850px;
  padding: 0 24px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-title {
  font-size: clamp(3.2rem, 7.5vw, 6.2rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title .line-1 {
  color: rgba(255, 255, 255, 0.85);
}

.hero-title .line-2 {
  color: var(--white);
  margin-top: -0.18em;
  text-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  color: var(--accent);
  max-width: 680px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Luxury Pill Buttons */
.btn-discover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  background-color: var(--accent);
  color: var(--text) !important;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.btn-discover:hover {
  background-color: #9CA3AF;
  color: var(--primary) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-book-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  background-color: var(--primary);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: var(--shadow-md);
}

.btn-book-now:hover {
  background-color: #111827;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Section Title & Heading Formatting */
.sub-heading-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 50px;
}

.section-title h3 {
  font-size: 34px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title p {
  color: var(--secondary);
  font-size: 16px;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* About Container Alignment */
.about-container h3 {
  font-size: 34px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-container p {
  font-size: 15px;
  color: var(--secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  text-align: left;
}

/* Modern Symmetrical Registration Form */
.checkbox-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(229, 231, 235, 0.9);
}

.checkbox-form h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--background);
}

.checkout-form-list {
  margin-bottom: 18px;
}

.checkout-form-list label {
  font-weight: 600;
  font-size: 13px;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  display: block;
}

.checkout-form-list input[type="text"],
.checkout-form-list input[type="email"],
.checkout-form-list textarea {
  width: 100%;
  background: var(--background);
  border: 1px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--text);
  transition: all var(--transition-fast);
  height: auto;
}

.checkout-form-list textarea {
  min-height: 100px;
  resize: vertical;
}

.checkout-form-list input:focus,
.checkout-form-list textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(32, 42, 54, 0.12);
}

.order-button-payment input[type="submit"] {
  width: 100%;
  background-color: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 14px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  margin-top: 6px;
  box-shadow: var(--shadow-sm);
}

.order-button-payment input[type="submit"]:hover {
  background-color: #111827;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Symmetrical Luxury Card Grid */
.single-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(229, 231, 235, 0.8);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.single-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(209, 213, 219, 0.6);
}

.single-item-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  width: 100%;
  height: 210px;
}

.single-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.single-item:hover .single-item-image img {
  transform: scale(1.06);
}

.service-icon-box {
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.service-icon-box img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

.single-item-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.single-item-text h4 a {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.single-item-text p {
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Statistics Counters */
.fun-factor-area {
  background-color: var(--primary);
  padding: 40px 0;
  color: var(--white);
}

.single-fun-factor {
  text-align: center;
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform var(--transition-normal);
}

.single-fun-factor:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.single-fun-factor h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.single-fun-factor h4 {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

/* Luxury Footer */
footer {
  background-color: var(--primary);
  color: #9CA3AF;
  font-size: 14px;
}

.footer-widget-area {
  padding: 80px 0 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.single-footer-widget h3 {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.single-footer-widget a,
.single-footer-widget span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9CA3AF;
  margin-bottom: 12px;
  font-size: 14px;
}

.single-footer-widget a:hover {
  color: var(--white);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li a {
  display: inline-block;
  padding: 4px 0;
}

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

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition-fast);
}

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

.footer-area {
  padding: 24px 0;
  background: #111827;
  color: #6B7280;
  font-size: 13px;
}

.footer-bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer-area a {
  color: #9CA3AF;
}

/* Sticky Header Override */
.header-logo-menu.stick,
.header-logo-menu.sticker.stick {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1) !important;
  padding: 14px 0 !important;
  border-bottom: 1px solid rgba(229, 231, 235, 0.8) !important;
  z-index: 999999 !important;
}

.header-logo-menu.stick .mainmenu nav > ul#nav > li > a,
.header-logo-menu.sticker.stick .mainmenu nav > ul#nav > li > a {
  color: #111827 !important;
}

.header-logo-menu.stick .logo-brand-text,
.header-logo-menu.sticker.stick .logo-brand-text {
  color: var(--primary) !important;
}

/* Responsive Alignment Rules */
@media (max-width: 991px) {
  .header-top-content {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .header-top-right {
    justify-content: center;
    gap: 16px;
  }
  .header-logo-menu {
    padding: 16px 0;
    background: rgba(32, 42, 54, 0.95);
  }
  .nav-wrapper {
    justify-content: center;
  }
  .hero-video-section {
    min-height: 600px;
  }
  .hero-title {
    font-size: clamp(2.5rem, 8vw, 4.2rem);
  }
  .section-padding {
    padding: 70px 0;
  }
  .section-title h3 {
    font-size: 28px;
  }
  .footer-bottom-flex {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .header-top {
    display: none;
  }
  .hero-video-section {
    min-height: 550px;
  }
  .hero-content {
    margin-top: 20px;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 280px;
  }
  .btn-discover,
  .btn-book-now {
    width: 100%;
    text-align: center;
  }
  .section-padding {
    padding: 50px 0;
  }
  .section-title h3 {
    font-size: 24px;
  }
  .checkbox-form {
    padding: 24px;
  }
  .about-container h3 {
    font-size: 26px;
  }
  .single-fun-factor h2 {
    font-size: 36px;
  }
  .fun-factor-area {
    padding: 60px 0;
  }
  .footer-widget-area {
    padding: 50px 0 30px;
  }
}

/* ========================================
   Legacy CSS Neutralization
   Kill all old pseudo-elements and conflicting 
   styles from responsive.css and plugin.css
======================================== */
.header-top::before,
.header-top::after {
  display: none !important;
  content: none !important;
}

.newsletter-area::before,
.newsletter-area::after {
  display: none !important;
  content: none !important;
}

/* Neutralize old slider styles */
.slider-area,
.single-slider,
.hero-slider-content {
  display: none !important;
}

/* Home page image slider section */
.home-slider-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.home-slider-section .section-heading {
  text-align: center;
  margin-bottom: 36px;
}

.home-slider-section .section-heading h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.home-slider-section .section-heading p {
  color: #666;
  font-size: 1rem;
}

.home-slider-section .hero-slider .single-slide img,
.story-slider-area .hero-slider .single-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.home-slider-section .hero-slider .single-slide video,
.story-slider-area .hero-slider .single-slide video {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  background: #000;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.gallery-header-wrap {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 24px !important;
  flex-wrap: wrap !important;
  gap: 15px !important;
}

.gallery-title {
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: #1a1a2e !important;
  margin: 0 !important;
}

.btn-upload-media {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  background: #003366 !important;
  background: linear-gradient(135deg, #003366 0%, #004080 100%) !important;
  color: #ffffff !important;
  padding: 14px 34px !important;
  border-radius: 35px !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  cursor: pointer !important;
  box-shadow: 0 6px 22px rgba(0, 51, 102, 0.35) !important;
  transition: all 0.3s ease !important;
  user-select: none !important;
  margin: 0 auto !important;
  text-decoration: none !important;
  border: none !important;
  position: relative !important;
  z-index: 10 !important;
}

.btn-upload-media i {
  font-size: 1.3rem !important;
  margin-right: 6px !important;
}

.btn-upload-media:hover {
  background: #ff6600 !important;
  background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.45) !important;
  color: #ffffff !important;
}

.hero-slider {
  position: relative !important;
}

.hero-slider .owl-nav {
  display: none !important;
}

.home-slider-section .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.home-slider-section .owl-dot {
  display: inline-block;
  margin: 0 4px;
}

.home-slider-section .owl-dot span {
  display: block;
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.home-slider-section .owl-dot.active span,
.home-slider-section .owl-dot:hover span {
  background: var(--secondary, #ff6600);
  width: 28px;
  border-radius: 6px;
}

/* Neutralize old header-top skew backgrounds */
.header-top:before,
.header-top:after {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Ensure our modern nav alignment wins */
.mainmenu-area {
  float: none !important;
}

.mainmenu-area .pull-right {
  float: none !important;
}

/* Fix old input styles from leaking */
input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]) {
  border-width: 1px !important;
  border-style: solid !important;
}

/* Ensure .orange-color override */
.orange-color {
  color: var(--primary) !important;
}

/* Required asterisk */
.required {
  color: #EF4444;
  font-weight: 700;
}

/* Loading screen fix - Ensure full-screen loading overlay never blocks pages */
.loading {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* MeanMenu Mobile Styling - Hidden when header is removed */
.mean-container,
.mobile-menu-area,
.mobile-menu,
.mean-bar,
.mean-nav {
  display: none !important;
}

/* Scroll-up button */
#scrollUp {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: 50% !important;
  width: 44px !important;
  height: 44px !important;
  line-height: 44px !important;
  text-align: center !important;
  box-shadow: var(--shadow-md) !important;
  right: 24px !important;
  bottom: 24px !important;
}

/* Subpage Header & Luxury List Styling */
header.subpage-header,
.subpage-header {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  width: 100% !important;
  background-color: var(--white) !important;
  z-index: 1000;
  float: none !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.subpage-header .header-top {
  background: var(--primary) !important;
  border-bottom: none !important;
}

.subpage-header .header-logo-menu {
  background-color: var(--white) !important;
  padding: 18px 0 !important;
  border-bottom: 1px solid rgba(229, 231, 235, 0.8) !important;
  position: relative !important;
}

.subpage-header .logo-brand-text {
  color: var(--primary) !important;
}

.subpage-header .mainmenu nav > ul#nav > li > a {
  color: #111827 !important;
}

.subpage-header .mainmenu nav > ul#nav > li > a::after {
  background-color: var(--primary) !important;
}

.subpage-header .mainmenu nav > ul#nav > li.current > a {
  color: var(--primary) !important;
}

.subpage-header .mainmenu nav > ul#nav > li > a::after {
  background-color: var(--white) !important;
}

.subpage-header .header-logo-menu.stick,
.subpage-header .header-logo-menu.sticker.stick {
  background-color: var(--primary) !important;
}

.subpage-header .header-logo-menu.stick .mainmenu nav > ul#nav > li > a,
.subpage-header .header-logo-menu.sticker.stick .mainmenu nav > ul#nav > li > a {
  color: var(--white) !important;
}

.subpage-header .header-logo-menu.stick .logo-brand-text,
.subpage-header .header-logo-menu.sticker.stick .logo-brand-text {
  color: var(--white) !important;
}

/* Breadcrumb Banner Area Positioning */
.breadcrumb-banner-area {
  padding: 0 !important;
  min-height: 130px;
  margin-top: 0 !important;
  background-color: var(--primary) !important;
  color: var(--white) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumb-banner-area .container {
  width: 100%;
}

.breadcrumb-banner-area .breadcrumb-text {
  text-align: center;
}

/* New subpage-header pages have a shorter header, need less top padding */
.subpage-header ~ .breadcrumb-banner-area,
.subpage-header ~ * .breadcrumb-banner-area {
  padding: 0 !important;
  min-height: 130px;
}

.breadcrumb-banner-area h1 {
  color: var(--white) !important;
  font-size: 38px !important;
  font-weight: 700 !important;
  margin-top: 0 !important;
  margin-bottom: 8px !important;
  letter-spacing: -0.02em;
  text-align: center;
}

.breadcrumb-bar ul.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: transparent;
  color: var(--accent);
  font-size: 14px;
}

.breadcrumb-bar ul.breadcrumb a {
  color: var(--accent);
}

.luxury-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.luxury-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--secondary);
}

.luxury-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
}

/* Single-Page Sliding Presentation System — index.html only */
.slide-section {
  scroll-snap-align: start !important;
  scroll-snap-stop: always !important;
  min-height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  position: relative !important;
  padding: 60px 0 !important;
}

footer.slide-section {
  min-height: auto !important;
  scroll-snap-align: end !important;
  scroll-snap-stop: normal !important;
  justify-content: flex-end !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-area {
  padding: 18px 0 !important;
  margin-bottom: 0 !important;
}

/* Floating Slide Navigation Dots */
.slide-indicator-nav {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.slide-indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(32, 42, 54, 0.25);
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
}

.slide-indicator-dot .dot-label {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.slide-indicator-dot:hover .dot-label,
.slide-indicator-dot.active .dot-label {
  opacity: 1;
}

.slide-indicator-dot.active {
  background: var(--primary);
  border-color: var(--white);
  transform: scale(1.35);
  box-shadow: 0 0 12px rgba(32, 42, 54, 0.4);
}

@media (max-width: 767px) {
  .slide-indicator-nav {
    right: 12px;
    gap: 12px;
  }
  .slide-indicator-dot .dot-label {
    display: none;
  }
}

/* Luxury Symmetrical Gallery Grid */
.gallery-area {
  padding: 80px 0;
  background-color: var(--background);
}

.gallery-area .row {
  display: flex;
  flex-wrap: wrap;
  row-gap: 28px;
}

.single-gallery-img {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: var(--white);
  transition: all var(--transition-normal);
  height: 270px !important;
  width: 100% !important;
  margin-bottom: 0 !important;
}

.single-gallery-img a {
  display: block;
  width: 100%;
  height: 100%;
}

.single-gallery-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  transition: transform 0.5s ease;
  border-radius: var(--radius-md);
}

.single-gallery-img:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(209, 213, 219, 0.6);
}

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


/* =============================================
   Contact Page — Two Branch Layout
   ============================================= */

.contact-area {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.blue-bg {
  background-color: var(--primary);
  padding: 60px 50px;
  min-height: 450px;
  display: flex;
  align-items: flex-start;
}

.yellow-bg {
  background-color: #f5f5f5;
  padding: 0;
  min-height: 450px;
}

.yellow-bg iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  display: block;
  border: 0;
}

.edubuzz-address {
  color: var(--white);
  width: 100%;
}

.edubuzz-address h2.contact-title {
  color: var(--white) !important;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.edubuzz-address ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.edubuzz-address ul li {
  color: rgba(255,255,255,0.9);
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.7;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.edubuzz-address ul li b {
  color: var(--white);
}

.edubuzz-address ul li i {
  color: var(--white);
  margin-top: 4px;
  flex-shrink: 0;
  font-size: 16px;
}

.contact-social h3 {
  color: var(--white) !important;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-social ul {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-social ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 16px;
  transition: background 0.2s;
}

.contact-social ul li a:hover {
  background: rgba(255,255,255,0.35);
}

/* Branch separator */
.contact-area .row.no-gutters:first-child {
  border-bottom: 4px solid rgba(0,0,0,0.08);
}

@media (max-width: 991px) {
  .blue-bg {
    padding: 40px 24px;
    min-height: auto;
  }
  .yellow-bg,
  .yellow-bg iframe {
    min-height: 320px;
  }
}

/* Enquiry Form Section - Contact Page */
.enquiry-area {
  padding: 70px 0;
  background: #f8f9fa;
}

.enquiry-area .sub-heading-tag {
  display: block;
  margin-bottom: 8px;
}

.enquiry-area h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* =============================================
   Mobile Responsive — Hamburger Navbar
   ============================================= */

/* Hamburger button */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 2px solid var(--primary);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  z-index: 1001;
  margin-left: auto;
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav-drawer {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: #fff;
  box-shadow: 4px 0 20px rgba(0,0,0,0.15);
  z-index: 99999;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  padding: 70px 0 30px;
}

.mobile-nav-drawer.open {
  transform: translateX(0);
}

.mobile-nav-overlay {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 99998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--primary);
  line-height: 1;
}

.mobile-nav-drawer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-drawer ul li a {
  display: block;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 500;
  color: #111827;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.mobile-nav-drawer ul li a:hover,
.mobile-nav-drawer ul li.current > a {
  background: var(--primary);
  color: #fff;
}

.mobile-nav-drawer ul li .mobile-sub-toggle {
  float: right;
  font-style: normal;
  font-size: 13px;
  padding: 0 4px;
  cursor: pointer;
  color: var(--primary);
}

.mobile-nav-drawer ul li ul.mobile-sub {
  display: none;
  background: #f8f9fa;
}

.mobile-nav-drawer ul li ul.mobile-sub li a {
  padding-left: 40px;
  font-size: 14px;
  color: #374151;
}

.mobile-nav-drawer ul li ul.mobile-sub.open {
  display: block;
}

/* Show hamburger on mobile/tablet, hide desktop nav */
@media (max-width: 991px) {
  .hamburger-btn {
    display: flex !important;
  }

  .mobile-nav-drawer {
    display: block;
  }

  .mobile-nav-overlay {
    display: block;
  }

  /* Hide desktop nav on mobile */
  .subpage-header .mainmenu-area {
    display: none !important;
  }

  /* Nav wrapper layout on mobile */
  .subpage-header .nav-wrapper {
    justify-content: space-between;
  }

  /* Header top bar stack on mobile */
  .subpage-header .header-top-content {
    flex-direction: column;
    text-align: center;
    gap: 2px;
    padding: 6px 0;
  }

  .subpage-header .header-top-left,
  .subpage-header .header-top-right {
    font-size: 12px;
  }

  .subpage-header .header-top-right {
    gap: 10px;
  }

  /* General content fixes */
  .about-area .row {
    flex-direction: column;
  }

  .about-image-area {
    margin-top: 24px;
  }

  .breadcrumb-banner-area {
    min-height: 100px !important;
  }

  .breadcrumb-banner-area h1 {
    font-size: 26px !important;
  }

  .fun-factor-area .row {
    gap: 12px 0;
  }

  .single-fun-factor {
    margin-bottom: 12px;
  }

  /* Contact page */
  .blue-bg {
    padding: 32px 20px;
  }

  .yellow-bg iframe {
    min-height: 260px;
  }

  /* Hero section */
  .hero-content {
    padding: 0 20px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3.5rem) !important;
  }

  /* Enquiry form */
  .enquiry-area {
    padding: 40px 16px;
  }

  .checkout-form-list input,
  .checkout-form-list textarea {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .subpage-header .header-top-right {
    flex-direction: column;
    gap: 2px;
  }

  .breadcrumb-banner-area h1 {
    font-size: 22px !important;
  }

  .logo-brand-text {
    font-size: 20px !important;
  }

  .hero-badge {
    font-size: 14px !important;
    padding: 8px 18px !important;
  }
}

/* =============================================
   FAQ Accordion
   ============================================= */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s;
}

.faq-item.active {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s, color 0.2s;
}

.faq-item.active .faq-question {
  background: var(--primary);
  color: #fff;
}

.faq-icon {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 16px 20px 20px;
}

.faq-answer p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.75;
  color: #374151;
  text-align: justify;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* =============================================
   GLOBAL CLEANUP & SYMMETRY FIXES
   ============================================= */

/* ---- About Area — consistent across all subpages ---- */
.about-area {
  padding: 70px 0 60px !important;
}

.about-area.mt-95,
.about-area.mt-100 {
  margin-top: 0 !important;
  padding-top: 70px !important;
}

.about-area .row {
  align-items: center;
}

.about-container {
  padding-right: 20px;
}

.about-container h3 {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 700;
}

.about-container h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin: 20px 0 10px;
}

.about-container p,
.about-container .auto-format p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--secondary);
  margin-bottom: 14px;
  text-align: justify;
}

.about-container b {
  display: block;
  font-size: 15px;
  color: var(--primary);
  margin: 16px 0 8px;
}

/* Fix content that escapes about-container */
.about-area .col-lg-7 > h3,
.about-area .col-lg-7 > .auto-format,
.about-area .col-lg-7 > .ui--animation,
.about-area .col-lg-7 > p {
  padding-right: 20px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--secondary);
  text-align: justify;
}

.about-area .col-lg-7 > h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 22px;
  margin-bottom: 10px;
  padding-right: 20px;
}

/* ---- About Image ---- */
.about-image-area {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.about-image-area img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ---- Fun Factor gap fix ---- */
.fun-factor-area .row {
  gap: 0;
}

.fun-factor-area .single-fun-factor {
  margin-bottom: 0;
}

/* ---- Blog Cards ---- */
.single-latest-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  margin-bottom: 30px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.single-latest-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.single-latest-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.single-latest-text {
  padding: 20px 22px 24px !important;
}

.single-latest-text h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.single-latest-text h3 a {
  color: var(--primary);
}

.single-latest-text p {
  font-size: 14px;
  color: var(--secondary);
  margin-bottom: 14px;
}

.button-default {
  display: inline-block;
  background: var(--primary);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}

.button-default:hover {
  background: #111827;
  transform: translateY(-2px);
}

/* ---- Section title ---- */
.section-title-wrapper {
  margin-bottom: 36px;
}

.section-title h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.section-title p {
  color: var(--secondary);
  font-size: 15px;
}

/* ---- Contact page cleanup ---- */
.contact-area {
  padding: 0 !important;
}

.enquiry-area {
  padding: 70px 0;
  background: var(--background);
}

/* ---- Checkout / FAQ spacing ---- */
.checkout-area {
  padding: 70px 0 !important;
}

/* ---- Gallery ---- */
.gallery-area {
  padding: 60px 0;
}

.single-gallery-img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}

.single-gallery-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.single-gallery-img:hover img {
  transform: scale(1.04);
}

/* ---- Pagination ---- */
.pagination-content {
  padding: 20px 0 10px;
  text-align: center;
}

/* ---- Breadcrumb text cleanup ---- */
.breadcrumb-bar ul.breadcrumb li {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}

.breadcrumb-bar ul.breadcrumb li a {
  color: rgba(255,255,255,0.9);
}

.breadcrumb-bar ul.breadcrumb li + li::before {
  content: '/';
  margin: 0 6px;
  color: rgba(255,255,255,0.5);
}

/* ---- Mobile responsive cleanup ---- */
@media (max-width: 991px) {
  .about-container {
    padding-right: 0;
    margin-bottom: 28px;
  }

  .about-area .row {
    flex-direction: column;
  }

  .about-image-area {
    margin-top: 0;
  }

  .about-area {
    padding: 50px 0 40px !important;
  }

  .section-title h3 {
    font-size: 24px;
  }

  .single-latest-text {
    padding: 16px 18px 20px !important;
  }
}

@media (max-width: 767px) {
  .about-container h3 {
    font-size: 22px;
  }

  .about-area .col-lg-7 > h3 {
    font-size: 18px;
  }

  .single-gallery-img img {
    height: 180px;
  }

  .checkout-area {
    padding: 40px 0 !important;
  }

  .enquiry-area {
    padding: 40px 0;
  }

  .contact-area .row.no-gutters {
    flex-direction: column;
  }

  .blue-bg {
    padding: 32px 20px;
  }
}

/* =============================================
   Hero Navbar (index.html overlay nav)
   ============================================= */
.hero-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 0;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.hero-nav .logo-brand-text {
  color: var(--white) !important;
  font-size: 26px;
  font-weight: 900;
}

.hero-nav .mainmenu nav > ul#nav > li > a {
  color: rgba(255,255,255,0.92) !important;
  font-size: 14px;
  font-weight: 500;
}

.hero-nav .mainmenu nav > ul#nav > li > a:hover,
.hero-nav .mainmenu nav > ul#nav > li.current > a {
  color: #fff !important;
}

.hero-nav .mainmenu nav > ul#nav > li > a::after {
  background-color: #fff !important;
}

.hero-nav .hamburger-btn span {
  background-color: #fff;
}

.hero-nav .hamburger-btn {
  border-color: rgba(255,255,255,0.6);
}

@media (max-width: 991px) {
  .hero-nav .mainmenu-area {
    display: none !important;
  }
  .hero-nav .hamburger-btn {
    display: flex !important;
  }
}

/* =============================================
   Mobile Navigation Drawer & Hamburger Button
   ============================================= */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.subpage-header .hamburger-btn span {
  background-color: var(--primary);
}

.sticker.stick .hamburger-btn span {
  background-color: var(--primary);
}

@media (max-width: 991px) {
  .hamburger-btn {
    display: flex !important;
  }
  .mainmenu-area {
    display: none !important;
  }
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: var(--primary);
  color: #fff;
  z-index: 100000;
  padding: 60px 24px 30px;
  overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.mobile-nav-drawer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-drawer ul li {
  margin-bottom: 16px;
}

.mobile-nav-drawer ul li a {
  color: #E5E7EB;
  font-size: 16px;
  font-weight: 600;
  display: block;
  padding: 6px 0;
}

.mobile-nav-drawer ul li a:hover,
.mobile-nav-drawer ul li.current > a {
  color: #fff;
}

.mobile-nav-drawer .mobile-sub {
  display: none;
  padding-left: 16px;
  margin-top: 8px;
  border-left: 2px solid rgba(255, 255, 255, 0.15);
}

.mobile-nav-drawer .mobile-sub.open {
  display: block;
}

.mobile-nav-drawer .mobile-sub li {
  margin-bottom: 8px;
}

.mobile-nav-drawer .mobile-sub li a {
  font-size: 14px;
  color: #9CA3AF;
}

/* ── Developer Credit ─────────────────────────────────── */
.footer-dev-credit {
  text-align: center;
  padding: 10px 0 4px;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 10px;
}

.footer-dev-credit p {
  margin: 0;
  font-size: 12.5px;
  color: #6B7280;
  letter-spacing: 0.02em;
}

.footer-dev-credit a {
  color: #9CA3AF;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-dev-credit a:hover {
  color: #fff;
}


