/* ============================================================
   SKILLTECH SAUDI ARABIA — Modern Executive Template (Style-1)
   Theme: Crisp Royal Navy (#0f172a), Electric Azure (#0284c7), Hot Rose (#db0d80) & Clean Slate Light Aesthetics
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;600;700;800;900&display=swap');

:root {
  --navy-900: #090d16;
  --navy-800: #0f172a;
  --navy-700: #1e293b;
  --navy-600: #334155;
  
  --primary: #0284c7;
  --primary-hover: #0369a1;
  --primary-light: #e0f2fe;

  --accent-pink: #db0d80;
  --accent-pink-hover: #b80a6b;
  --accent-pink-light: #fde8f4;

  --amber: #d97706;
  --emerald: #059669;

  --bg-page: #f8fafc;
  --bg-surface: #ffffff;
  --bg-subtle: #f1f5f9;

  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  --border: #e2e8f0;
  --border-strong: #cbd5e1;

  --shadow-sm: 0 1px 3px rgba(15,23,42,0.08);
  --shadow-md: 0 4px 14px rgba(15,23,42,0.08);
  --shadow-lg: 0 12px 30px rgba(15,23,42,0.12);
  --shadow-xl: 0 20px 45px rgba(15,23,42,0.16);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition: all 0.25s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

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

/* ─── TOP ANNOUNCEMENT BAR ────────────────────────── */
.top-notice-bar {
  background: var(--navy-900);
  color: var(--text-light);
  font-size: 0.85rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-notice-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.notice-badge {
  background: var(--accent-pink);
  color: var(--text-white);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.top-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-contact-link {
  color: #e2e8f0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.top-contact-link:hover {
  color: var(--primary-light);
}

/* ─── STICKY NAVBAR ────────────────────────────────── */
.executive-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.executive-navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Brand Logo Overhang Container */
.brand-logo-frame {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--bg-surface);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  border-top: none;
  margin-top: -5px;
  transition: var(--transition);
}

.brand-logo-frame:hover {
  transform: translateY(2px);
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-item-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-800);
  transition: var(--transition);
  position: relative;
  padding: 8px 0;
}

.nav-item-link:hover, .nav-item-link.active {
  color: var(--accent-pink);
}

.nav-item-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--accent-pink);
  border-radius: 2px;
  transition: var(--transition);
}

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

/* ─── MEGA MENU FOR STYLE-1 ────────────────────────────── */
.has-mega { position: static; }
.has-dropdown .chevron {
  font-size: 0.75rem;
  display: inline-block;
  transition: transform var(--transition);
}
.has-mega:hover .chevron { transform: rotate(180deg); }

.mega-menu {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
  border-top: 3px solid var(--accent-pink);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 998;
  max-height: 80vh;
  overflow-y: auto;
}
.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.mega-col { display: flex; flex-direction: column; }
.mega-cat-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-pink);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.mega-cat-title.mt { margin-top: 16px; }
.mega-col ul { display: flex; flex-direction: column; gap: 4px; list-style: none; margin-bottom: 4px; }
.mega-col ul li a {
  font-size: 0.82rem;
  color: var(--navy-700);
  font-weight: 500;
  transition: var(--transition);
  display: block;
}
.mega-col ul li a:hover {
  color: var(--accent-pink);
  transform: translateX(3px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent-pink);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(219, 13, 128, 0.35);
}

.btn-primary:hover {
  background: var(--accent-pink-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(219, 13, 128, 0.45);
}

.btn-navy {
  background: var(--navy-800);
  color: var(--text-white);
}

.btn-navy:hover {
  background: var(--navy-900);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--border-strong);
  color: var(--navy-800);
}

.btn-outline:hover {
  border-color: var(--navy-800);
  background: var(--bg-subtle);
}

/* ─── HERO SECTION ─────────────────────────────────── */
.hero-exec {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--text-white);
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero-exec::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(2, 132, 199, 0.15);
  border: 1px solid rgba(2, 132, 199, 0.4);
  color: var(--primary-light);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title span {
  color: var(--accent-pink);
  background: linear-gradient(135deg, #ff4db3 0%, #db0d80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 32px;
  max-width: 620px;
}

.hero-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.hero-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f1f5f9;
}

.hero-feat-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.2);
  color: #34d399;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-card-preview {
  position: relative;
  background: var(--navy-700);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-xl);
}

.hero-card-preview img {
  border-radius: var(--radius-md);
  width: 100%;
  object-fit: cover;
}

.hero-badge-overlay {
  position: absolute;
  bottom: -20px;
  left: 20px;
  right: 20px;
  background: var(--bg-surface);
  color: var(--text-main);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-badge-stat {
  display: flex;
  flex-direction: column;
}

.stat-val {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-pink);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ─── QUICK CALCULATOR & FINDER ────────────────────── */
.section-calculator {
  margin-top: -30px;
  position: relative;
  z-index: 10;
  margin-bottom: 70px;
}

.calc-box {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.calc-header {
  text-align: center;
  margin-bottom: 28px;
}

.calc-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy-800);
}

.calc-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.2fr;
  gap: 20px;
  align-items: end;
}

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

.form-group label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy-800);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  background: var(--bg-page);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-800);
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--accent-pink);
  background: var(--bg-surface);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.15);
}

.calc-result-box {
  background: var(--navy-800);
  color: var(--text-white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.result-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.result-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #38bdf8;
}

/* ─── GENERAL SECTION HEADINGS ────────────────────── */
.section {
  padding: 80px 0;
}

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

.section-eyebrow {
  display: inline-block;
  color: var(--accent-pink);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.2;
}

.section-title span {
  color: var(--accent-pink);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ─── PRODUCTS CATALOG MATRIX ─────────────────────── */
.product-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--navy-800);
  color: var(--text-white);
  border-color: var(--navy-800);
  box-shadow: var(--shadow-sm);
}

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

.product-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}

.product-img-wrap {
  position: relative;
  height: 240px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

.product-img-wrap img {
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}

.product-badge-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent-pink);
  color: var(--text-white);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 12px 0 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.spec-line {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 4px;
}

.spec-line span:last-child {
  font-weight: 700;
  color: var(--navy-800);
}

.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-pink);
}

/* ─── INSTALLATION SERVICES SECTION ───────────────── */
.section-installation {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--bg-page);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.service-card:hover {
  background: var(--bg-surface);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── COMPARISON MATRIX ───────────────────────────── */
.comparison-wrapper {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.table-comparison {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.table-comparison th, .table-comparison td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
}

.table-comparison th {
  background: var(--navy-800);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
}

.table-comparison tr:nth-child(even) td {
  background: var(--bg-page);
}

.check-yes {
  color: var(--emerald);
  font-weight: 800;
}

.cross-no {
  color: var(--accent-pink);
  font-weight: 800;
}

/* ─── COUNTER & TRUST STATS BANNER ─────────────────── */
.stats-strip-exec {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--text-white);
  padding: 60px 0;
}

.stats-grid-exec {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item-exec {
  padding: 16px;
}

.stat-num-exec {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--accent-pink);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-title-exec {
  font-size: 0.95rem;
  color: #cbd5e1;
  font-weight: 600;
}

/* ─── TESTIMONIALS SECTION ─────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testi-card-exec {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testi-stars {
  color: var(--amber);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 0.98rem;
  color: var(--navy-800);
  font-style: italic;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.author-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-900);
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── FAQ ACCORDION ─────────────────────────────────── */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.2rem;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-pink);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

/* ─── FOOTER ────────────────────────────────────────── */
.footer-exec {
  background: var(--navy-900);
  color: var(--text-light);
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.92rem;
  color: #94a3b8;
  max-width: 320px;
}

.footer-col-title {
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: #94a3b8;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-pink);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 16px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.6);
}

/* Mobile Hamburger Button & Drawer Styling */
.mobile-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-toggle-btn span {
  width: 100%;
  height: 3px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-drawer-1 {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--bg-surface);
  box-shadow: -5px 0 25px rgba(0,0,0,0.15);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-drawer-1.active {
  right: 0;
}

.drawer-header-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.drawer-close-btn {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--navy-800);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.drawer-close-btn:hover {
  background: var(--accent-pink);
  color: var(--text-white);
  border-color: var(--accent-pink);
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.mobile-menu-links li a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: var(--bg-page);
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.mobile-menu-links li a:hover {
  background: var(--accent-pink);
  color: var(--text-white);
  border-color: var(--accent-pink);
}

.drawer-cta-wrap {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.mobile-overlay-1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(9, 13, 22, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

/* Comparison Wrapper Overflow Touch Scrolling */
.comparison-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-comparison {
  min-width: 600px;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .mega-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .mobile-toggle-btn { display: flex; }
  .btn-book-desktop { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .calc-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid-exec { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .top-notice-inner { justify-content: center; text-align: center; gap: 8px; }
  .top-contacts { gap: 12px; font-size: 0.78rem; flex-wrap: wrap; justify-content: center; }
  .executive-navbar { height: 70px; }
  .nav-wrapper { height: 70px; }
  .brand-logo-img { height: 46px; }

  .hero-exec { padding: 40px 0 60px; }
  .hero-title { font-size: 2.1rem; }
  .hero-desc { font-size: 1rem; }
  .hero-features-list { grid-template-columns: 1fr; gap: 10px; }
  .hero-badge-overlay { position: relative; bottom: 0; left: 0; right: 0; margin-top: 16px; }

  .calc-box { padding: 24px 18px; }
  .calc-title { font-size: 1.4rem; }
  .calc-grid { grid-template-columns: 1fr; gap: 16px; }

  .section { padding: 50px 0; }
  .section-title { font-size: 1.85rem; }
  .service-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  .product-filter-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .tab-btn { flex-shrink: 0; white-space: nowrap; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.75rem; }
  .stat-num-exec { font-size: 2.5rem; }
  .whatsapp-float { width: 50px; height: 50px; font-size: 1.6rem; bottom: 20px; right: 20px; }
}
