@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-light: #f6f3fb;
  --bg-dark: #0b071e;
  --bg-card: #ffffff;
  --bg-card-dark: #16122d;
  --primary: #6355e0;
  --primary-hover: #4e40c7;
  --primary-glow: rgba(99, 85, 224, 0.1);
  --accent: #22d3ee;
  --text-main: #1f1b35;
  --text-muted: #6b6684;
  --text-light: #f3f0fc;
  --border-color: rgba(0, 0, 0, 0.05);
  --border-dark: rgba(255, 255, 255, 0.06);
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.06), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-light);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--bg-dark);
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

button, input, select, textarea {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: rgba(99, 85, 224, 0.2);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography & Layout Helpers */
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.uppercase-tag {
  font-family: var(--font-title);
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}

/* Header & Navigation */
.top-bar {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left {
  display: flex;
  gap: 24px;
}
.top-bar-right {
  display: flex;
  gap: 16px;
}

header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--bg-dark);
}
.logo svg {
  fill: var(--primary);
}

.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-item {
  position: relative;
}
.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
  color: var(--text-main);
}
.nav-link:hover {
  color: var(--primary);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 12px;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-lg);
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li {
  list-style: none;
}
.dropdown-link {
  display: block;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--text-light);
}
.dropdown-link:hover {
  background: rgba(99, 85, 224, 0.1);
  color: var(--primary);
}

.mobile-nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--bg-dark);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.btn-primary {
  background: var(--primary);
  color: white;
}
.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 4px 15px rgba(99, 85, 224, 0.3);
}
.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}
.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(34, 211, 238, 0.05);
}

/* Sections Global */
section {
  padding: 100px 0;
  position: relative;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #160a37 100%);
  color: white;
  padding: 120px 0;
}
.hero-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.hero-content h1 {
  font-size: 4rem;
  line-height: 1.15;
  margin-bottom: 24px;
  color: white;
}
.hero-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 580px;
}
.trust-widget {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
}
.trust-stars {
  color: #10b981;
  font-size: 1.2rem;
}

.hero-right-img {
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Core Features Section (Pillars) */
.features-pillars {
  margin-top: -60px;
  padding: 0 0 60px;
  z-index: 10;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(99, 85, 224, 0.2);
}
.pillar-icon-box {
  background: var(--primary-glow);
  color: var(--primary);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.pillar-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.pillar-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.pillar-link {
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
}
.pillar-link:hover {
  gap: 10px;
}

/* Our Services Section */
.services {
  background: rgba(99, 85, 224, 0.01);
  border-top: 1px solid var(--border-color);
}
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.section-title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-top: 12px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 85, 224, 0.15);
  box-shadow: var(--shadow-lg);
}
.service-icon-box {
  background: var(--primary-glow);
  color: var(--primary);
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* Stream Anywhere Section */
.stream-anywhere {
  border-top: 1px solid var(--border-color);
}
.stream-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.stream-content h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 24px;
}
.stream-content p {
  color: var(--text-muted);
  margin-bottom: 36px;
}
.package-toggle-row {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}
.pkg-btn {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.pkg-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.price-display-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 36px;
}
.price-val-large {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.stream-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.stream-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-main);
}
.stream-feat-item::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
}
.stream-images {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.stream-img-box {
  width: 240px;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-dark);
}
.stream-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pricing Packages Section */
.pricing {
  background: rgba(99, 85, 224, 0.01);
  border-top: 1px solid var(--border-color);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(99, 85, 224, 0.2);
}
.price-card.featured {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.price-card.featured h3, .price-card.featured .price-num, .price-card.featured .price-card-features li {
  color: white;
}
.price-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.price-num {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}
.price-num span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}
.price-card.featured .price-num span {
  color: rgba(255, 255, 255, 0.7);
}
.price-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}
.price-card.featured .price-card-features {
  border-top-color: rgba(255, 255, 255, 0.1);
}
.price-card-features li {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.price-card-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
}
.price-card.featured .price-card-features li::before {
  color: white;
}

/* Coverage Areas & Availability Section */
.coverage {
  border-top: 1px solid var(--border-color);
}
.coverage-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.coverage-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.coverage-stat-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.coverage-stat-val {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.coverage-stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.coverage-right h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 16px;
}
.coverage-right p {
  color: var(--text-muted);
  margin-bottom: 30px;
}
.checker-form {
  display: flex;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 8px;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}
.checker-input {
  width: 100%;
  padding: 10px 16px;
  font-size: 0.95rem;
}
.checker-result-box {
  margin-top: 20px;
  padding: 16px;
  border-radius: 6px;
  font-weight: 600;
  display: none;
}
.checker-result-box.available {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #10b981;
}
.checker-result-box.not-available {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

/* Brand Partners Slider */
.brand-partners {
  background: var(--bg-dark);
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.partners-wrapper {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: center;
}
.partner-logo {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Movie Releases Section */
.movie-releases {
  padding: 100px 0;
}
.releases-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
}
.releases-slider::-webkit-scrollbar {
  height: 6px;
}
.movie-card {
  min-width: 480px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  transition: var(--transition-smooth);
}
.movie-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(99, 85, 224, 0.15);
}
.movie-poster-box {
  width: 45%;
  position: relative;
}
.movie-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.movie-rating {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}
.movie-details {
  width: 55%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.movie-desc-quotes {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.movie-details h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.movie-date {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Tech Essentials Section (Shop) */
.tech-essentials {
  background: rgba(99, 85, 224, 0.01);
  border-top: 1px solid var(--border-color);
}
.essentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.gadget-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}
.gadget-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(99, 85, 224, 0.15);
}
.gadget-img-box {
  height: 220px;
  overflow: hidden;
}
.gadget-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gadget-card:hover .gadget-img {
  transform: scale(1.05);
}
.gadget-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.gadget-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.gadget-stars {
  color: var(--primary);
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.gadget-price {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

/* Latest Insights Section */
.insights {
  border-top: 1px solid var(--border-color);
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.insight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}
.insight-card:hover {
  border-color: rgba(99, 85, 224, 0.15);
}
.insight-img-box {
  height: 240px;
  overflow: hidden;
}
.insight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.insight-card:hover .insight-img {
  transform: scale(1.04);
}
.insight-body {
  padding: 24px;
}
.insight-meta {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 10px;
  display: block;
}
.insight-body h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.insight-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.insight-link {
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.95rem;
}
.insight-link:hover {
  gap: 8px;
}

/* FAQ Section */
.faq {
  background: rgba(99, 85, 224, 0.01);
  border-top: 1px solid var(--border-color);
}
.faq-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
}
.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-title);
  font-size: 1.05rem;
}
.faq-toggle-icon {
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}
.faq-item.open .faq-toggle-icon {
  transform: rotate(45deg);
  color: var(--primary);
}
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
.faq-item.open .faq-answer {
  padding: 0 24px 20px;
  max-height: 200px;
}
.faq-img-box {
  border-radius: 20px;
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}
.faq-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer Section */
footer {
  background: var(--bg-dark);
  color: white;
  border-top: 1px solid var(--border-dark);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
}
.footer-about p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-top: 16px;
  max-width: 300px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}
.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-contact li {
  display: flex;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}
.footer-contact li svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.3);
}
.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* Floating Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--primary);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 99;
  box-shadow: var(--shadow-lg);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--primary-hover);
  transform: translateY(-4px);
}

/* Secondary Page Banner */
.page-banner {
  padding: 120px 0 60px;
  background: linear-gradient(rgba(11, 7, 30, 0.8), rgba(11, 7, 30, 0.95)), url('images/img_11_tennis_bg.webp') no-repeat center center;
  background-size: cover;
  text-align: center;
  color: white;
  border-bottom: 1px solid var(--border-dark);
}
.page-banner h1 {
  font-size: 3rem;
  margin-bottom: 12px;
  color: white;
}
.breadcrumbs {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumbs span {
  color: var(--primary);
}

/* Shop Layout Page */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 60px 0;
}
.shop-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  height: fit-content;
  box-shadow: var(--shadow-sm);
}
.sidebar-widget {
  margin-bottom: 30px;
}
.sidebar-widget:last-child {
  margin-bottom: 0;
}
.sidebar-widget h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}
.shop-search {
  display: flex;
  align-items: center;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 10px 20px;
}
.shop-search input {
  width: 100%;
  font-size: 0.9rem;
  color: var(--text-main);
}
.shop-search span {
  color: var(--text-muted);
}
.category-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.category-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}
.category-item:hover, .category-item.active {
  color: var(--primary);
}
.shop-main-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.results-count {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.shop-sort select {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
}

/* Booking Drawer */
.booking-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100%;
  background: var(--bg-card);
  border-left: 1px solid var(--border-color);
  z-index: 1000;
  box-shadow: var(--shadow-lg);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.booking-drawer.open {
  right: 0;
}
.booking-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.booking-close {
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
}
.booking-close:hover {
  color: var(--bg-dark);
}
.booking-content-container {
  flex-grow: 1;
  padding: 24px;
  overflow-y: auto;
}
.booking-footer {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-light);
}
.booking-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 700;
}
.booking-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}
.booking-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Product Detail Page */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  padding: 80px 0;
}
.product-main-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}
.product-info-col {
  display: flex;
  flex-direction: column;
}
.product-detail-badge {
  background: var(--primary-glow);
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.product-detail-title {
  font-size: 3rem;
  margin-bottom: 16px;
  line-height: 1.15;
}
.product-detail-price {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 24px;
  font-family: var(--font-title);
}
.product-detail-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 30px;
  line-height: 1.7;
}
.product-meta-specs {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.spec-row {
  display: flex;
  font-size: 0.95rem;
}
.spec-label {
  width: 140px;
  font-weight: 600;
  color: var(--text-muted);
}
.spec-val {
  color: var(--text-main);
}
.purchase-controls {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

/* Blog list page */
.blog-layout {
  padding: 60px 0;
}
.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.page-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.page-num:hover, .page-num.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* Blog Detail Page */
.blog-detail-layout {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 24px;
}
.blog-detail-header {
  text-align: center;
  margin-bottom: 40px;
}
.blog-detail-title {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
.blog-detail-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.blog-detail-hero-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-lg);
}
.blog-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-main);
}
.blog-content p {
  margin-bottom: 24px;
}
.blog-content h2, .blog-content h3 {
  margin-top: 40px;
  margin-bottom: 20px;
}
.blog-content blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 24px;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--bg-dark);
  margin: 40px 0;
}

/* Contact page styling */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 0;
}
.contact-info-col h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.contact-info-col p {
  color: var(--text-muted);
  margin-bottom: 40px;
}
.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-detail-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-icon {
  background: var(--primary-glow);
  border: 1px solid var(--primary);
  color: var(--primary);
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.contact-detail-content h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.contact-detail-content p {
  margin-bottom: 0;
}

.contact-form-col {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form-col h3 {
  font-size: 1.6rem;
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-muted);
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 12px 18px;
  border-radius: 4px;
  color: var(--text-main);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--primary);
  background: white;
}

/* Accordion FAQs Section */
.faq-section {
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
}
.faq-section h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 50px;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.toast {
  background: var(--bg-dark);
  color: white;
  border-left: 4px solid var(--primary);
  padding: 16px 24px;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  transform: translateX(-120%);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.toast.show {
  transform: translateX(0);
}

/* Image Fail Safe placeholder styling */
.img-fallback-svg {
  background: var(--bg-dark);
  fill: rgba(255, 255, 255, 0.35);
  display: block;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-content h1 {
    font-size: 3.2rem;
  }
  .pillars-grid, .services-grid, .essentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stream-wrapper, .coverage-wrapper, .faq-wrapper, .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-dark);
    flex-direction: column;
    padding: 40px;
    gap: 24px;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--border-dark);
  }
  .nav-menu.open {
    left: 0;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .nav-container {
    height: 80px;
  }
  .pillars-grid, .services-grid, .essentials-grid, .blog-list-grid {
    grid-template-columns: 1fr;
  }
  .booking-drawer {
    width: 100%;
    right: -100%;
  }
}

/* Fix blog card image overflow */
.blog-card img, .blog-img {
  max-width: 100%;
  height: auto;
  display: block;
}
.blog-card, .blog-img-wrapper {
  overflow: hidden;
  max-width: 100%;
}
.blog-list-grid {
  overflow: hidden;
}
