/* ============================================================
   WEB MANIACS — LANDING PAGE STYLES
   Clean, semantic, pixel-perfect.
   ============================================================ */

/* ---- Variables ---- */
:root {
  --purple: #7a46b8;
  --purple-dark: #150f4d;
  --purple-hover: #6434a3;
  --purple-light: #bbb4f8;
  --text-dark: #100c34;
  --text-body: #2c2855;
  --text-muted: #6c757d;
  --border: rgba(0, 0, 0, 0.08);
  --bg-input: #f8f7fc;
  --font-sans: "Inter", system-ui, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}

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

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

address {
  font-style: normal;
}

/* ---- Utilities ---- */
.font-serif {
  font-family: var(--font-serif);
}

/* ---- Button ---- */
.btn-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--purple);
  color: #fff !important;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}

.btn-brand:hover {
  background: var(--purple-hover);
  box-shadow: 0 4px 16px rgba(122, 70, 184, 0.35);
}

/* ---- Badge Pill ---- */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 2.6px;
  color: #242239;
}

.badge-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
}

.badge-light {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.badge-light::before {
  background: #fff;
}

/* ---- Section Heading ---- */
.section-heading {
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: -1.5px;
  line-height: 1.15;
  color: var(--text-dark);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 1030;
}

.nav-link {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.03em;
  color: #313131 !important;
  padding: 0.4rem 0.6rem;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--purple) !important;
}



/* ============================================================
   NAVIGATION
   ============================================================ */
.site-navbar {
  background: #fff;
  padding: 15px 0;
  border-bottom: 1px solid rgba(122, 70, 184, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}



.site-navbar .nav-link {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #343052 !important;
  padding: 0 15px !important;
  transition: color 0.3s;
}

.site-navbar .nav-link:hover {
  color: var(--purple) !important;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #343052;
  font-weight: 800;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  margin-left: 20px;
}

.nav-phone svg {
  margin-right: 2px;
  color: rgba(122, 70, 184, 1);
}

.nav-phone a {
  color: inherit;
  text-decoration: none;
}

/* Ensure hero doesn't jump */
.hero {
  padding-top: 100px;
}

@media (max-width: 991px) {
  .nav-divider {
    display: none;
  }
  .nav-phone {
    margin: 15px 0 10px;
  }
}

/* ============================================================
   HERO / BANNER
   ============================================================ */
.hero {
  /* Soft pink-to-blue gradient background */
  background:
    radial-gradient(at top left, #fdfbff, transparent),
    radial-gradient(at top right, #f4f1ff, transparent),
    linear-gradient(180deg, #ffffff 0%, #f9f9ff 100%);
  position: relative;
  /* overflow: hidden; */ /* Prevent layout shifts during animations */
  /* height: 800px; */
  padding: 75px;
  display: flex;
  align-items: center;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.text-purple {
  color: var(--purple) !important;
}

.hero-title {
  font-size: 58px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text-dark);
  margin-bottom: 24px;
  text-transform: capitalize;
}

.hero-title-sans {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: var(--text-dark);
}

.hero-title-serif {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-style: italic;
  color: var(--text-dark);
}

/* CTA Button */
.hero-cta {
  padding: 14px 48px;
  font-size: 17px;
  border-radius: 10px;
  margin-bottom: 28px;
}

/* Trust Row */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.hero-trust-text {
  font-weight: 500;
  font-size: 15px;
  color: #313131;
}

.hero-stars {
  color: #ffc107;
  font-size: 16px;
  letter-spacing: 2px;
}

/* ---- Hero Figure (Absolute Man) ---- */
.hero-figure {
  position: absolute;
  bottom: 50px;
  /* top: 8px; */
  left: 58%;
  transform: translateX(-56%) !important;
  width: 554px;
  height: 576px;
  /* z-index: 1; */
  pointer-events: none;
}

.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}

/* Hero Form Compact */
.hero-form {}

/* ---- Quote Form Card ---- */
.quote-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 440px;
}

.quote-card-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--purple-dark);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: -0.8px;
}

.quote-field {
  margin-bottom: 20px;
}

.quote-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #343439;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  line-height: 1;
	  display: none !important;

}

.quote-input {
  width: 100%;
  padding: 10px 14px 10px 16px;
  background: var(--bg-input);
  border: 1px solid #ededf2;
  border-left: 3.5px solid var(--purple);
  border-radius: 6px;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.quote-input:focus {
  outline: none;
  background: #fff;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(122, 70, 184, 0.12);
}

.quote-submit {
  width: 100%;
  padding: 12px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  margin-top: 6px;
}

/* ============================================================
   SERVICES (Dark Section)
   ============================================================ */
.services-dark {
  background: var(--purple-dark);
  margin-top: -61px;
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

/* Decorative background eclipses */
.our-services-left,
.our-services-right {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
}

.our-services-left {
  left: 0;
}

.our-services-right {
  right: 0;
}

.our-services-left img,
.our-services-right img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.card-service {
  background: linear-gradient(52.33deg, #FFFFFF 31.77%, rgba(122, 70, 184, 0.1) 129.65%);
  border-radius: 24px;
  border: none;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
}

.card-service:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Graphic Area — top of card, image right-aligned */
.card-service-graphic {
  height: 260px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  overflow: visible;
}

.card-service-graphic.card-1 img {
  width: 316px;
  height: 387px;
  object-fit: cover;
  object-position: top;
  transform: translateY(-31px);
}

.card-service-graphic.card-2 img {
  width: 330.67px;
  height: 414.23px;
  object-fit: cover;
  object-position: top right;
  transform: translate(81px, -75px);
}

/* Text Area — bottom of card */
.card-service-content {
  padding: 24px 32px 32px;
}

.card-service-content h3 {
  font-weight: 800;
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.card-service-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
}

.read-more {
  font-weight: 700;
  font-size: 20px;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.read-more:hover {
  color: var(--purple-light);
  gap: 12px;
  transform: translateX(4px);
}

.read-more img {
  transition: transform 0.3s ease;
}

.read-more:hover img {
  transform: scale(1.2);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-visual {
  position: relative;
  /* Removal of fixed height since img-fluid is being used */
}

.about-visual img {
  width: 83%;
  /* max-width: 500px; */
  display: block;
  margin: 0 auto;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-bg {
  background: linear-gradient(180deg,
      rgba(244, 241, 255, 0) 0%,
      rgba(244, 241, 255, 1) 60%,
      rgba(244, 241, 255, 0) 100%);
}

.card-price {
  border-radius: 20px;
  border: 1px solid #efefef;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.card-price:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(122, 70, 184, 0.15);
}

.card-price.featured {
  border: 2px solid var(--purple);
}

.card-price-badge {
  background: var(--purple);
  padding: 10px 0;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2.5px;
  color: #fff;
}

.card-price-body {
  padding: 24px;
  text-align: center;
}

.card-price-cat {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: #242239;
  margin-bottom: 4px;
}

.card-price-amount {
  font-weight: 800;
  font-size: 52px;
  color: var(--purple-dark);
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 4px;
}

.card-price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.card-price-list li {
  font-size: 16px;
  font-weight: 500;
  color: #343439;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-price-list li:last-child {
  border-bottom: none;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-bg {
  background: linear-gradient(180deg,
      rgba(207, 223, 255, 0.5) 0%,
      rgba(241, 204, 237, 0.3) 60%,
      rgba(240, 239, 255, 0.06) 100%);
}

.card-review {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #efefef;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s;
}

.card-review:hover {
  transform: translateY(-4px);
}

.card-review-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
}

.card-review-stars {
  background: #fff;
  padding: 12px 28px 10px;
  border-radius: 40px 40px 0 0;
  margin-top: -30px;
  position: relative;
  z-index: 2;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.02);
}

.card-review-stars img {
  display: block;
}

.card-review-text {
  font-size: 15px;
  color: #343052;
  line-height: 1.6;
  font-style: normal;
  padding: 0;
  margin: 12px 0 0;
  flex: 1;
}

.card-review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-style: normal;
}

.card-review-author cite {
  font-weight: 500;
  font-size: 15px;
  color: #3f3a3a;
  font-style: normal;
}

.dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-block;
}

.dot-purple {
  background: var(--purple);
}

.dot-teal {
  background: #5294a4;
}

.dot-orange {
  background: #f4511e;
}

.dot-red {
  background: #fe2d23;
}

/* Carousel Dots */
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9d9d9;
  cursor: pointer;
  opacity: 1 !important;
  /* Override swiper default opacity */
  transition: all 0.3s;
}

.carousel-dot.active,
.carousel-dot.swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
  background: var(--purple);
  box-shadow: 0 0 0 5px rgba(122, 70, 184, 0.2);
}

.swiper-pagination {
  position: static !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}

.swiper-slide {
  height: auto;
  /* Allow items to define height but swiper-wrapper will stretch them */
  display: flex;
}

.swiper-slide .card-review {
  width: 100%;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  background: var(--purple-dark);
  border-radius: 40px 40px 0 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--purple-dark);
  color: #fff;
  border-top: 2px solid rgba(122, 70, 184, 0.5);
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}


/* Main grid */
.footer-main {
  padding-top: 50px;
}

.footer-left {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding-right: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  height: 120px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}

.footer-right {
  padding-left: 40px;
}

/* CTA Row (top of right column) */
.footer-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 30px;
}

.footer-cta-title {
  font-size: 54px;
  color: #fff;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.footer-cta-title em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.footer-cta-title span {
  font-weight: 400;
}

.footer-cta-title strong {
  font-weight: 700;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(187, 180, 248, 0.6);
  background: transparent;
  transition: all 0.3s;
  flex-shrink: 0;
  transform: rotate(-45deg);
  position: relative;
  box-shadow: 0 0 0 6px rgba(122, 70, 184, 0.15), 0 0 0 12px rgba(122, 70, 184, 0.08);
}

.footer-cta-btn::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  right: -18px;
  bottom: -18px;
  border-radius: 50%;
  border: 1px solid rgba(187, 180, 248, 0.2);
}

.footer-cta-btn:hover {
  background: var(--purple);
  border-color: var(--purple);
  transform: rotate(-45deg) scale(1.1);
}

.footer-cta-btn img {
  filter: brightness(0) invert(1);
}

/* Footer Divider */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0;
}

/* Bottom row (links + contact) */
.footer-bottom-row {
  padding-bottom: 30px;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social-icon:hover {
  color: #fff;
  background: var(--purple);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(122, 70, 184, 0.3);
}

.footer-social-icon svg {
  transition: transform 0.3s ease;
}

.footer-social-icon:hover svg {
  transform: rotate(360deg) scale(1.1);
}

/* Footer Titles */
.footer-title {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 20px;
}

/* Footer Links with » marker */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 2.2;
  cursor: pointer;
  transition: color 0.2s;
}

.footer-links li::before {
  content: "»";
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links li:hover {
  color: #fff;
}

/* Footer Contact */
.footer-contact p {
  font-size: 14px;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

/* Copyright */
.footer-copyright {
  text-align: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  padding: 24px 0;
  margin: 0;
}

.footer-copyright a {
  color: #bbb4f8;
  text-decoration: underline;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- TABLET (≤991px) ---- */
@media (max-width: 991px) {

  /* Hero */
  .hero {
    height: auto;
    min-height: auto;
    padding: 60px 0 40px;
    overflow: hidden;
  }

  .hero-title {
    font-size: 40px;
    letter-spacing: -1px;
  }

  .hero-figure {
    display: none;
  }

  .hero .col-lg-5 {
    justify-content: center !important;
    margin-top: 30px;
  }

  .quote-card {
    max-width: 100%;
  }

  /* Services */
  .services-dark {
    padding: 60px 0;
  }

  .our-services-left,
  .our-services-right {
    opacity: 0.4;
  }

  .card-service-graphic {
    height: 200px;
  }

  .card-service-graphic.card-1 img {
    width: 240px;
    height: 300px;
    transform: translateY(-20px);
  }

  .card-service-graphic.card-2 img {
    width: 260px;
    height: 330px;
    transform: translate(40px, -40px);
  }

  /* About */
  .about-visual img {
    width: 100%;
    margin-bottom: 20px;
  }

  /* Pricing */
  .card-price-amount {
    font-size: 42px;
  }

  /* Footer */
  .footer-cta-title {
    font-size: 32px;
  }

  .footer-left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-right: 15px;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .footer-right {
    padding-left: 15px;
  }

  .footer-links-col {
    border-right: none !important;
  }

  /* Navbar */
  .nav-phone {
    margin-left: 0;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }
}

/* ---- MOBILE LANDSCAPE / SMALL TABLET (≤767px) ---- */
@media (max-width: 767px) {

  /* Hero */
  .hero {
    padding: 40px 0 30px;
    text-align: center;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-cta {
    padding: 12px 36px;
    font-size: 16px;
  }

  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero .col-lg-5 {
    margin-top: 25px;
  }

  .quote-card {
    margin: 0 auto;
  }

  /* Services */
  .services-dark {
    padding: 50px 0;
    margin-top: 0px;
  }

  .our-services-left,
  .our-services-right {
    display: none;
  }

  .card-service-graphic {
    height: 180px;
  }

  .card-service-content {
    padding: 20px 24px 24px;
  }

  .card-service-content h3 {
    font-size: 22px;
  }

  /* About */
  #about .row {
    flex-direction: column-reverse;
  }

  #about .col-lg-5 {
    text-align: center;
  }

  .about-visual img {
    width: 85%;
  }

  /* Pricing */
  .pricing-bg .row {
    flex-direction: column;
    align-items: center !important;
  }

  .pricing-bg .col-lg-3 {
    width: 100%;
    max-width: 400px;
  }

  .card-price-amount {
    font-size: 40px;
  }

  /* Testimonials */
  .card-review-photo {
    height: 160px;
  }

  /* Footer */
  .site-footer {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }

  .footer-cta-row {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-cta-title {
    font-size: 28px;
  }

  .footer-bottom-row .row {
    flex-direction: column;
  }

  .footer-bottom-row .col-md-7,
  .footer-bottom-row .col-md-5 {
    width: 100%;
    padding-bottom: 20px;
  }
}

/* ---- MOBILE PORTRAIT (≤575px) ---- */
@media (max-width: 575px) {

  /* Hero */
  .hero-title {
    font-size: 30px;
    letter-spacing: -0.5px;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-cta {
    padding: 12px 32px;
    font-size: 15px;
    width: 100%;
    text-align: center;
  }

  .hero-trust {
    font-size: 13px;
    gap: 4px;
  }

  .hero-trust-text {
    font-size: 13px;
  }

  /* Section Headings */
  .section-heading {
    font-size: 26px;
  }

  .badge-pill {
    font-size: 11px;
    padding: 6px 16px;
  }

  /* Services */
  .services-dark {
    border-radius: 20px 20px 0 0;
    padding: 40px 0;
  }

  .card-service-graphic {
    height: 160px;
  }

  .card-service-graphic.card-1 img {
    width: 200px;
    height: 250px;
    transform: translateY(-15px);
  }

  .card-service-graphic.card-2 img {
    width: 220px;
    height: 280px;
    transform: translate(20px, -30px);
  }

  .card-service-content {
    padding: 16px 20px 20px;
  }

  .card-service-content h3 {
    font-size: 20px;
  }

  .card-service-content p {
    font-size: 14px;
  }

  /* Quote Form */
  .quote-card {
    padding: 18px 16px;
  }

  .quote-card-title {
    font-size: 22px;
  }

  .quote-input {
    font-size: 13px;
    padding: 9px 12px 9px 14px;
  }

  /* Pricing */
  .card-price-amount {
    font-size: 36px;
  }

  .card-price-list li {
    font-size: 14px;
    padding: 10px 0;
  }

  /* Testimonials */
  .card-review {
    padding: 16px;
  }

  .card-review-photo {
    height: 140px;
  }

  .card-review-text {
    font-size: 14px;
  }

  .card-review-stars {
    padding: 10px 22px 8px;
  }

  /* Footer */
  .site-footer {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  .footer-logo {
    height: 80px;
  }

  .footer-cta-title {
    font-size: 24px;
  }

  .footer-cta-btn {
    width: 44px;
    height: 44px;
  }

  .footer-desc {
    font-size: 12px;
  }

  .footer-copyright {
    font-size: 13px;
    padding: 16px 0;
  }

  /* Navbar */
  .site-navbar {
    padding: 10px 0;
  }

  .site-navbar .navbar-brand img {
    width: 90px;
    height: auto;
  }

  .site-navbar .nav-link {
    font-size: 14px;
    padding: 8px 0 !important;
  }

  .nav-phone {
    font-size: 14px;
  }

  .nav-phone svg {
    width: 15px;
    height: 15px;
  }
}

/* ============================================================
   FIGMA-SAFE SCALING FOR 1400px DESKTOP DESIGN
   ============================================================ */

/* 1) Base: on desktop, let .container match the 1400px Figma width */
@media (min-width: 992px) {
  .site-navbar .container,
  .hero .container,
  .services-dark .container,
  #about .container,
  .pricing-bg .container,
  .testimonials-bg .container,
  .site-footer .container {
    max-width: 1400px !important;
    width: 100% !important;
  }
}

/* 2) Scale ALL sections when viewport < 1400px */
@media (min-width: 992px) and (max-width: 1400px) {
  .site-navbar,
  .hero,
  .services-dark,
  #about,
  .pricing-bg,
  .testimonials-bg,
  .site-footer {
    zoom: 0.88;
    transform-origin: top center;
  }
}

/* 3) Extra scaling for ~1366px / 125% zoom desktop */
@media (min-width: 992px) and (max-width: 1300px) {
  .site-navbar,
  .hero,
  .services-dark,
  #about,
  .pricing-bg,
  .testimonials-bg,
  .site-footer {
    zoom: 0.82;
  }
}


/* ============================================================
   CONTACT FORM 7 COMPATIBILITY
   ============================================================ */
.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

/* Remove CF7 default padding/margins that cause excessive gapping */
.wpcf7-form p {
    margin: 0 !important;
    padding: 0 !important;
}

.wpcf7-form br {
    display: none !important;
}

.wpcf7-form .quote-field {
    position: relative;
    margin-bottom: 20px;
}

.wpcf7-not-valid-tip {
    font-size: 11px;
    color: #ff4d4d;
    margin-top: 4px;
    font-weight: 500;
}

div.wpcf7-response-output {
    margin: 15px 0 0 !important;
    padding: 10px !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    border: 1px solid transparent !important;
}

.wpcf7-mail-sent-ok {
    background-color: rgba(122, 70, 184, 0.1) !important;
    border-color: rgba(122, 70, 184, 0.3) !important;
    color: var(--purple) !important;
}

.wpcf7-validation-errors {
    background-color: rgba(255, 77, 77, 0.1) !important;
    border-color: rgba(255, 77, 77, 0.3) !important;
    color: #ff4d4d !important;
}

/* ============================================================
   WPFORMS COMPATIBILITY
   ============================================================ */
.wpforms-container {
    margin: 0 !important;
    padding: 0 !important;
}

.wpforms-form .wpforms-field {
    padding: 0 !important;
    margin-bottom: 20px !important;
}

.wpforms-form .wpforms-field-label {
    display: none !important; /* Hide labels as per design */
}

.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="tel"],
.wpforms-form input[type="url"],
.wpforms-form input[type="password"],
.wpforms-form input[type="number"],
.wpforms-form select,
.wpforms-form textarea {
    width: 100% !important;
    padding: 10px 14px 10px 16px !important;
    background: var(--bg-input) !important;
    border: 1px solid #ededf2 !important;
    border-left: 3.5px solid var(--purple) !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-family: var(--font-sans) !important;
    color: var(--text-dark) !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
}

.wpforms-form input:focus,
.wpforms-form select:focus,
.wpforms-form textarea:focus {
    outline: none !important;
    border-color: var(--purple) !important;
    box-shadow: 0 0 0 3px rgba(122, 70, 184, 0.1) !important;
}

/* Fix for Smart Phone Field (Flag overlapping placeholder) */
.wpforms-form .wpforms-smart-phone-field input[type="tel"],
.wpforms-form .wpforms-field-phone input {
    padding-left: 50px !important;
}

/* Dropdown styling refinement */
.wpforms-form select {
    appearance: auto !important;
    cursor: pointer;
}

.wpforms-submit-container {
    padding: 0 !important;
}

.wpforms-submit {
    background-color: var(--purple) !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 24px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: background-color 0.3s, transform 0.2s !important;
    width: 100% !important; /* Full width like our design */
}

.wpforms-submit:hover {
    background-color: #6a3ca3 !important;
    transform: translateY(-2px) !important;
}

/* ============================================================
   VIDEO TESTIMONIALS & PLAY BUTTON
   ============================================================ */
.video-thumbnail {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

/* Subtle dark overlay that deepens on hover */
.video-thumbnail::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  transition: background 0.3s;
}

.video-thumbnail:hover::after {
  background: rgba(0, 0, 0, 0.25);
}

.card-review-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

/* Zoom effect on thumbnail hover */
.video-thumbnail:hover .card-review-photo {
  transform: scale(1.05);
}

/* The Beautiful Purple Play Button */
.play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #7a46b8 0%, #6a36a8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 4px 15px rgba(122, 70, 184, 0.4);
  transition: transform 0.3s, background 0.3s;
}

.play-btn-overlay svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  margin-left: 3px; /* Optically centers the play triangle */
}

/* Button scaling effect */
.video-thumbnail:hover .play-btn-overlay {
  transform: translate(-50%, -50%) scale(1.15);
  background: linear-gradient(135deg, #8a56c8 0%, #7a46b8 100%);
}

/* ============================================================
   AUTHOR DOTS (Initials Centering)
   ============================================================ */
.dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  line-height: 1;
}

.dot-purple { background: var(--purple); }
.dot-teal   { background: #5294a4; }
.dot-orange { background: #f4511e; }
.dot-red    { background: #fe2d23; }



/* ==================== PAYPAL BUTTON INTEGRATION ==================== */
[id^="paypal-container-"] {
  max-width: 150px; /* Keep it compact next to the link */
}

/* Hide the redundant Title and Price that PayPal injects */
[id^="paypal-container-"] .item-header {
  display: none !important;
}

/* Fix the large margins PayPal adds by default */
[id^="paypal-container-"] > div {
  margin: 0 !important;
}

/* Adjust the checkout button to match site button height */
[id^="paypal-container-"] button {
  height: 42px !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}