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

/* ========================================
   1) THEME TOKENS (12 COLORS YOU REPLACE)
   ========================================
   NOTE:
   - Dark palettes should "flip" these values:
     --primary-light  => becomes dark page background
     --text-dark      => becomes white (main text)
     --text-light     => becomes dark (cards/surfaces)
     --white-transparent / --white-semi => become subtle light borders text for dark
*/

:root {
  /* Font Scale */
  --font-scale: 1;

  /* Primary Colors (replaceable) */
  --primary-color: #F59E0B;
  --primary-dark: #D97706;
  --primary-light: #FFFBEB;

  /* Secondary Colors (replaceable) */
  --secondary-color: #FCD34D;
  --secondary-dark: #FBBF24;
  --secondary-light: #FCD34D66;

  /* Text Colors (replaceable) */
  --text-dark: #1f2937;     /* in dark palette -> #F8FAFC (white-ish) */
  --text-light: #FFFFFF;    /* in dark palette -> #0B1220 / #0F172A (surface) */

  /* Utility Colors (replaceable) */
  --shadow-color: #F59E0B26;
  --overlay-dark: #1F2937BF;
  --white-transparent: #FFFFFF1A; /* in light palette you can set to rgba(17,24,39,0.10) */
  --white-semi: #FFFFFF80;        /* use as text color; in light set to #4b5563 */

  /* ========================================
     CONSTANTS (NOT REPLACED)
     ======================================== */
  --white: #FFFFFF;
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  --accent-gold: #FBBF24;

  /* ========================================
     DERIVED TOKENS (DO NOT REPLACE)
     build the whole UI from the 12 tokens above
     ======================================== */
  --page-bg: var(--primary-light);         /* page background (flips via palette) */
  --surface: var(--text-light);            /* cards / sections background (flips via palette) */
  --surface-soft: var(--secondary-light);  /* subtle surface (inputs / chips) */
  --border-color: var(--white-transparent);/* borders (light: dark alpha / dark: white alpha) */
  --text: var(--text-dark);                /* main text color */
  --link: var(--primary-color);
  --focus-ring: var(--shadow-color);

  /* Shadows (use theme shadow token so it looks ok in dark too) */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.18);

  /* Transitions */
  --transition: cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* ========================================
   2) RESET / BASE
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body { height: 100%; }

.onboarding-container {
  min-height: 100vh;
  background: var(--white);
  position: relative;
  overflow-x: hidden;
  direction: rtl;
  font-family: 'Assistant', 'Heebo', sans-serif;
  color: var(--text);
}

/* ========================================
   3) BACKGROUND ANIMATIONS
   ======================================== */
.geo-background {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.geo-circle,
.geo-square {
  position: absolute;
  will-change: transform;
}

.geo-circle {
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-color) 100%);
  opacity: 0.4;
}

.geo-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
  opacity: 0.3;
  animation: float-slow 25s ease-in-out infinite;
}

.geo-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  opacity: 0.3;
  animation: float-slow 30s ease-in-out infinite reverse;
}

.geo-square {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  opacity: 0.05;
  transform: rotate(45deg);
  top: 50%;
  left: 10%;
  animation: rotate-slow 50s linear infinite;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-40px, -20px); }
}

@keyframes rotate-slow {
  from { transform: rotate(45deg); }
  to { transform: rotate(405deg); }
}

/* ========================================
   4) MAIN WRAPPER
   ======================================== */
.content-wrapper {
  min-height: 100vh;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 5rem 50px;
  position: relative;
  z-index: 10;
}

.step-content {
  width: 100%;
  max-width: 1200px;
}

/* ========================================
   5) HERO + FORM LAYOUT
   ======================================== */
.hero-form-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

/* --- Right Side (Content) --- */
.hero-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
  gap: 1rem;
}

.main-logo {
  height: 55px;
  width: auto;
  align-self: flex-start;
  margin-bottom: 1rem;
}

.logo-icon, .img-fluid {
  height: 60px !important;
  width: auto !important;
}

/* Badge */
.trust-badge-top {
  display: inline-flex;
  align-items: center;
  background: var(--secondary-light);
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid var(--border-color);
  align-self: flex-start;
  margin-bottom: 0.5rem;
}

.trust-badge-top .stars {
  color: var(--accent-gold);
  letter-spacing: 1px;
  padding-left: 8px;
}

.stars { color: var(--accent-gold); }

/* Titles / Text */
.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  font-family: 'Heebo', sans-serif;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.hero-title .title-line { display: block; }
.hero-title .highlight { color: var(--primary-color); }

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0.5rem 0;
  line-height: 1.3;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.5;
  max-width: 76%;
  margin-bottom: 1rem;
  font-family: 'Assistant', 'Heebo', sans-serif;
  font-weight: 700;
}

/* --- Components: Benefits --- */
.benefits-compact {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 1rem;
  font-weight: 500;
}

.benefits-compact .benefit-compact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefits-compact .benefit-check {
  color: var(--primary-color);
  background: var(--secondary-light);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}

.benefits-compact .service-text {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  font-family: 'Assistant', 'Heebo', sans-serif;
}

/* --- Components: Images Gallery --- */
.images-gallery {
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 450px;
}

.large-image-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
  border: 1px solid rgba(0,0,0,0.02);
}

.large-image-wrapper:hover { transform: scale(1.02); }

.large-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.small-images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  width: 100%;
}

.small-image-wrapper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.02);
}

.small-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.small-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* Desktop layout areas */
@media (min-width: 969px) {
  .hero-form-layout {
    grid-template-areas:
      "content form"
      "gallery form"
      "testimonial form";
  }
  .hero-side { grid-area: content; }
  .form-side { grid-area: form; }
  .images-gallery { grid-area: gallery; margin-top: 0; }
}

/* --- Image Modal (Popup) --- */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding: 0;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: var(--overlay-dark);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 90%;
  max-width: 1200px;
  max-height: 85vh;
  object-fit: contain;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
  to { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: var(--white);
  font-size: 50px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 10000;
}

.modal-close:hover,
.modal-close:focus { color: rgba(255,255,255,0.75); }

/* ========================================
   6) TESTIMONIALS (cards should flip with palette)
   ======================================== */
.single-testimonial {
  padding: 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  border-right: 4px solid var(--primary-color);
  box-shadow: var(--shadow-sm);
  margin-top: 1.2rem;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--surface);
}

.single-testimonial .user-info {
  font-weight: 800;
  margin-top: 5px;
  color: var(--text);
  font-style: normal;
  font-size: 0.85rem;
}

/* ========================================
   7) FORM SIDE (cards should flip with palette)
   ======================================== */
.form-side { width: 100%; }

.form-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  border-top: 5px solid var(--primary-color);
  box-shadow: 0 20px 60px -15px var(--shadow-color), 0 10px 20px -5px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.form-card:hover {
  box-shadow: 0 25px 70px -15px var(--shadow-color), 0 10px 25px -5px rgba(0, 0, 0, 0.10);
}

.card-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-card-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
  font-family: 'Heebo', sans-serif;
}

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

.input-group-vertical {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.input-wrapper { position: relative; margin-bottom: 0.2rem; }

.input-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.input-field {
  width: 100%;
  height: 50px;
  padding: 0 1.2rem;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--surface-soft);
  border-radius: 12px;
  outline: none;
  transition: all 0.25s var(--transition);
  font-family: inherit;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02) inset;
}

.input-field.textarea-field {
  height: auto;
  padding: 1rem 1.2rem;
  resize: vertical;
  min-height: 100px;
}

.input-field::placeholder {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.85;
}

.input-field:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px var(--focus-ring);
  transform: translateY(-1px);
  background: var(--surface);
}

.input-field.error {
  border-color: var(--error);
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.12);
}

/* Error Messages */
.error-message {
  color: var(--error);
  font-size: 0.8rem;
  margin-top: 4px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Button */
.primary-btn {
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: linear-gradient(145deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow-color);
  font-weight: 800;
}

.primary-btn.submit-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  min-height: 60px;
}

.primary-btn.submit-btn strong {
  font-size: 1.25rem;
  display: block;
  margin-bottom: 2px;
}

.primary-btn.submit-btn small {
  font-size: 0.85rem;
  opacity: 0.9;
  font-weight: 600;
}

.primary-btn:hover:not(.disabled) {
  box-shadow: 0 8px 25px var(--shadow-color);
  transform: translateY(-2px);
}

.primary-btn.disabled {
  opacity: 0.8;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.pulse-animation:not(.disabled) { animation: pulse 2s infinite; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.35); }
  70% { box-shadow: 0 0 0 10px rgba(0, 102, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0); }
}

.security-badges {
  display: flex;
  justify-content: space-around;
  margin-top: 1.5rem;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
  font-size: 0.8rem;
  color: var(--text);
  font-weight: 700;
}

/* ========================================
   8) ABOUT SECTION (should flip with palette)
   ======================================== */
.about-section {
  background: var(--surface);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 3rem;
  box-shadow: var(--shadow-sm);
  border-right: 4px solid var(--primary-color);
  max-width: 1200px;
  position: relative;
  overflow: hidden;
  direction: rtl;
  isolation: isolate;
  border: 1px solid var(--border-color);
}

.about-section::before,
.about-section::after {
  position: absolute;
  font-size: 160px;
  line-height: 1;
  font-weight: 900;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  color: var(--primary-color);
}

.about-section::before {
  content: "“";
  top: -25px;
  right: 18px;
}

.about-section::after {
  content: "“";
  bottom: -55px;
  left: 18px;
}

.about-section h2 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 1rem;
  font-family: 'Heebo', sans-serif;
  position: relative;
  z-index: 1;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
  opacity: 0.5;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* ========================================
   9) VIDEO SECTION (YouTube Carousel) - flips with palette
   ======================================== */
.yt3 {
  --gap: 20px;
  --radius: 16px;
  --nav: 48px;
  --dot: rgba(255,255,255,0.35);
  --dot-active: var(--primary-color);
  padding: 60px 0;
  background: var(--surface);
}

.yt3 * { box-sizing: border-box; }

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

.yt3-title {
  font-weight: 900;
  line-height: 1.1;
  font-family: 'Heebo', sans-serif;
  text-align: center;
  margin: 0 0 40px;
  color: var(--text);
}

.yt3-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.yt3-viewport {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  border-radius: var(--radius);
  background: transparent;
  direction: ltr;
  scrollbar-width: none;
}
.yt3-viewport::-webkit-scrollbar { display: none; }

.yt3-track {
  display: flex;
  gap: var(--gap);
  list-style: none;
  padding: 0;
  margin: 0;
}

.yt3-slide {
  flex: 0 0 auto;
  width: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-md);
}

.yt3-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}

/* Lite player button */
.yt3 { --play-w: 68px; --play-h: 48px; --play-radius: 14px; --play-red: #e62117; --play-tri-w: 18px; --play-tri-h: 12px; }

.yt3-lite {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
  border: 0;
  background: #000 center/cover no-repeat;
  line-height: 0;
}

.yt3-lite::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: var(--play-w);
  height: var(--play-h);
  border-radius: var(--play-radius);
  background: var(--play-red);
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  transition: transform .15s ease;
  will-change: transform;
}

.yt3-lite::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% + 2px);
  transform: translate(-50%, -50%);
  width: 0; height: 0;
  border-left: var(--play-tri-w) solid var(--white);
  border-top: var(--play-tri-h) solid transparent;
  border-bottom: var(--play-tri-h) solid transparent;
  pointer-events: none;
}

.yt3-lite:hover::before { transform: scale(1.06); }
.yt3-lite:focus-visible { outline: 3px solid var(--primary-color); outline-offset: 2px; }

.yt3-nav {
  width: var(--nav);
  height: var(--nav);
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--surface-soft);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  user-select: none;
  transition: transform .2s, box-shadow .2s, background .2s, opacity .2s;
}

.yt3-nav:hover { transform: scale(1.06); box-shadow: var(--shadow-sm); }
.yt3-nav:disabled { opacity: .4; cursor: default; }

.yt3-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.yt3-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: var(--dot);
  opacity: .7;
  cursor: pointer;
  transition: transform .2s, background .2s, opacity .2s;
}

.yt3-dots button[aria-current="true"] {
  background: var(--dot-active);
  opacity: 1;
  transform: scale(1.2);
}

@media (max-width: 767px) {
  .yt3-container { padding: 40px 15px; }
  .yt3-title { font-size: 1.6rem; margin-bottom: 24px; }
  .yt3-shell { gap: 12px; }
  .yt3-nav { --nav: 44px; }
}

@media (max-width: 480px) {
  .yt3 { --play-w: 56px; --play-h: 40px; --play-radius: 12px; --play-tri-w: 16px; --play-tri-h: 10px; }
}

/* ========================================
   10) PRICE BADGE ON IMAGE (always readable)
   ======================================== */
.price-badge {
  position: absolute;
  top: 4px;
  left: -69px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 8px 20px var(--shadow-color);
  transform: rotate(-37deg);
  z-index: 10;
  text-align: center;
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  line-height: 1.3;
  width: 240px;
  border: 1px solid rgba(255,255,255,0.12);
}

.new-price {
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 2px;
}

.old-price {
  font-size: 1rem;
  font-weight: 700;
  text-decoration: line-through;
  opacity: 0.85;
  color: rgba(255, 220, 220, 0.95);
}

/* Mobile adjustments */
@media (max-width: 968px) {
  .price-badge {
    top: 16px;
    left: -92px;
    padding: 10px 14px;
    transform: rotate(-36deg);
    width: 279px;
  }
  .new-price { font-size: 1rem; }
  .old-price { font-size: 0.75rem; }
}

/* ========================================
   11) FOOTER (always white text)
   ======================================== */
.footer {
  background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  color: var(--white);
  padding: 20px 0;
  position: relative;
  z-index: 10;
}

.footer a {
  color: var(--white);
  margin: 0 10px;
  text-decoration: none;
  font-size: 1rem;
}

.footer .text-center,
.footer .text-center a { font-size: 14px; }

.footer a:hover { opacity: 0.85; }

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

.footer .social-link li { margin-bottom: 10px; }

/* ========================================
   12) FLOATING CONTACT BUTTONS
   ======================================== */
.float-contact-container {
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 1000;
}

.contact-options {
  position: absolute;
  bottom: 70px;
  right: 0;
  flex-direction: column;
  gap: 10px;
}

.contact-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whatsapp-btn {
  background-color: #25D366;
  font-size: 25px;
  color: var(--white);
  margin-bottom: 5px;
}

.phone-btn {
  background-color: var(--primary-color);
  color: var(--white);
}

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

/* ========================================
   13) RESPONSIVE
   ======================================== */

/* Desktop Only Helper */
.desktop-only { display: block; }
.mobile-only { display: none; }

/* Mobile */
@media (max-width: 968px) {
  .content-wrapper { padding: 50px 1rem 2rem; }

  .hero-form-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
  }

  .hero-side {
    align-items: center;
    text-align: center;
    order: 1;
    gap: 1rem;
    width: 100%;
  }

  .form-side {
    order: 2;
    width: 100%;
  }

  .images-gallery {
    order: 3;
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
  }

  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1.3rem; }
  .main-logo { align-self: center; margin-bottom: 1rem; }
  .form-card { padding: 1.8rem; }

  .benefits-compact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-top: 1.5rem;
    align-items: flex-start;
  }

  .about-section {
    margin-top: 2rem;
    padding: 1.5rem;
  }

  .about-section h2 { font-size: 1.5rem; }
  .about-section p { font-size: 1rem; }

  .footer { text-align: center; }
  .footer li { text-align: center; list-style: none; }

  .desktop-only { display: none; }
  .mobile-only { display: block; }
}

/* Laptop Fix (Prevent Scrolling) */
@media (min-width: 1024px) and (max-height: 850px) {
  .content-wrapper { padding-top: 30px; padding-bottom: 10px; align-items: flex-start; }
  .hero-form-layout { gap: 1.5rem; }
  .hero-side { gap: 0.4rem; }
  .main-logo { height: 42px; margin-bottom: 0.4rem; }
  .trust-badge-top { margin-bottom: 0.4rem; padding: 4px 10px; font-size: 0.8rem; }
  .hero-title { font-size: 1.9rem; margin-bottom: 0.2rem; }
  .hero-subtitle { font-size: 1.2rem; }
  .hero-description { font-size: 0.95rem; margin-bottom: 0.4rem; }
  .images-gallery { margin: 0.4rem 0 0.8rem; max-width: 75%; }
  .large-image-wrapper { border-radius: 12px; }
  .small-images-grid { gap: 0.5rem; }
  .small-image-wrapper { border-radius: 8px; }
  .benefits-compact { gap: 0.4rem; font-size: 0.9rem; }

  .single-testimonial {
    margin-top: 20px !important;
    padding-right: 20px;
    padding-left: 20px;
    font-size: 0.85rem;
    background: var(--surface);
  }

  .form-card { padding: 1.5rem; border-radius: 16px; margin-top: 0; }
  .form-card-title { font-size: 1.3rem; }
  .input-group-vertical { gap: 0.8rem; margin-bottom: 1rem; }
  .input-field { height: 40px; font-size: 0.95rem; }
  .input-field.textarea-field { min-height: 168px; }
  .primary-btn.submit-btn { min-height: 50px; }
  .primary-btn.submit-btn strong { font-size: 1.1rem; }
  .security-badges { margin-top: 0.8rem; padding-top: 8px; }
}
