:root {
  --gold: #e09a9a;
  --gold-light: #E8D5B0;
  --gold-dark: #e09a9a;
  --ink: #1A1410;
  --charcoal: #2D2520;
  --warm-white: #FAF8F4;
  --cream: #F2EDE4;
  --text-muted: #7A6D62;
  --border: #d0c7bc;
  --shadow-sm: 0 2px 12px rgba(26, 20, 16, .08);
  --shadow-md: 0 8px 32px rgba(26, 20, 16, .12);
  --shadow-lg: 0 20px 60px rgba(26, 20, 16, .18);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: Arial, sans-serif;
  --font-body: Arial, sans-serif;
  --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: #ffffff;
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1,
h2,
h3,
h4 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}

p {
  color: var(--text-muted);
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

/* ============================================================
   UTILITIES
============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #E04157;
  text-align: left;


  border-radius: 50px;
  margin-bottom: 14px;
}

.section-header {
  margin-bottom: 48px;
}

.section-header p {
  max-width: 560px;
  margin-top: 12px;
  font-size: 1.05rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: #E04157;
  color: #fff;
  box-shadow: 0 4px 20px rgba(224, 65, 87, .35);
}

.btn-primary:hover {
  background: #E04157;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(224, 65, 87, .45);
}

.btn-outline {
  border: 2px solid #E04157;
  color: #E04157;
}

.btn-outline:hover {
  background: linear-gradient(135deg, #E04157, #ff6b81);
  color: #fff;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===============================
   HEADER SIZE IMPROVEMENT
=============================== */

#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;

}

#header.scrolled {
  background: #ffffff;
}

/* Logo image (bigger) */
.logo-img {
  width: 250px;
  /* 🔥 bigger logo */
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
  display: none;
}

@media (min-width: 600px) {
  .nav-phone {
    display: block;
  }
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #3A2B3A;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #E04157;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    /* hide for now */
  }
}

.header-cta-btn {
  margin-left: 20px;
  padding: 10px 18px;
  font-size: 0.85rem;
  border-radius: 6px;
}

#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

/* Header Quick Links with Border */
/* Base link style */
.nav-links a {
  position: relative;
  text-decoration: none;
  padding-bottom: 4px;
}

/* Hidden underline */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #3A2B3A;
  /* your brand color */
  transition: width 0.3s ease;
}

/* On hover */
.nav-links a:hover::after {
  width: 100%;
}

/* Active link (clicked/current) */
.nav-links a.active::after {
  width: 100%;
}

@media (max-width: 768px) {
  .header-cta-btn {
    display: none;
    /* hide on small screens for now */
  }
}

/* Ensure links behave same on mobile */
@media (max-width: 768px) {
  .nav-links a {
    display: inline-block;
    padding: 10px 0;
  }
}

/* ===============================
   MOBILE HEADER FIX
=============================== */

/* Hamburger */
#menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {

  #menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #ffffff;

    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .header-cta-btn {
    display: none;
  }

  .logo-img {
    width: 180px;
    /* smaller logo */
  }
}

/* ============================================================
   HERO SECTION
============================================================ */
#hero {
  background: url("assets/hero.png");
  background-size: cover;
  /* full screen */
  background-position: center;
  /* center image */
  background-repeat: no-repeat;
  color: #fff;
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}

/* decorative rings */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  /* dark overlay */
  z-index: 0;
}

#hero>* {
  position: relative;
  z-index: 1;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, .10);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: center;
  }
}

.hero-badge {
  display: none;
}

.hero-badge::before {
  content: '★';
  color: var(--gold);
}

#hero-heading {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
}

#hero-heading .line1 {
  display: inline-block;
  font-size: 54px;
  font-weight: 700;
  color: #ffffff;
}


.hero-content h1 span {
  color: gold;
}

.studio-text {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
}

.hero-sub {
  color: rgba(255, 255, 255, .72);
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}

s .hero-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.hero-stat-label {
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .hero-content .btn {
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }
}

/* ── Hero Form Card ── */
.hero-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}

.hero-form-card h3 {
  color: var(--ink);
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.form-subtitle {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ============================================================
   FORMS
============================================================ */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: .03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--ink);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, .15);
}

.form-error {
  font-size: .78rem;
  color: #d94f4f;
  margin-top: 5px;
  display: none;
}

.form-error.show {
  display: block;
}

.form-success {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: .9rem;
  display: none;
  margin-top: 12px;
}

.form-success.show {
  display: block;
}

/* ============================================================
   TRUST SECTION
============================================================ */
.offer-section {
  padding: 20px 40px 30px;
  max-width: 1280px;
  margin: auto;
  background: transparent;

  margin-top: 60px;
  margin-bottom: 60px;
}

.offer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}

.offer-top h2 {
  font-size: 42px;
  line-height: 1.1;
  color: #3A2B3A;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.offer-btn {
  background: #E04157;
  color: #fff;
  text-decoration: none;
  padding: 18px 38px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
}

.offer-btn:hover {
  background: #E04157;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.offer-card {
  background: white;
  border: 1px solid #e8e4e6;
  border-radius: 14px;
  padding: 26px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.offer-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.offer-heading img {
  width: 34px;
  height: 34px;
}

.offer-heading h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #4b3b49;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.offer-card ul {
  padding-left: 24px;
  margin: 0;
  flex: 1;
}

.offer-card li {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.5;
  color: #534853;
  font-family: 'Roboto', sans-serif;
}

@media (max-width: 992px) {

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-top {
    flex-direction: column;
    align-items: flex-start;

    gap: 20px;
  }

  .offer-top h2 {
    font-size: 42px;
  }

  .offer-card {
    min-height: auto;
  }

}

/* ===============================
   STATS SECTION
=============================== */

#stats {
  background: #60a07b;
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

/* STATS TEXT COLOR */
#stats .stat-item p {
  color: #ffffff;
}

.stats-heading {
  text-align: center;
  color: #ffffff;
  /* matches your section */
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.stat-item {
  opacity: 0;
  transform: translateY(40px) scale(0.9);
  transition: all 0.6s ease;
}

.stat-item.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 1rem;
  opacity: 0.9;
}

/* ============================================================
   SERVICES SECTION
============================================================ */
#services {
  padding: 88px 0;
}

#services .service-body p {
  color: #3A2B3A;
}

#services .section-header h2 {
  color: #3A2B3A;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

#services .container {
  position: relative;
}

.services-section {
  position: relative;
}

.services-top-btn {
  position: absolute;
  top: 40px;
  right: 60px;
  z-index: 10;
}

.book-btn {
  display: inline-block;
  background: #E04157;
  color: #fff;
  padding: 16px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: 0.3s ease;
  box-shadow:
    0 8px 20px rgba(224, 65, 87, 0.25);
}

@media (max-width: 768px) {

  .services-top-btn {
    position: static;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
  }
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-img {
  height: 180px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(201, 169, 110, .12), transparent);
}

.service-body {
  padding: 24px 22px 28px;
}

/* Service Title Styling */
#services .service-body h3 {
  font-family: 'Poppins', sans-seriff;
  font-weight: 550;
  display: inline-block;
  text-align: left;

  color: #3A2B3A;
  /* text color */
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 12px;
}

.service-body p {
  font-size: .9rem;
  margin-bottom: 16px;
  font-family: 'Roboto', sans-serif;
}

.service-features {
  list-style: none;
}

.service-features li {
  font-size: .85rem;
  color: #3A2B3A;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Roboto', sans-serif;
}

.service-features li::before {
  content: '✓';
  color: #E04157;
  font-weight: 700;
  font-size: .9rem;
}

.service-img.slider {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.service-img.slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.service-img.slider img.active {
  opacity: 1;
}

/* =========================================================
   HOW IT WORKS
========================================================= */

#how-it-works {
  background: #f5f5f5;
  padding: 70px 0 80px;
  overflow: hidden;
}

.how-container {
  max-width: 1380px;
  margin: auto;
  padding: 0 40px;
  text-align: center;
}

.how-heading {
  font-size: 58px;
  line-height: 1;
  font-weight: 500;
  color: #3b2a3c;
  margin-bottom: 70px;
  font-family: 'Poppins', sans-serif;
}

.how-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

/* dotted line */
.how-steps::before {
  content: "";
  position: absolute;
  top: 62px;
  left: 110px;
  right: 110px;
  border-top: 1px dashed #bdbdbd;
  z-index: 0;
}

.how-step {
  width: 20%;
  position: relative;
  z-index: 2;
}

.how-circle {
  width: 126px;
  height: 126px;
  background: #f7f7f7;
  border: 1px solid #d8d8d8;
  border-radius: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.how-circle img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  opacity: 0.95;
}

.how-step p {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.45;
  color: #2f2331;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
}

.how-step strong {
  font-weight: 700;
}

.how-check {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 26px;
  height: 26px;
  background: #E04157;
  border-radius: 50%;
  color: white;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

.how-btn {
  margin-top: 65px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E04157;
  color: #fff;
  text-decoration: none;
  height: 58px;
  padding: 0 62px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.2px;
  transition: 0.3s ease;
}

.how-btn:hover {
  background: #E04157;
}

/* MOBILE */

@media (max-width: 768px) {

  .how-heading {
    font-size: 42px;
    margin-bottom: 50px;
  }

  .how-steps {
    flex-direction: column;
    gap: 45px;
    align-items: center;
  }

  .how-steps::before {
    display: none;
  }

  .how-step {
    width: 100%;
    max-width: 280px;
  }

  .how-circle {
    width: 112px;
    height: 112px;
  }

  .how-circle img {
    width: 50px;
    height: 50px;
  }

  .how-step p {
    font-size: 17px;
  }

  .how-btn {
    width: 100%;
    max-width: 360px;
    padding: 0 24px;
    font-size: 16px;
  }
}

/* ============================================================
   OUR SERVICE AREA SECTION
============================================================ */
#neighbourhood {
  position: relative;
  padding: 88px 0;
  color: #fff;
  background: url("assets/main_1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

/* 🔥 Dark overlay */
#neighbourhood::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(26, 20, 16, 0.7), rgba(26, 20, 16, 0.7));
  z-index: 0;
}

/* Keep content above overlay */
#neighbourhood .container {
  position: relative;
  z-index: 1;
}

.nb-custom {
  max-width: 720px;
  margin-top: 20px;
}

.nb-custom p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: white;
  margin-bottom: 16px;
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  color: white;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;

  transition: all 0.3s ease;
  cursor: default;
}

.tag i {
  color: #E04157;
  /* blue icon */
  font-size: 13px;
}

.tag:hover {
  background: #9F76A0;
  color: #fff;
  border-color: #9F76A0;
}

.tag:hover i {
  color: #fff;
}

@media (max-width: 768px) {

  .neighbourhood-section {
    background-attachment: scroll;

  }

}

/* ============================================================
   STUDIO LOCATION
============================================================ */
#location {
  padding: 88px 0;
  background: white
}

#location .section-header h2 {
  color: #3A2B3A;
}

#location .info-label {
  color: #3A2B3A;
}

#location .info-value {
  color: #3A2B3A;
}

#location .info-value small {
  color: #6f5b6f;
  /* slightly lighter for hierarchy */
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
  }
}

.info-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.info-item:first-of-type {
  padding-top: 0;
}

/* 🔮 Glassmorphism Info Icons (Studio Location) */
#location .info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.2rem;
  color: #ffffff;
  flex-shrink: 0;

  /* Glass effect */
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.25);

  /* Depth */
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);

  transition: all 0.3s ease;
}

#location .info-item:hover .info-icon {
  transform: translateY(-4px) scale(1.05);

  background: rgba(255, 255, 255, 0.2);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.info-label {
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.info-value small {
  display: block;
  color: #3A2B3A;
  font-size: .82rem;
  font-weight: 400;
  margin-top: 2px;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.map-wrapper iframe {
  width: 100%;
  height: 360px;
  display: block;
  border: none;
}

/* ============================================================
   LEAD FORM / CONTACT SECTION
============================================================ */
#contact {
  position: relative;
  padding: 88px 0;
  color: #fff;

  background: url("https://images.unsplash.com/photo-1618221195710-dd6b41faaea6");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* 🔥 Overlay (same style as hero) */
#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  /* adjust darkness */
  z-index: 0;
}

/* Keep content above overlay */
#contact .container {
  position: relative;
  z-index: 1;
}

/* Left content text color */
#contact .contact-info,
#contact .contact-info h2,
#contact .contact-info p,
#contact .contact-info strong,
#contact .contact-info span {
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info>p {
  margin-bottom: 32px;
}

.contact-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

/* 🔥 Premium Circular Glow Icons */
#contact .perk-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  /* perfect circle */

  background: #E04157;
  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.3rem;
  flex-shrink: 0;

  /* Glow effect */
  box-shadow:
    0 6px 20px rgba(159, 118, 160, 0.5),
    0 0 12px rgba(159, 118, 160, 0.4);

  transition: all 0.3s ease;
}

/* Hover lift + glow boost */
#contact .perk:hover .perk-icon {
  transform: translateY(-4px) scale(1.05);

  box-shadow:
    0 10px 30px rgba(159, 118, 160, 0.7),
    0 0 18px rgba(159, 118, 160, 0.6);
}

.perk-text strong {
  display: block;
  font-size: .92rem;
  color: var(--ink);
  margin-bottom: 3px;
}

.perk-text span {
  font-size: .83rem;
  color: var(--text-muted);
}

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}

.form-card h3 {
  color: var(--ink);
  margin-bottom: 6px;
}

.form-card .form-subtitle {
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 500px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

#lead-form-card {
  scroll-margin-top: 100px;
}

.youtube-section {
  padding: 90px 20px;
  background: #f8f8f8;
}

.youtube-content {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.youtube-content h2 {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
  color: #3A2B3A;
}

.youtube-content p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  font-family: 'Poppins', sans-serif;
}

.youtube-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.12);
}

.youtube-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .youtube-content h2 {
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
  }

  .youtube-content p {
    font-size: 16px;
  }

  .youtube-video {
    border-radius: 16px;
  }
}

/* ===============================
   GOOGLE STYLE REVIEWS
=============================== */
#reviews {
  margin-top: 60px;
  margin-bottom: 60px;
}

#reviews .section-title {
  color: #3A2B3A;
  margin-bottom: 30px;
}

.review-card.google {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: 0.3s;
}

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

/* Top section */
.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

/* Avatar circle */
.avatar {
  width: 40px;
  height: 40px;
  background: #E04157;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Name */
.review-top h4 {
  margin: 0;
  font-size: 1rem;
  color: #202124;
}

/* Location */
.location {
  font-size: 0.8rem;
  color: #777;
}

/* Stars */
.stars {
  color: #fbbc04;
  /* Google gold */
  font-size: 1rem;
  margin: 5px 0 10px;
}

/* Review text */
.review-card p {
  font-size: 0.95rem;
  color: #3A2B3A;
  line-height: 1.5;
}

.reviews-grid {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
}

/* Wrapper hides overflow */
.reviews-wrapper {
  overflow: hidden;
  width: 100%;
}

/* Track moves */
.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.review-card {
  min-width: 300px;
  flex: 0 0 auto;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.faq-section {
  padding: 90px 20px;
  background: #ffffff;
}

.faq-section .container {
  max-width: 900px;
  margin: auto;
}

.faq-title {
  text-align: center;
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 50px;
  font-family: 'Poppins', sans-serif;
  color: #3A2B3A;
}

.faq-item {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid #ececec;
  transition: 0.3s ease;
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.06);
}

.faq-item.active {
  border-color: #E04157;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #3A2B3A;
}

.faq-question::after {
  content: "+";
  font-size: 28px;
  font-weight: 400;
  color: #E04157;
  transition: 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;

  transition:
    max-height 0.4s ease,
    padding 0.3s ease;

  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px;
}

.faq-answer p {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}

.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #4b2b4f 0%, #6d436f 100%);
  padding: 60px 20px;
  text-align: center;

}

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

.cta-section h2 {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.cta-section h2 span {
  color: #ffca2c;
}

.cta-section p {
  font-size: 20px;
  color: #fff;
  margin-bottom: 42px;
  font-family: 'Roboto', sans-serif;
}

.cta-btn {
  display: inline-block;
  background: #E04157;
  color: #fff;
  padding: 12px 34px;
  font-size: 18px;
  border-radius: 40px;
  text-decoration: none;

  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #E04157;
  transform: translateY(-3px);
}

/* Decorative Shapes */

.cta-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 60px;
  z-index: 1;
}

.shape-left {
  width: 180px;
  height: 420px;
  left: -80px;
  bottom: -140px;
  transform: rotate(35deg);
}

.shape-right {
  width: 260px;
  height: 260px;
  right: -70px;
  top: -70px;
  border-radius: 50px;
  transform: rotate(25deg);
}

@media (max-width: 768px) {

  .cta-section {
    padding: 70px 20px;
  }

  .cta-section h2 {
    font-size: 38px;
  }

  .cta-section p {
    font-size: 17px;
  }

  .cta-btn {
    width: auto;
    max-width: 100%;
    padding: 14px 28px;
    font-size: 16px;
  }

}

/* ============================================================
   FOOTER
============================================================ */
#footer {
  background: #3A2B3A;
  color: rgba(255, 255, 255, .85);
  padding: 64px 0 32px;
}

#footer p {
  color: #F2EDE4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-brand .logo-name {
  color: #fff;
  font-size: 1.3rem;
}

.footer-brand .logo-sub {
  color: var(--gold);
}

.footer-brand p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
  margin-top: 14px;
  max-width: 280px;
  line-height: 1.6;
}

.footer-col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li+li {
  margin-top: 10px;
}

.footer-links a {
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
  transition: color var(--transition);
}

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

.footer-contact p {
  font-size: .88rem;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.footer-contact p span:first-child {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .35);
}

.footer-cta .btn-primary {
  padding: 12px 24px;
  font-size: .88rem;
}

/* 📞 Floating Call Button */
.call-float {
  position: fixed;
  right: 20px;
  bottom: 90px;
  /* 👈 sits above WhatsApp */

  width: 55px;
  height: 55px;

  background: #ffffff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;

  transition: transform 0.3s ease;
}

/* Blue icon */
.call-icon-svg {
  width: 26px;
  height: 26px;
  fill: #007bff;
  /* 🔵 blue */
}

/* Hover effect */
.call-float:hover {
  transform: scale(1.1);
}

/* Hide by default (desktop) */
.call-float {
  display: none;
}

/* Show only on mobile screens */
@media (max-width: 768px) {
  .call-float {
    display: flex;
  }
}

/* ============================================================
   FLOATING CTA (Mobile only)
============================================================ */
#floating-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: none;
  pointer-events: none;
}

#floating-cta.visible {
  display: block;
  pointer-events: all;
}

@media (min-width: 900px) {
  #floating-cta {
    display: none !important;
  }
}

#floating-cta .btn {
  box-shadow: 0 8px 30px rgba(201, 169, 110, .5);
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 1rem;
}

@media (max-width: 374px) {
  .hero-stats {
    gap: 20px;
  }

  .form-card {
    padding: 28px 20px;
  }
}

.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: transparent;
  padding: 12px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

.whatsapp-icon img {
  width: 40px;
  height: 40px;
}