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

:root {
  /* Color Palette */
  --primary-red: #e10419;
  --verizon-red: #cd040b;
  --spectrum-blue: #0056b3;
  --xfinity-purple: #682a8a;
  --att-blue: #00a8e0;
  
  --dark-bg: #010317;
  --card-bg: #ffffff;
  --text-dark: #111111;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  
  /* Fonts */
  --font-main: 'Poppins', sans-serif;
  --font-heading: 'Unbounded', sans-serif;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Reset Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Area - Pixel Perfect Clone */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: 15px 0 0;
}

.top-bar {
  background: transparent;
  padding: 5px 0;
  margin-bottom: 5px;
}

.top-bar-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.top-left {
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 8px 20px;
}

.top-left a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}

.top-left a i {
  color: var(--primary-red);
}

.main-nav {
  position: relative;
  background: rgba(1, 3, 23, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 30px;
  margin: 0 10px;
  transition: var(--transition);
}

.main-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-height: 55px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 30px;
  margin: 0 auto;
}

.nav-link {
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-red);
  transition: var(--transition);
}

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

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

/* Language Switcher */
.lang-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 30px;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.lang-btn img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background-color: var(--dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 8px 0;
  min-width: 140px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  display: none;
  z-index: 1010;
  animation: fadeIn 0.2s ease;
}

.lang-dropdown-wrapper:hover .lang-dropdown-menu {
  display: block;
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: var(--white);
  font-size: 14px;
  transition: var(--transition);
}

.lang-item img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.lang-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--primary-red);
}

/* Side Drawer (Mobile Navigation Menu) */
.side-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background-color: #f1f1f1;
  box-shadow: -10px 0 30px rgba(0,0,0,0.15);
  z-index: 2000;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.side-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

.drawer-logo img {
  max-height: 45px;
}

.drawer-close-btn {
  background: var(--white);
  color: var(--text-dark);
  border: 1px solid #ddd;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

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

.drawer-menu {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.drawer-link {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 600;
  padding: 5px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.drawer-link:hover,
.drawer-link.active {
  color: var(--primary-red);
  padding-left: 5px;
}

.drawer-contact-card {
  margin-top: auto;
  background-color: var(--white);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 15px;
}

.drawer-contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transform: rotate(45deg);
}

.drawer-contact-info p {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

.drawer-contact-info a {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
}

/* Menu Toggle Button */
.menu-toggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* Header Backdrop Overlay */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(1, 3, 23, 0.5);
  backdrop-filter: blur(3px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

/* Sticky Header State */
.sticky-header {
  position: fixed;
  width: 100%;
  top: 0;
  margin: 0;
  background-color: var(--dark-bg);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.4s ease-out;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
}


/* Hero Section */
.hero {
  height: 90vh;
  min-height: 600px;
  background: linear-gradient(135deg, rgba(1, 3, 23, 0.9), rgba(1, 3, 23, 0.7)), url('https://images.unsplash.com/photo-1544197150-b99a580bb7a8?q=80&w=1920&auto=format&fit=crop') no-repeat center center/cover;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

.hero-content {
  max-width: 650px;
}

.badge {
  display: inline-block;
  background-color: rgba(225, 4, 25, 0.15);
  color: var(--primary-red);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(225, 4, 25, 0.3);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}

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

.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

/* Breadcrumb Section */
.breadcrumb-sec {
  background: linear-gradient(135deg, rgba(1, 3, 23, 0.95), rgba(1, 3, 23, 0.8)), url('https://images.unsplash.com/photo-1544197150-b99a580bb7a8?q=80&w=1200&auto=format&fit=crop') no-repeat center center/cover;
  padding: 120px 0 60px;
  text-align: center;
  color: var(--white);
}

.breadcrumb-title {
  font-family: var(--font-heading);
  font-size: 36px;
  margin-bottom: 10px;
}

.breadcrumb-path {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-path a {
  color: var(--white);
}

.breadcrumb-path a:hover {
  color: var(--primary-red);
}

/* Packages Section */
.packages-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-subtitle {
  color: var(--primary-red);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 15px;
}

/* Tab Switcher Styles */
.tab-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-btn {
  background-color: var(--white);
  border: 1px solid #ddd;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.tab-btn:hover {
  transform: translateY(-2px);
}

.tab-btn.active[data-provider="verizon"] {
  background-color: var(--verizon-red);
  color: var(--white);
  border-color: var(--verizon-red);
  box-shadow: 0 5px 15px rgba(205, 4, 11, 0.3);
}

.tab-btn.active[data-provider="spectrum"] {
  background-color: var(--spectrum-blue);
  color: var(--white);
  border-color: var(--spectrum-blue);
  box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

.tab-btn.active[data-provider="att"] {
  background-color: var(--att-blue);
  color: var(--white);
  border-color: var(--att-blue);
  box-shadow: 0 5px 15px rgba(0, 168, 224, 0.3);
}

.tab-btn.active[data-provider="xfinity"] {
  background-color: var(--xfinity-purple);
  color: var(--white);
  border-color: var(--xfinity-purple);
  box-shadow: 0 5px 15px rgba(104, 42, 138, 0.3);
}

/* Tab Panels */
.tab-panel {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-panel.active {
  display: block;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.package-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--bg-light);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 12px;
  text-transform: uppercase;
}

.verizon-card .card-badge { color: var(--verizon-red); background-color: rgba(205, 4, 11, 0.08); }
.spectrum-card .card-badge { color: var(--spectrum-blue); background-color: rgba(0, 86, 179, 0.08); }
.att-card .card-badge { color: var(--att-blue); background-color: rgba(0, 168, 224, 0.08); }
.xfinity-card .card-badge { color: var(--xfinity-purple); background-color: rgba(104, 42, 138, 0.08); }

.card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.verizon-card .card-title { color: var(--verizon-red); }
.spectrum-card .card-title { color: var(--spectrum-blue); }
.att-card .card-title { color: var(--att-blue); }
.xfinity-card .card-title { color: var(--xfinity-purple); }

.card-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.card-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
}

.card-speed {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 25px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-speed i {
  color: var(--primary-red);
}

.card-features {
  border-top: 1px solid #eee;
  padding-top: 25px;
  margin-bottom: 30px;
}

.card-features li {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
}

.card-features li::before {
  content: '✔';
  position: absolute;
  left: 0;
  font-weight: bold;
}

.verizon-card li::before { color: var(--verizon-red); }
.spectrum-card li::before { color: var(--spectrum-blue); }
.att-card li::before { color: var(--att-blue); }
.xfinity-card li::before { color: var(--xfinity-purple); }

.card-btn {
  display: block;
  text-align: center;
  padding: 14px 20px;
  border-radius: 30px;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}

.verizon-card .card-btn { background-color: var(--verizon-red); box-shadow: 0 4px 12px rgba(205, 4, 11, 0.25); }
.spectrum-card .card-btn { background-color: var(--spectrum-blue); box-shadow: 0 4px 12px rgba(0, 86, 179, 0.25); }
.att-card .card-btn { background-color: var(--att-blue); box-shadow: 0 4px 12px rgba(0, 168, 224, 0.25); }
.xfinity-card .card-btn { background-color: var(--xfinity-purple); box-shadow: 0 4px 12px rgba(104, 42, 138, 0.25); }

.card-btn:hover {
  transform: translateY(-2px);
  filter: brightness(0.9);
}

/* Disclaimer text at bottom of grid */
.disclaimer-text {
  text-align: center;
  font-size: 11px;
  color: var(--text-light);
  margin-top: 40px;
  line-height: 1.8;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 20px;
  background-color: var(--bg-light);
  border: 1px solid rgba(0,0,0,0.03);
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  background-color: var(--white);
  box-shadow: var(--shadow-hover);
  border-color: rgba(225, 4, 25, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(225, 4, 25, 0.06);
  color: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 25px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--primary-red);
  color: var(--white);
  transform: rotateY(180deg);
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-light);
}

/* Experience Box (Promo Ribbon) */
.promo-ribbon {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 30px 0;
  text-align: center;
}

.promo-ribbon p {
  font-size: 16px;
  font-weight: 500;
}

.promo-ribbon a {
  color: var(--primary-red);
  font-weight: 700;
  margin-left: 10px;
  text-decoration: underline;
}

.promo-ribbon a:hover {
  color: #ff3838;
}

/* About Content Area */
.about-section {
  padding: 100px 0;
}

.about-row {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-img-box {
  flex: 1;
  position: relative;
}

.about-img-box img {
  border-radius: 20px;
  box-shadow: var(--shadow-hover);
}

.discount-tag {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--primary-red);
  color: var(--white);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  font-family: var(--font-heading);
  box-shadow: 0 10px 25px rgba(225, 4, 25, 0.4);
  line-height: 1.2;
}

.discount-tag span {
  font-size: 24px;
}

.discount-tag small {
  font-size: 12px;
  text-transform: uppercase;
}

.about-content {
  flex: 1;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 25px;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.stat-item {
  flex: 1;
  background: var(--bg-light);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  color: var(--primary-red);
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
}

/* Video Section */
.video-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.video-card {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 3, 23, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  text-align: center;
  padding: 20px;
}

.play-btn {
  width: 80px;
  height: 80px;
  background-color: var(--primary-red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  box-shadow: 0 0 0 0 rgba(225, 4, 25, 0.5);
  animation: pulsePlay 2s infinite;
}

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

.video-overlay h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 10px;
}

/* Contact Area Styles */
.contact-section {
  padding: 100px 0;
}

.contact-row {
  display: flex;
  gap: 50px;
}

.contact-info {
  flex: 1;
}

.contact-card {
  display: flex;
  gap: 20px;
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 25px;
}

.contact-icon {
  font-size: 24px;
  color: var(--primary-red);
}

.contact-detail h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-detail p {
  color: var(--text-light);
}

.contact-form-box {
  flex: 1.2;
  background-color: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-hover);
  border: 1px solid rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-main);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-red);
  outline: none;
  box-shadow: 0 0 8px rgba(225, 4, 25, 0.1);
}

textarea.form-control {
  height: 150px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  background-color: var(--primary-red);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(225, 4, 25, 0.3);
  transition: var(--transition);
}

.submit-btn:hover {
  background-color: #be0314;
  transform: translateY(-2px);
}

/* FAQ Accordion Section */
.faq-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background-color: var(--white);
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.accordion-header {
  padding: 22px 30px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  transition: var(--transition);
}

.accordion-header:hover {
  color: var(--primary-red);
}

.accordion-icon {
  transition: var(--transition);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  color: var(--primary-red);
}

.accordion-body {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: var(--text-light);
  font-size: 14px;
  border-top: 0 solid #eee;
}

.accordion-item.active .accordion-body {
  padding: 20px 30px 30px;
  border-top-width: 1px;
}

/* Disclaimer & Notice Section */
.notice-section {
  padding: 60px 0;
  background-color: var(--white);
  border-top: 1px solid #eee;
}

.notice-box {
  background-color: var(--bg-light);
  border-left: 4px solid var(--primary-red);
  padding: 30px;
  border-radius: 0 15px 15px 0;
}

.notice-box h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.notice-box p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
}

/* Policy Content Layout */
.policy-section {
  padding: 80px 0;
}

.policy-content {
  max-width: 850px;
  margin: 0 auto;
}

.policy-content h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin: 35px 0 15px;
}

.policy-content h3 {
  font-size: 18px;
  margin: 25px 0 10px;
}

.policy-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.policy-content ul {
  margin-bottom: 25px;
  padding-left: 20px;
}

.policy-content li {
  margin-bottom: 10px;
  color: var(--text-light);
  list-style-type: disc;
}

/* Footer Styles */
footer {
  background-color: #0b0b0b;
  color: #c5c5c5;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column h3 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 16px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-red);
}

.footer-desc {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--white);
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--primary-red);
}

.footer-logo img {
  max-height: 55px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  font-size: 13px;
  margin-bottom: 15px;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--primary-red);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
  color: #777;
}

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

/* Floating Call Now Button */
.call-btn-floating {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: linear-gradient(135deg, #28a745, #1e7e34);
  color: var(--white);
  padding: 15px 28px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(40, 167, 69, 0.4);
  z-index: 9999;
  animation: pulseGreen 2s infinite;
}

.call-btn-floating i {
  font-size: 18px;
  animation: wiggle 1.5s infinite;
}

.call-btn-floating:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(40, 167, 69, 0.6);
}

/* Animations */
@keyframes phonePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); text-shadow: 0 0 10px rgba(225,4,25,0.5); }
  100% { transform: scale(1); }
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

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

@keyframes pulsePlay {
  0% { box-shadow: 0 0 0 0 rgba(225, 4, 25, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(225, 4, 25, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 4, 25, 0); }
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(40, 167, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0); }
  15% { transform: rotate(-15deg); }
  30% { transform: rotate(15deg); }
  45% { transform: rotate(-10deg); }
  60% { transform: rotate(10deg); }
}

@keyframes pulseRed {
  0% { box-shadow: 0 0 0 0 rgba(225, 4, 25, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(225, 4, 25, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 4, 25, 0); }
}

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

@keyframes scaleUp {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.animation-slide-up {
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animation-fade-in {
  animation: scaleUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .top-bar {
    display: none !important;
  }
  .hero-title {
    font-size: 34px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-row {
    flex-direction: column;
    gap: 40px;
  }
  .contact-row {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .discount-tag {
    right: 20px;
    bottom: 20px;
  }
  
  /* Navigation mobile behavior */
  .nav-menu {
    display: none !important;
  }
  .lang-dropdown-wrapper {
    display: none !important;
  }
  .menu-toggle {
    display: flex !important;
  }
  
  .main-nav {
    padding: 10px 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 140px 0 80px;
  }
  .hero-title {
    font-size: 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  .hero-title {
    font-size: 24px;
    line-height: 1.3;
  }
  .hero-desc {
    font-size: 14px;
    margin-bottom: 25px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .hero-buttons a {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .package-card {
    padding: 30px 20px;
  }
  .tab-btn {
    padding: 10px 18px;
    font-size: 13px;
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }
  .section-title {
    font-size: 24px;
  }
  .section-subtitle {
    font-size: 12px;
  }
}

/* Custom Enhancements: Background Slider, Logo Blending, Logo Glow, Scroll Animations */

/* Hero Slider Background */
.hero {
  position: relative;
  overflow: hidden;
  background: none !important;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* Logo Blending & Glow Animation */
.logo img, .drawer-logo img, .footer-logo img {
  mix-blend-mode: screen;
  animation: logoGlow 3s ease-in-out infinite;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo img:hover, .drawer-logo img:hover, .footer-logo img:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 0 12px rgba(225, 4, 25, 0.9)) brightness(1.2) !important;
}

@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 0 2px rgba(225, 4, 25, 0.4)) brightness(1);
  }
  50% {
    filter: drop-shadow(0 0 8px rgba(225, 4, 25, 0.8)) brightness(1.15);
  }
}

/* Scroll Animation Styles */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-from-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-from-left.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-from-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-from-right.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }


