/* ==== CSS Custom Properties ==== */
:root {
  /* Luxury Color Palette */
  --clr-bg: #FDFBF7; /* Creamy white */
  --clr-text: #2A2A2A; /* Charcoal */
  --clr-primary: #8B1E28; /* Traditional Bulgarian Deep Red */
  --clr-accent: #C5A059; /* Elegant Gold */
  --clr-white: #FFFFFF;
  --clr-gray: #E0E0E0;
  
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  
  --transition: 0.3s ease;
}

/* ==== Reset & Base Styles ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background-color: var(--clr-bg);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--clr-primary);
  font-weight: 400; /* Editorial style */
}

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

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

/* ==== Layout Utility ==== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 8rem 0; /* Increased white space */
}

/* ==== Reveal Animation ==== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.text-center {
  text-align: center;
}

.subtitle {
  color: #666;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

/* ==== Buttons ==== */
.cta-button {
  display: inline-block;
  background-color: var(--clr-primary);
  color: var(--clr-white);
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid var(--clr-primary);
}

.cta-button:hover {
  background-color: var(--clr-bg);
  color: var(--clr-primary);
}

.secondary-cta {
  background-color: transparent;
  color: var(--clr-primary);
  border: 1px solid var(--clr-primary);
}

.secondary-cta:hover {
  background-color: var(--clr-primary);
  color: var(--clr-white);
}

.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* ==== Navigation (Glassmorphism) ==== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(253, 251, 247, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 40px;
  width: auto;
  border-radius: 4px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--clr-primary);
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--clr-accent);
}

/* ==== Navbar Dropdown ==== */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(253, 251, 247, 0.95);
  min-width: 160px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 0.5rem 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.dropdown-content a {
  color: var(--clr-text);
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  text-align: center;
  font-weight: 400;
  transition: background-color 0.3s, color 0.3s;
}

.dropdown-content a:hover {
  background-color: #f9f9f9;
  color: var(--clr-primary);
}

.dropdown-icon {
  transition: transform 0.3s ease;
}

@media (min-width: 769px) {
  .dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
  }
  
  .dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -10px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.burger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--clr-primary);
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

.burger-menu.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.burger-menu.active span:nth-child(2) {
  opacity: 0;
}
.burger-menu.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    flex-direction: column;
    background-color: var(--clr-bg);
    padding-top: 80px;
    padding-left: 20px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background: transparent;
    transform: none;
    display: none;
    padding-left: 15px;
  }

  .dropdown.active .dropdown-content {
    display: block;
    animation: none;
  }

  .dropdown.active .dropdown-icon {
    transform: rotate(180deg);
  }
}

/* ==== Hero Section (Parallax) ==== */
.hero-wrapper {
  position: relative;
  height: 100vh;
  overflow: clip; /* required for parallax */
  view-timeline: --hero-wrapper;
}

/* Parallax Animation */
@keyframes heroParallax {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(200px) scale(1.05); /* Added slight scale for cinematic feel */
  }
}

.hero-bg {
  position: absolute;
  top: -10%;
  left: 0;
  right: 0;
  bottom: -20%; /* give room to scroll */
  z-index: 1;
}

@supports ((animation-timeline: view()) and (animation-range: entry)) {
  .hero-bg {
    animation: heroParallax linear both;
    animation-timeline: --hero-wrapper;
    animation-range: entry 0% exit 100%;
  }
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(42, 42, 42, 0.5); /* Dark overlay */
  color: var(--clr-white);
  padding: 0 1rem;
}

.hero-content h1 {
  color: var(--clr-white);
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
}

.hero-cta {
  font-size: 1.1rem;
  padding: 1rem 2rem;
  background-color: var(--clr-accent);
  border-color: var(--clr-accent);
  color: var(--clr-text);
}

.hero-cta:hover {
  background-color: var(--clr-white);
  border-color: var(--clr-white);
}

/* ==== About Section ==== */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid var(--clr-accent);
  z-index: -1;
}

.about-img {
  border-radius: 4px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  width: 100%;
  height: auto;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.signature {
  font-family: 'Great Vibes', cursive;
  font-size: 2.5rem;
  color: var(--clr-primary);
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==== Gallery Section (Scroll Snap + Scroll State) ==== */
.gallery-section {
  background-color: #F8F4EC;
}

.carousel-wrapper {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2rem;
  padding: 4rem calc(50vw - 150px); /* Center start/end items */
  list-style: none;
  scrollbar-width: none; /* Firefox */
}

.carousel::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.carousel-item {
  scroll-snap-align: center;
  container-type: scroll-state;
  flex: 0 0 auto;
}

.card {
  width: auto;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: scale 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s;
  background-color: var(--clr-white);
  cursor: pointer;
}

.card img {
  width: auto;
  height: 100%;
  display: block;
}

@media (prefers-reduced-motion: no-preference) {
  @container scroll-state(snapped: x) {
    .card {
      scale: 1.15;
      box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .card {
    transition: none !important;
    scale: 1 !important;
  }
}

@media (max-width: 768px) {
  .carousel {
    padding: 4rem 10vw;
  }
  .card {
    width: 80vw;
    height: 60vh;
    max-height: 400px;
  }
  .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Fallback class for JS observer */
.card.is-snapped {
  scale: 1.15;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* ==== Services Section ==== */
.services-section {
  background-color: var(--clr-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.service-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 2rem;
  color: var(--clr-white);
  text-align: center;
}

.service-overlay h3 {
  color: var(--clr-white);
  margin: 0;
  font-size: 1.8rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

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

/* ==== Testimonials Section (Videos) ==== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.video-card {
  background: var(--clr-white);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.video-placeholder::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.1);
  transition: background 0.3s;
}

.video-placeholder:hover::after {
  background: rgba(0,0,0,0.2);
}

.play-btn {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--clr-primary);
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.play-icon {
  margin-left: 5px; /* Visual center adjustment for play icon */
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  animation: pulse 2s infinite cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.video-content {
  padding: 2rem;
  text-align: center;
  background: var(--clr-white);
  flex-grow: 1;
}

.video-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.video-content p {
  font-style: italic;
  color: #666;
  font-size: 1.1rem;
}

/* ==== Footer ==== */
footer {
  background-color: var(--clr-text);
  color: var(--clr-white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img-small {
  height: 50px;
  border-radius: 4px;
}

.footer-logo h2 {
  color: var(--clr-accent);
  margin: 0;
}

.footer-contact p {
  margin-bottom: 1rem;
}

.footer-cta {
  background-color: var(--clr-accent);
  border-color: var(--clr-accent);
  color: var(--clr-text);
}

.footer-cta:hover {
  background-color: transparent;
  color: var(--clr-accent);
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

/* ==== Lightbox Modal ==== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: var(--clr-accent);
}

.lightbox-prev, .lightbox-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 4px;
  transition: background 0.3s;
}

.lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(0,0,0,0.8);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* ==== FAQ Section (Service Pages) ==== */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  margin-bottom: 1rem;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem 0;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--clr-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s;
}
.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

/* ==== Masonry Gallery (Service Pages) ==== */
.masonry-grid {
  column-count: 3;
  column-gap: 1.5rem;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.masonry-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 900px) {
  .masonry-grid { column-count: 2; }
}
@media (max-width: 600px) {
  .masonry-grid { column-count: 1; }
}

/* ==== Service Hero ==== */
.service-hero {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 70px; /* Offset for navbar */
}
.service-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.service-hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 2;
}
.service-hero-content {
  position: relative;
  z-index: 3;
  color: var(--clr-white);
  padding: 0 2rem;
}
.service-hero-content h1 {
  color: var(--clr-white);
  font-size: 3.5rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
  margin-bottom: 1rem;
}

/* Back Link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem; /* Push away from navbar */
  margin-bottom: 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s, transform 0.3s;
  padding: 0.5rem 0; /* Larger tap target for mobile */
}

.back-link:hover {
  color: var(--clr-accent);
  transform: translateX(-5px); /* Subtle luxury motion */
}

/* ==== Inquiry Modal ==== */
.inquiry-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.inquiry-modal.active {
  display: flex;
  animation: modalFadeIn 0.3s ease;
}

.inquiry-modal.active .inquiry-modal-content {
  animation: modalSlideUp 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

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

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

.inquiry-modal-content {
  background-color: var(--clr-bg);
  padding: 3rem;
  border-radius: 8px;
  width: 100%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(197, 160, 89, 0.3); /* Accent border */
}

.inquiry-close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 2rem;
  color: var(--clr-text);
  cursor: pointer;
  transition: color 0.3s;
}

.inquiry-close:hover {
  color: var(--clr-primary);
}

.inquiry-title {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.inquiry-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clr-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem;
  border: 1px solid var(--clr-gray);
  border-radius: 4px;
  background: var(--clr-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.2);
}

.investment-snippet {
  background: rgba(197, 160, 89, 0.1);
  padding: 1rem;
  border-left: 3px solid var(--clr-accent);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--clr-text);
  margin-top: 0.5rem;
}

.submit-inquiry {
  width: 100%;
  margin-top: 1rem;
  font-size: 1.1rem;
  padding: 1rem;
}

.inquiry-success {
  text-align: center;
  padding: 3rem 0;
}

.inquiry-success h3 {
  font-size: 2rem;
  color: var(--clr-primary);
  margin-bottom: 1rem;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .inquiry-modal-content {
    padding: 2rem 1.5rem;
  }
}

/* ==== Lead Magnet Inline Banner ==== */
.lead-magnet-banner {
  background-color: #F8F4EC;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  padding: 4rem 2rem;
  margin: 4rem 0;
  text-align: center;
}

.lead-magnet-banner.inline-bottom {
  border-bottom: none;
  margin-bottom: 0;
}

.lead-magnet-banner .container {
  max-width: 800px;
  margin: 0 auto;
}

.lead-magnet-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--clr-primary);
  margin-bottom: 1rem;
}

.lead-magnet-desc {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.lead-magnet-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.lead-magnet-input {
  padding: 12px 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  width: 100%;
  max-width: 300px;
}

.lead-magnet-input:focus {
  outline: none;
  border-color: var(--clr-accent);
}
