/* =====================================================================
   SADAF BRIDAL HOMEPAGE
   Standalone stylesheet. The homepage does not load Bootstrap or the
   old style.css, so everything it needs is defined here.
   Palette exactly as supplied by the client. Fonts match the rest of
   the site: Gambarino for headings, Inter for body copy.
   ===================================================================== */

:root {
  /* Client supplied brand palette */
  --brand-mocha: #523d2e;
  --brand-mocha-2: #5a4333;
  --brand-champagne: #d7b487;
  --brand-highlight: #f4e4c9;
  --brand-warm-gold: #c89b67;
  --brand-antique: #8f6643;

  /* Supporting neutrals, tints of the champagne highlight */
  --brand-white: #ffffff;
  --brand-ivory: #fcf8f2;
  --brand-cream: #fbf4e9;
  --brand-line: #ede2d2;
  --brand-ink: #3e2e23;
  --brand-body: #5f4c3e;
  --brand-muted: #8a7461;
  --brand-gold-line: rgba(215, 180, 135, 0.4);

  --font-display: "Gambarino", "Gambarino Placeholder", Georgia,
    "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;

  --radius: 18px;
  --shadow: 0 14px 40px rgba(82, 61, 46, 0.1);
  --wrap: 1240px;
}

@font-face {
  font-family: "Gambarino";
  src: url("../fonts/Gambarino-Regular.woff2") format("woff2"),
    url("../fonts/Gambarino-Regular.woff") format("woff"),
    url("../fonts/Gambarino-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--brand-body);
  background: var(--brand-ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.18;
  color: var(--brand-ink);
}

a {
  color: var(--brand-antique);
  text-decoration: none;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: clamp(56px, 8vw, 104px) 0;
}

/* Small gold label above each section heading */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-antique);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--brand-warm-gold);
}

/* Light gold label used on dark mocha bands */
.on-dark .eyebrow {
  color: var(--brand-champagne);
}

.section-title {
  font-size: clamp(30px, 4vw, 46px);
  max-width: 640px;
}

.section-head {
  margin-bottom: clamp(30px, 5vw, 56px);
}

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

.section-head.center .section-title {
  margin: 0 auto;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head p.lede {
  max-width: 620px;
  margin-top: 14px;
}

.section-head.center p.lede {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Champagne is pale, so text on it is always mocha, never white */
.btn-gold {
  background: var(--brand-champagne);
  border-color: var(--brand-champagne);
  color: var(--brand-mocha);
}

.btn-gold:hover {
  background: var(--brand-mocha);
  border-color: var(--brand-mocha);
  color: var(--brand-highlight);
}

.btn-line {
  background: transparent;
  border-color: var(--brand-warm-gold);
  color: var(--brand-antique);
}

.btn-line:hover {
  background: var(--brand-champagne);
  border-color: var(--brand-champagne);
  color: var(--brand-mocha);
}

/* On mocha bands the outline button uses the light gold */
.on-dark .btn-line {
  border-color: var(--brand-champagne);
  color: var(--brand-champagne);
}

.on-dark .btn-line:hover {
  background: var(--brand-champagne);
  color: var(--brand-mocha);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--brand-white);
  border-bottom: 1px solid var(--brand-line);
}

.nav-bar {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-logo img {
  height: 64px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin-left: 8px;
}

.nav-links a {
  font-size: 15px;
  letter-spacing: 0.03em;
  color: var(--brand-ink);
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--brand-antique);
}

.nav-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-social {
  display: flex;
  gap: 10px;
}

.nav-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--brand-warm-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-antique);
  font-size: 15px;
  transition: all 0.25s ease;
}

.nav-social a:hover {
  background: var(--brand-champagne);
  color: var(--brand-mocha);
}

.nav-phone {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--brand-line);
  border-radius: 10px;
  background: var(--brand-white);
  color: var(--brand-ink);
  font-size: 19px;
  cursor: pointer;
}

/* Mobile menu panel */
.mobile-menu {
  display: none;
  background: var(--brand-white);
  border-bottom: 1px solid var(--brand-line);
  padding: 8px 24px 22px;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 12px 4px;
  font-size: 16px;
  color: var(--brand-ink);
  border-bottom: 1px solid var(--brand-line);
}

.mobile-menu .btn {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

/* ---------- Hero ---------- */

.hero {
  background: var(--brand-cream);
  padding: clamp(40px, 6vw, 84px) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.hero h1 {
  font-size: clamp(38px, 4.6vw, 62px);
  margin-bottom: 18px;
}

.hero p.sub {
  font-size: 17px;
  max-width: 540px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-media {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 16px;
  align-items: stretch;
}

.hero-media .shot {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-media .shot.tall {
  aspect-ratio: 3 / 4;
}

.hero-media .shot.video {
  aspect-ratio: 9 / 16;
  align-self: center;
}

/* ---------- Stats band ---------- */

.stats {
  background: var(--brand-mocha);
  padding: 26px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  color: var(--brand-champagne);
  line-height: 1.15;
}

.stat span {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-highlight);
}

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.about-photo {
  position: relative;
}

.about-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-badge {
  position: absolute;
  left: -16px;
  bottom: 26px;
  background: var(--brand-champagne);
  color: var(--brand-mocha);
  border-radius: 14px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow);
}

.about-badge small {
  display: block;
  font-weight: 400;
  font-size: 12px;
}

.about-copy p {
  margin-bottom: 16px;
}

.mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 26px 0;
}

.mini-card {
  background: var(--brand-white);
  border: 1px solid var(--brand-line);
  border-radius: 14px;
  padding: 20px;
}

.mini-card i {
  color: var(--brand-antique);
  font-size: 20px;
  margin-bottom: 10px;
}

.mini-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.mini-card p {
  font-size: 14px;
  margin: 0;
}

/* ---------- Services ---------- */

.services {
  background: var(--brand-cream);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--brand-white);
  border: 1px solid var(--brand-line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card .thumb {
  aspect-ratio: 4 / 3.4;
  overflow: hidden;
}

.service-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 0.5s ease;
}

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

.service-card .body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card h3 {
  font-size: 23px;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14.5px;
  margin-bottom: 16px;
}

.service-card .link {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-antique);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
  font-family: var(--font-body);
}

.service-card .link:hover {
  color: var(--brand-mocha);
}

/* ---------- Portfolio ---------- */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}

.pf {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.pf img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pf:hover img {
  transform: scale(1.06);
}

.pf.tall {
  grid-row: span 2;
}

.pf.wide {
  grid-column: span 2;
}

/* ---------- Steps band ---------- */

.steps {
  background: var(--brand-mocha);
}

.steps .section-title,
.steps h3 {
  color: var(--brand-highlight);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.step {
  border-top: 1px solid var(--brand-gold-line);
  padding-top: 20px;
}

.step .num {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--brand-champagne);
  display: block;
  margin-bottom: 10px;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step p {
  font-size: 14.5px;
  color: var(--brand-highlight);
  margin: 0;
}

/* ---------- Experience / why choose ---------- */

.experience-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.experience-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.check-list {
  list-style: none;
  margin-top: 8px;
}

.check-list li {
  display: flex;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--brand-line);
}

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

.check-list i {
  color: var(--brand-antique);
  font-size: 18px;
  margin-top: 4px;
}

.check-list b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  color: var(--brand-ink);
}

.check-list span {
  font-size: 14.5px;
}

/* ---------- Testimonials ---------- */

.testimonials {
  background: var(--brand-cream);
}

.review-viewport {
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.review-card {
  flex: 0 0 calc((100% - 40px) / 3);
  background: var(--brand-white);
  border: 1px solid var(--brand-line);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.review-card .stars {
  color: var(--brand-warm-gold);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.review-card p {
  font-size: 14.5px;
  flex: 1;
}

.review-card .who {
  margin-top: 16px;
  font-weight: 600;
  color: var(--brand-ink);
  font-size: 14px;
}

.review-nav {
  display: flex;
  gap: 10px;
  margin-top: 26px;
  justify-content: center;
}

.review-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--brand-warm-gold);
  background: transparent;
  color: var(--brand-antique);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.review-nav button:hover {
  background: var(--brand-champagne);
  color: var(--brand-mocha);
}

/* ---------- Packages ---------- */

.package-note {
  text-align: center;
  font-size: 14px;
  color: var(--brand-body);
  margin-top: 26px;
}

.package-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.package {
  background: var(--brand-white);
  border: 1px solid var(--brand-line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}

.package.feature {
  background: var(--brand-mocha);
  border-color: var(--brand-mocha);
}

.package h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.package .price {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--brand-antique);
  margin: 8px 0 4px;
}

.package .price small {
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--brand-muted);
}

.package ul {
  list-style: none;
  margin: 18px 0 24px;
  flex: 1;
}

.package li {
  padding: 9px 0 9px 26px;
  font-size: 14.5px;
  border-bottom: 1px solid var(--brand-line);
  position: relative;
}

.package li:last-child {
  border-bottom: none;
}

.package li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--brand-warm-gold);
  font-size: 12px;
}

.package .btn {
  justify-content: center;
}

/* Featured package on mocha */
.package.feature h3,
.package.feature .price {
  color: var(--brand-champagne);
}

.package.feature .price small,
.package.feature li {
  color: var(--brand-highlight);
}

.package.feature li {
  border-color: var(--brand-gold-line);
}

.package.feature li::before {
  color: var(--brand-champagne);
}

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--brand-champagne);
  color: var(--brand-mocha);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 10px;
  align-self: flex-start;
}

/* ---------- Instagram ---------- */

.insta {
  background: var(--brand-cream);
  text-align: center;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.insta-grid a {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  position: relative;
  display: block;
}

.insta-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insta-grid a:hover img {
  transform: scale(1.06);
}

.insta-grid a::after {
  content: "\f16d";
  font-family: "Font Awesome 6 Brands";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--brand-highlight);
  background: rgba(82, 61, 46, 0);
  opacity: 0;
  transition: all 0.3s ease;
}

.insta-grid a:hover::after {
  opacity: 1;
  background: rgba(82, 61, 46, 0.55);
}

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--brand-white);
  border: 1px solid var(--brand-line);
  border-left: 3px solid var(--brand-champagne);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--brand-ink);
  text-align: left;
  cursor: pointer;
}

.faq-q i {
  color: var(--brand-antique);
  transition: transform 0.3s ease;
  flex: 0 0 auto;
}

.faq-item.open .faq-q i {
  transform: rotate(45deg);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}

.faq-a > div {
  overflow: hidden;
  padding: 0 20px;
  font-size: 15px;
}

.faq-item.open .faq-a > div {
  padding-bottom: 18px;
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--brand-mocha);
  text-align: center;
}

.cta-band .section-title {
  color: var(--brand-highlight);
  margin: 0 auto 12px;
}

.cta-band p {
  color: var(--brand-champagne);
  max-width: 560px;
  margin: 0 auto 28px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--brand-mocha);
  border-top: 1px solid var(--brand-gold-line);
  padding: clamp(48px, 6vw, 72px) 0 0;
  color: var(--brand-highlight);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr 1.1fr;
  gap: 34px;
}

.site-footer h4 {
  font-size: 19px;
  color: var(--brand-champagne);
  margin-bottom: 16px;
}

.site-footer ul {
  list-style: none;
}

.site-footer li {
  margin-bottom: 10px;
  font-size: 14.5px;
}

.site-footer a {
  color: var(--brand-highlight);
  transition: color 0.25s ease;
}

.site-footer a:hover {
  color: var(--brand-champagne);
}

.footer-brand img {
  height: 108px;
  width: auto;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--brand-gold-line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-champagne);
  font-size: 15px;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: var(--brand-champagne);
  color: var(--brand-mocha);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.footer-contact i {
  color: var(--brand-champagne);
  font-size: 13px;
}

.footer-insta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.footer-insta a {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.footer-insta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-bar {
  border-top: 1px solid var(--brand-gold-line);
  margin-top: clamp(36px, 5vw, 56px);
  padding: 20px 0;
  text-align: center;
  font-size: 13.5px;
}

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

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .nav-social {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-cta {
    margin-left: 0;
  }

  .nav-bar {
    justify-content: space-between;
    gap: 12px;
  }

  .service-cards,
  .package-cards {
    grid-template-columns: 1fr 1fr;
  }

  .package.feature {
    order: -1;
    grid-column: span 2;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .review-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }

  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }

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

@media (max-width: 768px) {
  .hero-grid,
  .about-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

  .hero-media .shot.video {
    display: none;
  }

  .hero-media .shot.tall {
    aspect-ratio: 4 / 3;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px 12px;
  }

  .about-photo {
    max-width: 460px;
  }

  .experience-photo {
    max-width: 460px;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }

  .review-card {
    flex: 0 0 100%;
  }

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

@media (max-width: 560px) {
  .nav-logo img {
    height: 50px;
  }

  .nav-phone span {
    display: none;
  }

  .nav-phone {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
  }

  .mini-cards,
  .steps-grid,
  .package-cards {
    grid-template-columns: 1fr;
  }

  .package.feature {
    order: 0;
    grid-column: auto;
  }

  .about-badge {
    left: 12px;
    bottom: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
.instagram-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background-color: var(--color-black);
  border-radius: 50%;
  border: 1px solid var(--brand-gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-white);
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.instagram-widget img {
  max-width: 70%;
  /* don’t force full width */
  max-height: 70%;
  /* keep some padding */
  object-fit: contain;
  object-position: center;
}

.instagram-widget:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

/* ======================= Service Area ======================= */
.service_area {
  background: var(--brand-cream);
}

/* .service_cards-content {
  display: flex;
  flex-direction: row;
} */

.service_cards-content {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

/* Individual card */
.service_card_item {
  /* background: rgba(10, 10, 10, 0.75);  */
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 20px 15px;
  border: 1px solid var(--color-champagne);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  flex: 1 1 260px;
  /* responsive width */
  max-width: 200px;
  height: fit-content;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.reviews-header h2 {
  margin: 0px;
}

-.service_card_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.09);
}

/* Card title */
.service_card_item h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--color-champagne);
}

/* Card description */
.service_card_item span {
  font-size: 14px;
  color: var(--text-gray);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service_card_item {
    flex: 1 1 100%;
  }
}

/* Terms page - clean + responsive */
.terms-page {
  padding: 60px 18px;
}

.terms-container {
  max-width: 980px;
  margin: 0 auto;
}

.terms-header h1 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  margin: 0 0 6px;
}

.terms-subtitle {
  margin: 0;
  opacity: 0.75;
  font-size: 1rem;
}

.terms-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}

.terms-nav a {
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 0.95rem;
  line-height: 1;
}

.terms-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 20px 20px;
  margin: 14px 0;
}

.terms-card h2 {
  font-size: clamp(18px, 2.4vw, 24px);
  margin: 0 0 10px;
}

.terms-card ul {
  margin: 0;
  padding-left: 1.15rem;
}

.terms-card li {
  margin: 8px 0;
  line-height: 1.7;
  font-size: 1rem;
}

.terms-card {
  scroll-margin-top: 110px;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .terms-page {
    padding: 40px 14px;
  }

  .terms-card {
    padding: 16px;
    border-radius: 12px;
  }

  .terms-nav a {
    padding: 9px 10px;
    font-size: 0.9rem;
  }
}

/* ==================== Modal Styles ==================== */

/* Logo */
.modal_logo_sadaf {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal_logo_sadaf img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 9999;
}

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

/* Modal Box */
.modal-box {
  background: var(--brand-ink);
  max-width: 600px;
  width: 90%;
  height: 520px;
  max-height: 95vh;
  padding: 30px 25px;
  border-radius: 20px;
  position: relative;
  animation: scaleIn 0.3s ease;
  /* overflow-y: auto;
  overflow-x: hidden; */
  overflow: hidden;
  display: flex;
  flex-direction: column;

  border: 0.5px solid var(--brand-champagne);

  scroll-behavior: smooth;

  box-sizing: border-box;
}

.modal-box:hover {
  box-shadow: 0 0 20px rgba(215, 180, 135, 0.5);
}

/* Scrollbar Styling */
.modal-box::-webkit-scrollbar {
  width: 4px;
}

.modal-box::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.modal-box::-webkit-scrollbar-thumb {
  background: rgba(215, 180, 135, 0.5);
  border-radius: 10px;
}

/* Modal Animation */
@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Heading and paragraph */
.modal-box h2 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 600;
  color: var(--brand-champagne);
}

.modal-box p {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  margin-bottom: 25px;
  color: rgb(212, 212, 212);
}

/* Close button */
.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--brand-champagne);
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: var(--brand-champagne);
}

/* Form layout */
.mail_number,
.service_date {
  display: flex;
  gap: 15px;
}

.mail_number .modal_email,
.mail_number .modal_contact,
.service_date .modal_services,
.service_date .modal_date {
  flex: 1;
}

.form-group.modal_services select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--brand-gold-line);
  background: var(--brand-mocha-2);
  color: var(--brand-champagne);
  font-family: "Inter", sans-serif;
  font-style: italic;
  font-weight: 300;
  appearance: none;
}

/* Appointment form container */
.modal_appointment_form {
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
  padding-right: 5px;
  background: var(--brand-ink);

  /* Smooth scrolling */
  scroll-behavior: smooth;

  /* Firefox scrollbar colors */
  scrollbar-width: thin;
  scrollbar-color: var(--brand-champagne) rgba(30, 30, 30, 0.3);
}

/* WebKit Browsers */
.modal_appointment_form::-webkit-scrollbar {
  width: 8px;
}

.modal_appointment_form::-webkit-scrollbar-track {
  background: rgba(30, 30, 30, 0.3);
  border-radius: 10px;
}

.modal_appointment_form::-webkit-scrollbar-thumb {
  background-color: var(--brand-champagne);
  border-radius: 10px;
  border: 2px solid var(--brand-ink);
}

.modal_appointment_form::-webkit-scrollbar-thumb:hover {
  background-color: var(--brand-highlight);
}

/* Form groups */
.appointment-form .form-group {
  margin-bottom: 18px;
}

/* Labels */
label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--brand-champagne) !important;
}

/* Inputs, selects, textarea */
.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--brand-gold-line);
  font-size: 13px;
  font-family: "Inter", sans-serif;
  font-style: italic;
  font-weight: 300;
  background: var(--brand-mocha-2);
  margin-top: 4px;
  color: rgb(220, 220, 220);
  transition: border 0.3s, background 0.3s;
}

.appointment-form input::placeholder,
.appointment-form textarea::placeholder {
  color: rgb(159, 159, 159);
}

/* Focus state */
.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  border-color: var(--brand-champagne);
  background: var(--brand-mocha-2);
  outline: none;
}

/* Submit button */
.modal_submit_button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand-champagne);
  color: var(--brand-ink);
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.modal-submit i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.modal-submit:hover {
  background: var(--brand-highlight);
  transform: translateY(-2px);
}

.modal-submit:hover i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .mail_number,
  .service_date {
    flex-direction: column;
  }

  .modal-box {
    height: auto;
    max-height: 90vh;
    padding: 20px;
    margin: 20px;
  }

  .modal_appointment_form {
    padding: 10px;
  }

  .modal-logo_sadaf {
    width: 80px;
    height: 80px;
  }
}

input[type="date"] {
  color: var(--brand-champagne);
}

/* Style the native date picker icon in WebKit browsers */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(82%) sepia(57%) saturate(5046%) hue-rotate(36deg)
    brightness(95%) contrast(95%);
  cursor: pointer;
}

/* Optional: pointer & hover effect */
input[type="date"]:hover::-webkit-calendar-picker-indicator {
  filter: invert(82%) sepia(57%) saturate(5046%) hue-rotate(36deg)
    brightness(100%) contrast(100%);
}

/* =========== Media Query =========== */
/* Small laptops & tablets */
@media (max-width: 1024px) {
  .modal-box {
    width: 80%;
    height: auto;
    max-height: 90vh;
    padding: 25px 20px;
  }

  .modal-box h2 {
    font-size: 28px;
  }

  .modal-box p {
    font-size: 13px;
    line-height: 18px;
  }

  .mail_number,
  .service_date {
    gap: 12px;
  }
}

/* Tablets & large phones */
@media (max-width: 768px) {
  .modal-box {
    width: 90%;
    padding: 20px 15px;
    height: auto;
    max-height: 85vh;
  }

  .modal-logo_sadaf {
    width: 80px;
    height: 80px;
  }

  .modal-box h2 {
    font-size: 24px;
  }

  .modal-box p {
    font-size: 12px;
    line-height: 17px;
  }

  .mail_number,
  .service_date {
    flex-direction: column;
    gap: 10px;
  }

  .modal-submit {
    padding: 10px 15px;
    font-size: 13px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .modal-box {
    width: 95%;
    padding: 15px 12px;
    height: auto;
    max-height: 80vh;
  }

  .modal-logo_sadaf {
    width: 70px;
    height: 70px;
  }

  .modal-box h2 {
    font-size: 20px;
  }

  .modal-box p {
    font-size: 11px;
    line-height: 16px;
  }

  .appointment-form input,
  .appointment-form select,
  .appointment-form textarea {
    font-size: 12px;
    padding: 8px 10px;
  }

  .modal-submit {
    width: 100%;
    font-size: 13px;
    padding: 10px;
  }
}

/* Extra small phones */
@media (max-width: 360px) {
  .modal-box {
    width: 98%;
    padding: 12px 10px;
    max-height: 75vh;
  }

  .modal-box h2 {
    font-size: 18px;
  }

  .modal-box p {
    font-size: 10px;
    line-height: 15px;
  }

  .appointment-form input,
  .appointment-form select,
  .appointment-form textarea {
    font-size: 11px;
    padding: 7px 9px;
  }

  .modal-submit {
    font-size: 12px;
    padding: 9px;
  }

  .modal-logo_sadaf {
    width: 60px;
    height: 60px;
  }
}

/* Responsive for tablets */
@media (max-width: 768px) {
  #confirmationMessage h3 {
    font-size: 20px;
  }
  #confirmationMessage p {
    font-size: 13px;
    line-height: 1.5;
  }
  #confirmationMessage {
    margin-top: 15px;
    padding: 12px 8px;
  }
}

/* Responsive for mobile phones */
@media (max-width: 480px) {
  #confirmationMessage h3 {
    font-size: 18px;
  }
  #confirmationMessage p {
    font-size: 12px;
    line-height: 1.4;
  }
  #confirmationMessage {
    margin-top: 10px;
    padding: 10px 6px;
  }
}

/* Extra small phones */
@media (max-width: 360px) {
  #confirmationMessage h3 {
    font-size: 16px;
  }
  #confirmationMessage p {
    font-size: 11px;
    line-height: 1.3;
  }
  #confirmationMessage {
    margin-top: 8px;
    padding: 8px 5px;
  }
}

/* Optional fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


