/*
Theme Name: Sumangalam Weddings
Theme URI: https://sumangalamweddings.com
Author: Sumangalam Creative Team
Author URI: https://sumangalamweddings.com
Description: Bespoke Indian Weddings - Official Figma Design Theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sumangalam
*/

/* ============ TOKENS ============ */
:root {
  --brand-primary: #7a1e1e;
  --brand-primary-2: #5a1414;
  --brand-gold: #d4af37;
  --brand-gold-hover: #b8860b;
  --brand-text: #2d1b1b;
  --brand-text-soft: #5c4040;
  --brand-surface: #ffffff;
  --brand-bg: #fff8ee;
  --brand-border-gold: rgba(212, 175, 55, 0.35);
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Outfit", sans-serif;
  --container-max: 1280px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--brand-text);
  background: var(--brand-bg);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  font-family: inherit;
  cursor: pointer;
}

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

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.35px;
  border: none;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn--primary {
  background: var(--brand-primary);
  color: #fff;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.btn--gold {
  background: var(--brand-gold);
  color: var(--brand-text);
}
.btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn--outline-dark {
  color: var(--brand-text);
  border: 1px solid rgba(45, 27, 27, 0.25);
}
.btn--whatsapp {
  background: #25d366;
  color: #fff;
  padding: 8px 16px;
}
.btn--sm {
  padding: 8px 16px;
  font-size: 13px;
}

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 248, 238, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid transparent;
  transition:
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.header.is-scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  background: rgba(255, 248, 238, 0.97);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand__logo {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 0 0 1px var(--brand-border-gold),
    0 1px 2px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}
.brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand__text {
  display: flex;
  flex-direction: column;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  color: var(--brand-primary);
  line-height: 1.3;
}
.brand__name--footer {
  color: #fff;
  font-size: 30px;
}
.brand__tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--brand-gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-text);
}
.nav a:hover {
  color: var(--brand-primary);
}
.btn--whatsapp-mobile {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  position: relative;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brand-text);
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--brand-text);
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 248, 238, 0.4),
    rgba(45, 27, 27, 0.55) 50%,
    rgba(45, 27, 27, 0.85)
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 100px;
  width: 100%;
}
.hero__inner {
  max-width: 768px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border: 1px solid var(--brand-border-gold);
  border-radius: 9999px;
  padding: 6px 16px;
  font-size: 11px;
  letter-spacing: 3.08px;
  text-transform: uppercase;
  color: var(--brand-gold);
  width: fit-content;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.72px;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}
.hero__title-gold {
  display: block;
  font-style: italic;
  background: linear-gradient(
    90deg,
    var(--brand-gold) 0%,
    #f5d67a 45%,
    var(--brand-gold-hover) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__desc {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 8px;
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
  color: var(--brand-gold);
  letter-spacing: -0.3px;
}
.stat__label {
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  z-index: 3;
}
.scroll-cue span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ============ ORNAMENT DIVIDER ============ */
.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0.9;
  margin-bottom: 0;
  max-width: 100%;
  overflow: hidden;
}
.ornament-divider--left {
  justify-content: flex-start;
}
.ornament-divider--hero {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  opacity: 0.7;
  z-index: 3;
}
.ornament-line {
  flex: 1;
  max-width: 120px;
  min-width: 15px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.6),
    transparent
  );
}
.ornament-divider--hero .ornament-line {
  max-width: 88px;
}
.ornament-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-gold);
  flex-shrink: 0;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--brand-primary);
  white-space: nowrap;
}

/* ============ SECTION ============ */
.section {
  padding: 112px 0;
}
.section--tint {
  background: #fdf6ea;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  color: var(--brand-text);
  margin: 0;
  max-width: 640px;
}
.lead {
  font-size: 16px;
  color: var(--brand-text-soft);
  max-width: 448px;
  margin: 0;
  line-height: 1.5;
}
.body-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--brand-text-soft);
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--brand-border-gold);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(122, 30, 30, 0.25);
}
.service-card__img-wrap {
  position: relative;
  height: 290px;
  overflow: hidden;
}
.service-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card__img-wrap img {
  transform: scale(1.06);
}
.service-card__img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 27, 27, 0.7), transparent 60%);
}
.service-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(255, 248, 238, 0.95);
  backdrop-filter: blur(6px);
  border: 1px solid var(--brand-border-gold);
  border-radius: 9999px;
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--brand-primary);
  font-weight: 500;
}
.service-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.24px;
  margin: 0;
}
.service-card__desc {
  font-size: 14px;
  color: var(--brand-text-soft);
  margin: 0;
  line-height: 1.6;
}
.service-card__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

/* ============ PLANS ============ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  align-items: stretch;
}
.plan-card {
  position: relative;
  height: 100%;
  background: #fff;
  border: 1px solid var(--brand-border-gold);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px -12px rgba(122, 30, 30, 0.15);
}
.plan-card--featured {
  position: relative;
  color: #fff;
  background: linear-gradient(
    to bottom,
    var(--brand-primary),
    var(--brand-primary-2)
  );
  border: 1px solid var(--brand-gold);
  box-shadow: 0 20px 60px -20px rgba(122, 30, 30, 0.55);
}
.plan-card--featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 70px -16px rgba(122, 30, 30, 0.65);
}
.plan-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-gold);
  color: var(--brand-text);
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}
.plan-card__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.3px;
  margin: 0;
  color: var(--brand-primary);
}
.plan-card--featured .plan-card__name {
  color: #fff;
}
.plan-card__subtitle {
  font-size: 14px;
  color: var(--brand-text-soft);
  margin: 4px 0 0;
}
.plan-card--featured .plan-card__subtitle {
  color: rgba(255, 255, 255, 0.8);
}
.plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 24px;
}
.plan-card__currency {
  font-size: 12px;
  color: var(--brand-text-soft);
}
.plan-card--featured .plan-card__currency {
  color: rgba(255, 255, 255, 0.7);
}
.plan-card__amount {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 48px;
  letter-spacing: -0.48px;
  color: var(--brand-text);
}
.plan-card--featured .plan-card__amount {
  color: #fff;
}
.plan-card__per {
  font-size: 14px;
  color: var(--brand-text-soft);
}
.plan-card--featured .plan-card__per {
  color: rgba(255, 255, 255, 0.7);
}
.plan-card__note {
  font-size: 12px;
  color: var(--brand-text-soft);
  margin-top: 4px;
}
.plan-card--featured .plan-card__note {
  color: rgba(255, 255, 255, 0.7);
}
.plan-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  flex: 1;
}
.plan-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.4;
}
.plan-card__list li.is-off {
  opacity: 0.5;
  text-decoration: line-through;
}
.plan-card__list svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.plan-card__cta {
  margin-top: 28px;
  background: var(--brand-primary);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.35px;
  text-align: center;
}
.plan-card--featured .plan-card__cta {
  background: var(--brand-gold);
  color: var(--brand-text);
}

/* ============ GALLERY ============ */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--brand-border-gold);
  border-radius: 9999px;
  padding: 7px 17px;
  font-size: 13px;
  color: var(--brand-text-soft);
  transition: 0.2s ease;
}
.filter-btn:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}
.filter-btn.is-active {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}

.gallery-grid {
  columns: 3;
  column-gap: 24px;
  margin-top: 40px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 24px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--brand-border-gold);
  background: #fff;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.gallery-item img {
  width: 100%;
  display: block;
}
.gallery-item.is-hidden {
  display: none;
}

/* ============ ABOUT ============ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--brand-border-gold);
  border-radius: 24px;
  padding: 24px;
}
.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: var(--brand-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  margin-bottom: 16px;
}
.feature-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.2px;
  margin: 0 0 8px;
}
.feature-card__desc {
  font-size: 14px;
  color: var(--brand-text-soft);
  line-height: 1.6;
  margin: 0;
}

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--brand-border-gold);
  border-radius: 24px;
  padding: 32px;
}
.testimonial-card__quote-icon {
  color: var(--brand-gold);
  margin-bottom: 16px;
}
.testimonial-card__text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
  color: var(--brand-text);
  margin: 0 0 24px;
}
.testimonial-card__footer {
  border-top: 1px solid var(--brand-border-gold);
  padding-top: 16px;
}
.testimonial-card__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-primary);
}
.testimonial-card__loc {
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-top: 4px;
}

/* ============ INQUIRY ============ */
.inquiry-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.inquiry-info {
  position: sticky;
  top: 110px;
}
.whatsapp-note {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 32px;
}
.whatsapp-note__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.whatsapp-note__title {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}
.whatsapp-note__link {
  font-size: 13px;
  color: #25d366;
  font-weight: 500;
}
.fine-print {
  font-size: 13px;
  color: var(--brand-text-soft);
  margin-top: 24px;
}

.inquiry-form,
.wpcf7-form {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wpcf7-form p {
  margin: 0;
  padding: 0;
  display: contents;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}
.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.inquiry-form label,
.wpcf7-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--brand-text-soft);
  width: 100%;
}
.inquiry-form input,
.inquiry-form select,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form select {
  border: 1px solid var(--brand-border-gold);
  border-radius: 9999px;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--brand-text);
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}
.inquiry-form textarea,
.wpcf7-form textarea {
  border: 1px solid var(--brand-border-gold);
  border-radius: 16px;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--brand-text);
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
}
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: var(--brand-primary);
}

.form-success {
  display: none;
  font-size: 13px;
  color: #2e7d32;
  text-align: center;
  margin: 0;
}
.form-success.is-visible {
  display: block;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--brand-text);
  color: #fff;
  padding-top: 80px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-top: 20px;
  max-width: 448px;
}
.footer__cta {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer__heading {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3.08px;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin: 0 0 16px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}
.footer__links a:hover {
  color: var(--brand-gold);
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.footer__bottom-links a {
  color: rgba(255, 255, 255, 0.5);
}
.footer__bottom-links a:hover {
  color: var(--brand-gold);
}

/* ============ INQUIRY FORM DESIGN MATCH ============ */
.inquiry-card {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 28px;
  padding: 36px 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-label-text {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-text-soft);
  display: block;
  margin-bottom: 4px;
}

.inquiry-form input[type="text"],
.inquiry-form input[type="tel"],
.inquiry-form input[type="email"],
.inquiry-form input[type="number"],
.inquiry-form input[type="date"],
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 9999px;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--brand-text);
  background: #ffffff;
  outline: none;
  transition: all 0.2s ease;
}

.inquiry-form textarea {
  border-radius: 16px;
  padding: 14px 20px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(122, 30, 30, 0.1);
}

.form-services-group {
  margin: 6px 0;
}

.services-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-text);
  margin-bottom: 12px;
  display: block;
}

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

label.service-checkbox-pill {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 9999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--brand-text);
  cursor: pointer;
  background: #ffffff;
  transition: all 0.2s ease;
  user-select: none;
}

.service-checkbox-pill.full-width {
  grid-column: span 2;
  width: fit-content;
}

.service-checkbox-pill:hover {
  border-color: var(--brand-primary);
  background: #fffbf5;
}

.service-checkbox-pill input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--brand-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: transparent;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.service-checkbox-pill input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #ffffff;
}

.form-actions-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn--maroon {
  background: #7a1e1e;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(122, 30, 30, 0.2);
  border: none;
}

.btn--maroon:hover {
  background: #5a1414;
  color: #ffffff;
}

.btn--whatsapp-green {
  background: #25d366;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.2);
  border: none;
}

.btn--whatsapp-green:hover {
  background: #1eb957;
  color: #ffffff;
}

.form-sub-note {
  font-size: 11px;
  color: var(--brand-text-soft);
  margin-left: auto;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-layout,
  .inquiry-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .inquiry-info {
    position: relative;
    top: 0;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    columns: 2;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 768px) {
  /* Header bar stays fixed, nav drops below it */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  .header__inner {
    padding: 10px 16px;
    position: relative;
  }
  .header__inner .btn--whatsapp {
    display: none;
  }
  .header__inner .brand__text {
    display: none;
  }
  .brand__logo {
    width: 44px;
    height: 44px;
  }

  /* Nav curtain: absolutely positioned below header bar */
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-height: 0;
    overflow: hidden;
    background: var(--brand-bg);
    transition: max-height 0.4s ease;
    border-bottom: 1px solid transparent;
    padding: 0 24px;
  }
  .nav.is-open {
    max-height: 500px;
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  }
  .nav a {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--brand-text);
    width: 100%;
  }
  .nav a:hover {
    color: var(--brand-primary);
  }

  /* WhatsApp button inside mobile menu */
  .btn--whatsapp-mobile {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #25d366;
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 8px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.2);
  }
  .btn--whatsapp-mobile:hover {
    background: #1eb957;
  }

  /* Hamburger → × toggle */
  .nav-toggle {
    display: flex;
  }

  /* General mobile layout */
  .container {
    padding: 0 16px;
  }
  .services-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    columns: 1;
  }
  .section {
    padding: 56px 0;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }

  /* Inquiry Form Mobile Layout */
  .inquiry-card {
    padding: 24px 18px;
    border-radius: 20px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .inquiry-info {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .body-text,
  .h2,
  .fine-print {
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
  }
  .inquiry-form {
    width: 100%;
  }
  .inquiry-form input,
  .inquiry-form select,
  .inquiry-form textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .services-checkbox-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  label.service-checkbox-pill {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .service-checkbox-pill.full-width {
    grid-column: span 1;
    width: 100% !important;
  }
  .form-actions-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }
  .btn--maroon,
  .btn--whatsapp-green {
    width: 100% !important;
    justify-content: center;
    box-sizing: border-box;
  }
  .form-sub-note {
    margin-left: 0;
    width: 100%;
    text-align: center;
    margin-top: 4px;
  }
}



/* ============ STICKY FLOATING WHATSAPP BUTTON ============ */
.sticky-whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99999;
  background: #25d366;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 9999px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: pulse-whatsapp 3s infinite;
}

.sticky-whatsapp-btn:hover {
  background: #1eb957;
  color: #ffffff !important;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow:
      0 0 0 0 rgba(37, 211, 102, 0.6),
      0 8px 24px rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow:
      0 0 0 14px rgba(37, 211, 102, 0),
      0 8px 24px rgba(37, 211, 102, 0.4);
  }
  100% {
    box-shadow:
      0 0 0 0 rgba(37, 211, 102, 0),
      0 8px 24px rgba(37, 211, 102, 0.4);
  }
}

@media (max-width: 768px) {
  .sticky-whatsapp-btn {
    bottom: 20px;
    right: 20px;
    padding: 12px;
    border-radius: 50%;
  }
  .sticky-whatsapp-text {
    display: none;
  }
}
/* ============ SERVICE HERO ============ */
.svc-hero{
  background: var(--brand-text);
  padding: 220px 0 72px;
  color: #fff;
}
.svc-breadcrumb{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-bottom: 32px;
}
.svc-breadcrumb:hover{ color: var(--brand-gold); }
.svc-hero__title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px,7vw,80px);
  line-height: 1;
  margin: 0 0 24px;
  max-width: 700px;
}
.svc-hero__desc{
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  max-width: 620px;
  margin: 0 0 32px;
}
.svc-hero__actions{ display:flex; flex-wrap:wrap; gap:12px; }

/* ============ WHAT'S INCLUDED ============ */
.svc-included__layout{
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.svc-included__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.include-item{
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--brand-border-gold);
  border-radius: 9999px;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--brand-text);
}
.include-item svg{ flex-shrink:0; color: var(--brand-primary); }

/* ============ RECENT WORK GRID ============ */
.svc-recent__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.svc-recent__grid img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--brand-border-gold);
}

/* ============ EXPLORE MORE ============ */
.svc-explore__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.explore-card{
  display: block;
  background: #fff;
  border: 1px solid var(--brand-border-gold);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.explore-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(122,30,30,.25);
}
.explore-card__img-wrap{ height: 220px; overflow: hidden; }
.explore-card__img-wrap img{ width:100%; height:100%; object-fit:cover; transition: transform .4s ease; }
.explore-card:hover .explore-card__img-wrap img{ transform: scale(1.06); }
.explore-card__body{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}
.explore-card__title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--brand-text);
  margin: 0 0 4px;
}
.explore-card__cta{
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-primary);
  font-weight: 500;
}
.explore-card__arrow{
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--brand-border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-primary);
  flex-shrink: 0;
}

/* ============ FLOATING WHATSAPP BUTTON ============ */
.fab-whatsapp{
  position: fixed;
  bottom: 24px; right: 24px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 25px rgba(37,211,102,.4);
  z-index: 90;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px){
  .svc-included__layout{ grid-template-columns: 1fr; gap: 32px; }
  .svc-recent__grid, .svc-explore__grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px){
  .svc-hero{ padding: 140px 0 56px; }
  .svc-included__grid{ grid-template-columns: 1fr; }
  .svc-recent__grid, .svc-explore__grid{ grid-template-columns: 1fr; }
}
