/* Perfect Assignment Creator - Dedicated Responsive Mobile & Desktop System */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Poppins', sans-serif;
  
  --bg-dark: #070913;
  --bg-surface: #0e1222;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-glass-glow: rgba(207, 6, 150, 0.45);

  /* Logo Palette */
  --logo-blue: #0d38bd;
  --logo-blue-bright: #1c53f4;
  --logo-magenta: #cf0696;
  --logo-magenta-bright: #e61093;
  --logo-gold: #ffd700;
  
  --gradient-logo-magenta: linear-gradient(135deg, #e61093 0%, #bd007c 100%);
  --gradient-logo-blue: linear-gradient(135deg, #0d38bd 0%, #1c53f4 100%);
  --gradient-logo-combined: linear-gradient(135deg, #cf0696 0%, #1c53f4 100%);

  --text-white: #ffffff;
  --text-sub: #94a3b8;
  --text-muted: #64748b;

  --shadow-glow-magenta: 0 10px 30px rgba(207, 6, 150, 0.35);
  --shadow-glow-blue: 0 10px 30px rgba(28, 83, 244, 0.35);
  --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.5);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

/* Reset & Core */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

/* Ambient Glow */
.ambient-glow {
  position: fixed;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.28;
}
.ambient-1 { top: -120px; left: -120px; background: var(--logo-magenta); }
.ambient-2 { top: 40%; right: -150px; background: var(--logo-blue-bright); }
.ambient-3 { bottom: 10%; left: 20%; background: var(--logo-gold); opacity: 0.15; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.section {
  padding: 80px 0;
  position: relative;
}

.text-gradient {
  background: var(--gradient-logo-magenta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
  background: var(--gradient-logo-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(207, 6, 150, 0.12);
  border: 1px solid rgba(207, 6, 150, 0.35);
  color: var(--logo-magenta-bright);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-sub);
}

/* TOP CONTACT HEADER BAR */
.top-contact-bar {
  background: rgba(13, 56, 189, 0.22);
  border-bottom: 1px solid var(--border-glass);
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-sub);
}

.top-bar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-info-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-info-group a {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.contact-info-group a:hover {
  color: var(--logo-magenta-bright);
}

/* DESKTOP NAVBAR HEADER */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 9, 19, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 54px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.04);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.logo-text span {
  color: var(--logo-magenta-bright);
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-sub);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--logo-magenta-bright);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.discount-pill {
  background: rgba(207, 6, 150, 0.15);
  border: 1px solid rgba(207, 6, 150, 0.4);
  color: var(--logo-magenta-bright);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.btn-primary {
  background: var(--gradient-logo-magenta);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow-magenta);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(207, 6, 150, 0.6);
}

.btn-blue {
  background: var(--gradient-logo-blue);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow-blue);
  white-space: nowrap;
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--border-glass);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--logo-magenta-bright);
  color: var(--logo-magenta-bright);
}

/* MOBILE MENU BUTTON */
.mobile-menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: var(--text-white);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  background: var(--logo-magenta);
  border-color: var(--logo-magenta);
}

/* DEDICATED MOBILE NAVIGATION DRAWER */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85%;
  height: 100vh;
  background: rgba(10, 13, 26, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 9999;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  border-left: 1px solid var(--border-glass-glow);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-glass);
}

.mobile-nav-header .brand-logo-img {
  height: 42px;
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 30px 0;
}

.mobile-drawer-links a {
  color: #e2e8f0;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s ease;
}

.mobile-drawer-links a i {
  color: var(--logo-magenta-bright);
  font-size: 16px;
}

.mobile-drawer-links a:hover {
  color: var(--logo-magenta-bright);
}

.mobile-drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border-glass);
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

/* HERO SECTION */
.hero-section {
  padding: 40px 0 70px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}

.hero-slider-wrapper {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.hero-slider-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: var(--gradient-logo-combined);
}

.slides-container {
  position: relative;
  width: 100%;
  flex-grow: 1;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0; width: 100%;
  opacity: 0; visibility: hidden;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: translateY(15px);
}

.hero-slide.active {
  opacity: 1; visibility: visible;
  transform: translateY(0);
  position: relative;
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(207, 6, 150, 0.12);
  border: 1px solid rgba(207, 6, 150, 0.35);
  color: var(--logo-magenta-bright);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.slide-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.slide-desc {
  font-size: 16px;
  color: var(--text-sub);
  margin-bottom: 24px;
  line-height: 1.6;
}

.slide-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
}

.feature-pill i { color: var(--logo-gold); }

.slide-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-glass);
}

.slider-dots { display: flex; align-items: center; gap: 8px; }
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.2); cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active {
  width: 28px; border-radius: var(--radius-full);
  background: var(--gradient-logo-magenta);
}

.slider-nav-btns { display: flex; align-items: center; gap: 8px; }
.nav-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.06); border: 1px solid var(--border-glass);
  color: var(--text-white); font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.nav-btn:hover { background: var(--logo-magenta); color: #fff; border-color: var(--logo-magenta); }

/* CALCULATOR CARD */
.quote-calculator-card {
  background: rgba(14, 18, 34, 0.92);
  border: 1px solid var(--border-glass-glow);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  position: relative;
}

.calc-header h3 {
  font-family: var(--font-heading);
  font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.calc-header h3 span.badge {
  background: var(--gradient-logo-magenta); color: #fff;
  font-size: 11px; padding: 4px 10px; border-radius: var(--radius-full);
}

.calc-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text-sub); display: flex; justify-content: space-between; }

.form-control {
  width: 100%; background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass); border-radius: var(--radius-sm);
  padding: 10px 12px; color: var(--text-white); font-family: var(--font-body);
  font-size: 14px; outline: none; transition: border-color 0.3s ease;
}
.form-control:focus { border-color: var(--logo-magenta); }
.form-control option { background: #0e1222; color: #fff; }

.range-container { display: flex; align-items: center; gap: 14px; }
.range-slider {
  flex-grow: 1; -webkit-appearance: none; appearance: none;
  height: 6px; border-radius: 3px; background: rgba(255, 255, 255, 0.2); outline: none;
}
.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%;
  background: var(--logo-magenta-bright); cursor: pointer; box-shadow: 0 0 10px rgba(207, 6, 150, 0.8);
}

.word-count-badge {
  background: rgba(207, 6, 150, 0.15); border: 1px solid var(--logo-magenta);
  color: var(--logo-magenta-bright); padding: 4px 10px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 12px; text-align: center;
}

.price-summary {
  background: rgba(0, 0, 0, 0.35); border: 1px solid var(--border-glass);
  border-radius: var(--radius-md); padding: 14px; display: flex;
  align-items: center; justify-content: space-between;
}
.original-price { font-size: 12px; color: var(--text-muted); text-decoration: line-through; }
.final-price { font-family: var(--font-heading); font-size: 30px; font-weight: 800; color: var(--logo-magenta-bright); line-height: 1; }
.guarantee-note { font-size: 12px; color: var(--logo-gold); display: flex; align-items: center; gap: 6px; }

/* TRUST BAR */
.trust-bar-section {
  padding: 20px 0; background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border-glass); border-bottom: 1px solid var(--border-glass);
}
.trust-grid { display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon-box {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(28, 83, 244, 0.12); border: 1px solid rgba(28, 83, 244, 0.35);
  display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--logo-blue-bright);
}
.trust-score { font-family: var(--font-heading); font-size: 16px; font-weight: 700; line-height: 1.2; }
.stars { color: var(--logo-gold); font-size: 12px; }
.trust-label { font-size: 12px; color: var(--text-sub); }

/* PORTRAIT VIDEO TESTIMONIALS SLIDER SECTION */
.video-testimonials-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0c18 100%);
  overflow: hidden;
}

.video-slider-header-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.video-slider-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.video-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: var(--text-white);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-nav-btn:hover {
  background: var(--logo-magenta);
  border-color: var(--logo-magenta);
  transform: scale(1.08);
}

.video-slider-viewport {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 0 30px;
}
.video-slider-viewport::-webkit-scrollbar { display: none; }

.video-slider-track {
  display: flex;
  gap: 24px;
}

.portrait-video-card {
  flex: 0 0 280px;
  height: 490px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  background: var(--bg-card);
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.portrait-video-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--logo-magenta);
  box-shadow: 0 20px 40px rgba(207, 6, 150, 0.3);
}

.portrait-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portrait-video-card:hover .portrait-thumb-img {
  transform: scale(1.08);
}

.portrait-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 50%, rgba(7,9,19,0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.portrait-top-badge {
  align-self: flex-start;
  background: var(--logo-magenta);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(207, 6, 150, 0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}

.portrait-play-center {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(207, 6, 150, 0.9);
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(207, 6, 150, 0.8);
  transition: all 0.3s ease;
}

.portrait-video-card:hover .portrait-play-center {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--logo-blue-bright);
  box-shadow: 0 0 30px rgba(28, 83, 244, 0.9);
}

.portrait-bottom-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.portrait-student-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.portrait-uni {
  font-size: 12px;
  color: var(--logo-gold);
}

.portrait-quote {
  font-size: 12px;
  color: #e2e8f0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* MODAL VIDEO PLAYER */
.video-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; visibility: hidden; transition: all 0.4s ease;
}

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

.video-modal-container {
  background: #0e1222; border: 1px solid var(--border-glass-glow);
  border-radius: var(--radius-lg); width: 100%; max-width: 420px;
  overflow: hidden; box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  transform: scale(0.9); transition: transform 0.4s ease; position: relative;
}

.video-modal-overlay.active .video-modal-container { transform: scale(1); }

.modal-close-btn {
  position: absolute; top: 12px; right: 12px; width: 36px; height: 36px;
  background: rgba(255, 255, 255, 0.15); border: 1px solid var(--border-glass);
  color: #fff; border-radius: 50%; font-size: 18px; cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center; transition: all 0.3s ease;
}
.modal-close-btn:hover { background: var(--logo-magenta); color: #fff; }

.video-player-wrapper {
  position: relative; width: 100%; aspect-ratio: 9 / 16; max-height: 600px; background: #000;
}
.video-player-wrapper video { width: 100%; height: 100%; object-fit: cover; }

.modal-info-panel {
  padding: 16px 20px; display: flex; align-items: center; justify-content: space-between;
  background: rgba(255, 255, 255, 0.03); border-top: 1px solid var(--border-glass);
}
.modal-student-meta h3 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; }
.modal-student-meta p { font-size: 12px; color: var(--text-sub); }

/* SERVICES GRID */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px;
}
.service-card {
  background: var(--bg-card); border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg); padding: 32px; transition: all 0.4s ease;
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px); background: var(--bg-card-hover);
  border-color: var(--border-glass-glow); box-shadow: 0 15px 35px rgba(207, 6, 150, 0.15);
}
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(207, 6, 150, 0.12); border: 1px solid rgba(207, 6, 150, 0.35);
  display: flex; align-items: center; justify-content: center; font-size: 24px;
  color: var(--logo-magenta-bright); margin-bottom: 20px;
}
.service-title { font-family: var(--font-heading); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.service-desc { font-size: 14px; color: var(--text-sub); margin-bottom: 20px; line-height: 1.6; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.service-list li { font-size: 13px; display: flex; align-items: center; gap: 8px; color: #cbd5e1; }
.service-list li i { color: var(--logo-gold); }
.service-footer {
  margin-top: auto; display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--border-glass);
}
.service-price { font-size: 13px; color: var(--text-sub); }
.service-price span { font-family: var(--font-heading); font-size: 18px; font-weight: 800; color: var(--logo-magenta-bright); }

/* HOW IT WORKS */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.step-card {
  background: var(--bg-card); border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg); padding: 28px 20px; text-align: center;
  position: relative; transition: all 0.3s ease;
}
.step-card:hover { transform: translateY(-5px); border-color: var(--logo-magenta); }
.step-number {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 38px; height: 38px; border-radius: 50%; background: var(--gradient-logo-magenta);
  color: #ffffff; font-family: var(--font-heading); font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-glow-magenta);
}
.step-icon { font-size: 32px; color: var(--logo-blue-bright); margin: 14px 0 16px; }
.step-title { font-family: var(--font-heading); font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--text-sub); }

/* FAQ ACCORDION */
.faq-container { max-width: 850px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-glass); border-radius: var(--radius-md); overflow: hidden; }
.faq-header { padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.faq-question { font-family: var(--font-heading); font-size: 16px; font-weight: 600; }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; background: rgba(255, 255, 255, 0.05);
  display: flex; align-items: center; justify-content: center; transition: all 0.3s ease;
}
.faq-item.active .faq-icon { transform: rotate(180deg); background: var(--logo-magenta); color: #ffffff; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0 24px; color: var(--text-sub); font-size: 14px; line-height: 1.6; }
.faq-item.active .faq-body { max-height: 250px; padding: 0 24px 20px; }

/* FLOATING WIDGET */
.floating-widget { position: fixed; bottom: 24px; right: 24px; z-index: 999; display: flex; flex-direction: column; gap: 12px; }
.whatsapp-btn {
  width: 54px; height: 54px; background: #25d366; color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 28px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5); text-decoration: none; transition: transform 0.3s ease;
}
.whatsapp-btn:hover { transform: scale(1.1); }

/* FOOTER */
.footer { background: #04050b; border-top: 1px solid var(--border-glass); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 36px; margin-bottom: 40px; }
.footer-col h4 { font-family: var(--font-heading); font-size: 17px; font-weight: 700; margin-bottom: 18px; color: var(--text-white); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-sub); text-decoration: none; font-size: 14px; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--logo-magenta-bright); }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid var(--border-glass); color: var(--text-muted); font-size: 13px; }

/* DEDICATED TABLET & MOBILE RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  
  .brand-logo-img { height: 44px; }
  .logo-text { font-size: 18px; }

  .hero-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-contact-bar { font-size: 12px; }
  .top-bar-container { justify-content: center; text-align: center; }
  .contact-info-group { flex-wrap: wrap; justify-content: center; gap: 10px; }
  
  /* Dedicated Mobile Navbar Layout */
  .nav-container { height: 70px; padding: 0 14px; gap: 8px; }
  .brand-logo-img { height: 38px; }
  .logo-text { font-size: 16px; }
  
  .nav-actions { gap: 6px; }
  .discount-pill { padding: 4px 8px; font-size: 11px; }
  .btn-primary { padding: 8px 14px; font-size: 12px; }
  .mobile-menu-btn { width: 36px; height: 36px; font-size: 16px; }

  .slide-title { font-size: 28px; }
  .section-title { font-size: 26px; }
  .hero-slider-wrapper { padding: 20px; min-height: auto; }
  .quote-calculator-card { padding: 20px; }
  
  .footer-grid { grid-template-columns: 1fr; }
  .portrait-video-card { flex: 0 0 240px; height: 430px; }
}

@media (max-width: 480px) {
  .nav-container { padding: 0 10px; }
  .brand-logo { gap: 6px; }
  .brand-logo-img { height: 32px; }
  .logo-text { font-size: 14px; }
  .logo-text span { display: inline; }
  
  .discount-pill { display: none; } /* Hide pill on <480px screens to preserve clean spacing */
  .btn-primary { padding: 7px 12px; font-size: 11px; }
  
  .slide-title { font-size: 24px; }
  .slide-cta-group { flex-direction: column; width: 100%; }
  .slide-cta-group a { width: 100%; justify-content: center; }
}
