/*
Theme Name: Revaah Decor
Theme URI: https://revaahdecor.in
Author: Revaah Decor
Author URI: https://revaahdecor.in
Description: A luxury wedding decor theme for Revaah Decor, New Delhi. Featuring elegant serif typography, floral aesthetics, and a full enquiry system.
Version: 1.3.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: revaah-decor
Tags: wedding, decor, luxury, one-page, custom-menu, contact-form
*/

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  --cream: #FBF5F8;
  --deep: #1F0A12;
  --olive: #7B2D4A;
  --gold: #C47A95;
  --gold-light: #F0C4D4;
  --leaf: #7B2D4A;
  --muted: #C47A95;
  --white: #FFFFFF;
  --border-gold: rgba(196, 122, 149, 0.18);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--deep);
  overflow-x: hidden;
  max-width: 100vw;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul { list-style: none; }

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
.serif { font-family: 'Cormorant Garamond', serif; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.15;
  color: var(--deep);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: 1.3rem; font-weight: 400; }

p { font-weight: 300; }

em { font-style: italic; color: var(--gold); }

/* =============================================
   UTILITY CLASSES
   ============================================= */
.section-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--deep);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  background: var(--deep);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--deep);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.btn-outline {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  background: transparent;
  color: var(--deep);
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--deep);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-light {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  background: transparent;
  color: var(--gold-light);
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(240, 196, 212, 0.45);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-outline-light:hover {
  background: var(--gold-light);
  color: var(--deep);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}



.animate     { animation: fadeUp 0.8s ease forwards; }
.delay-1     { animation-delay: 0.15s; }
.delay-2     { animation-delay: 0.30s; }
.delay-3     { animation-delay: 0.45s; }
.delay-4     { animation-delay: 0.60s; }

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   SITE HEADER / NAVIGATION
   ============================================= */
#site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 99999 !important;
  padding: 1.1rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(20, 5, 10, 0.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
  transition: padding var(--transition), box-shadow var(--transition);
}

#site-header.scrolled {
  padding: 0.75rem 3.5rem;
  background: rgb(20, 5, 10) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.site-branding {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.site-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* Hide WordPress default custom-logo wrapper sizing */
.custom-logo-link { display: flex; align-items: center; }
.custom-logo-link img,
.wp-post-image { max-height: 48px !important; width: auto !important; height: 48px !important; object-fit: contain; }

.site-logo-text {
  display: flex;
  flex-direction: column;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--deep);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.site-logo-text span:first-child { color: var(--gold); }

.site-branding .tagline {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
}

/* Primary Navigation */
#primary-navigation {
  display: flex;
  align-items: center;
  gap: 3rem;
}

#primary-navigation ul {
  display: flex;
  gap: 2.5rem;
}

#primary-navigation ul li a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep) !important;
  font-weight: 400;
  position: relative;
}

#primary-navigation ul li a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

#primary-navigation ul li a:hover { color: var(--gold); }
#primary-navigation ul li a:hover::after { width: 100%; }

.nav-enquire {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.6rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.nav-enquire:hover {
  background: var(--gold);
  color: var(--white);
}

/* Mobile enquire button — hidden on desktop, shown on mobile */
#mobile-enquire { display: none; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--deep);
  transition: all var(--transition);
}

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

/* =============================================
   HERO SECTION
   ============================================= */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  padding: 120px 2rem 80px;
  background: var(--cream);
  overflow: hidden;
}

.hero-bg-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-decor svg {
  width: 100%;
  height: 100%;
  opacity: 0.055;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  padding: 2rem;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  font-weight: 400;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--deep);
  margin-bottom: 1.2rem;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.9;
  letter-spacing: 0.04em;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}



/* =============================================
   ABOUT SECTION
   ============================================= */
#about {
  padding: 7rem 4rem;
  background: var(--white);
}

.about-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border-gold);
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image-wrap:hover img { transform: scale(1.04); }

.about-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.about-accent-box {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(196, 122, 149, 0.28);
  z-index: -1;
}

.about-tag-badge {
  position: absolute;
  bottom: 1.8rem;
  left: -2rem;
  background: var(--deep);
  color: var(--cream);
  padding: 1rem 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}

.about-content { padding-left: 1rem; }

.about-content .section-title { margin-bottom: 1.5rem; }

.about-content p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 2;
  margin-bottom: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.2rem;
}

.stat-item {
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--deep);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =============================================
   SERVICES SECTION
   ============================================= */
#services {
  padding: 7rem 4rem;
  background: var(--cream);
}

.services-header {
  max-width: 1280px;
  margin: 0 auto 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.services-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-gold);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.service-card:hover::after { width: 100%; }

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(31, 10, 18, 0.09);
}

.service-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 1.4rem;
  color: var(--gold);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.7rem;
  color: var(--deep);
}

.service-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.9;
}

/* =============================================
   GALLERY SECTION
   ============================================= */
#gallery {
  padding: 7rem 4rem;
  background: var(--deep);
}

.gallery-header {
  max-width: 1280px;
  margin: 0 auto 3rem;
  text-align: center;
}

.gallery-header .section-label { color: var(--gold-light); }

.gallery-header .section-title { color: var(--cream); }

.gallery-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(240, 196, 212, 0.18);
}

/* ── Sonar ping cursor ── */
.gallery-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 60px; height: 60px;
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
  will-change: left, top;
}
.gallery-cursor.visible { opacity: 1; }
.gallery-cursor svg { overflow: visible; width: 60px; height: 60px; }
.gallery-cursor .cursor-core { fill: var(--gold-light); }
.gallery-cursor .cursor-ring { fill: none; stroke: var(--gold-light); stroke-width: 0.8px; opacity: 0; }
.gallery-cursor.visible .cursor-ring-1 { animation: sonar-ping 2s ease-out infinite; }
.gallery-cursor.visible .cursor-ring-2 { animation: sonar-ping 2s ease-out infinite 0.8s; }
@keyframes sonar-ping {
  0%   { r: 4; opacity: 1; }
  100% { r: 28; opacity: 0; }
}

.gallery-grid { cursor: none; }

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.88);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31,10,18,0.7) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: rgba(240, 196, 212, 0.25);
}

.gallery-placeholder svg { width: 36px; opacity: 0.3; }
.gallery-placeholder span { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; }

.gallery-cta {
  text-align: center;
  margin-top: 3rem;
}

/* =============================================
   WHY SECTION
   ============================================= */
#why {
  padding: 7rem 4rem;
  background: var(--white);
}

.why-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.why-inner .section-title { margin-bottom: 3.5rem; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: left;
}

.why-item {
  padding: 2rem 1.5rem;
  border-top: 2px solid var(--gold);
}

.why-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(196, 122, 149, 0.18);
  line-height: 1;
  margin-bottom: 1rem;
}

.why-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  color: var(--deep);
}

.why-item p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.9;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
#testimonials {
  padding: 4rem 4rem 7rem;
  background: var(--cream);
  text-align: center;
}

.testimonials-inner {
  max-width: 760px;
  margin: 0 auto;
}

.testimonials-inner .section-title { margin-bottom: 3rem; }

.testimonial-slider {
  position: relative;
  min-height: 260px;
}

/* ── Cards: absolute stacked, fade+slide in/out ── */
.testimonial-card {
  position: absolute;
  inset: 0;
  padding: 3rem;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  pointer-events: none;
  border: 1px solid var(--border-gold);
}

/* Light variant — odd cards (1,3,5,7) */
.testimonial-card:nth-child(odd) {
  background: #fff8f5;
  color: var(--deep);
}

/* Dark variant — even cards (2,4,6) */
.testimonial-card:nth-child(even) {
  background: #2b1a1a;
  border-color: rgba(200,160,100,0.25);
}

.testimonial-card:nth-child(even) blockquote {
  color: #f0e6da;
}

.testimonial-card:nth-child(even) .testimonial-author {
  color: #c8a07a;
}

.testimonial-card:nth-child(even) .quote-mark {
  color: #c8a07a;
}

.testimonial-card:nth-child(even) .testimonial-stars {
  color: #c8a07a;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.testimonial-card.leaving {
  opacity: 0;
  transform: translateY(-18px);
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: -1.5rem;
  left: 1.5rem;
  line-height: 1;
  user-select: none;
}

.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.85;
  color: var(--deep);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.testimonial-stars {
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.testimonial-dots {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.28;
  cursor: pointer;
  border: none;
  transition: opacity var(--transition), transform var(--transition);
}

.testimonial-dot.active {
  opacity: 1;
  transform: scale(1.3);
}

/* =============================================
   CONTACT SECTION
   ============================================= */
#contact {
  padding: 0 4rem 7rem;
  background: var(--deep);
  overflow: hidden;
}

.contact-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-top: 7rem;
  margin-top: 0;
}

.contact-section-header .section-label {
  color: var(--gold-light);
}

.contact-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
  width: 100%;
}

.contact-info .section-label { color: var(--gold-light); }

.contact-info .section-title {
  color: var(--cream);
  margin-bottom: 2.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.6rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(240, 196, 212, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-light);
}

.contact-icon svg { width: 17px; height: 17px; }

.contact-detail-content p:first-child {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
}

.contact-detail-content p:last-child,
.contact-detail-content a {
  font-size: 0.92rem;
  color: rgba(251, 245, 248, 0.65);
  font-weight: 300;
  line-height: 1.7;
}

.contact-detail-content a:hover { color: var(--gold-light); }

.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.5rem;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(240, 196, 212, 0.28);
  color: var(--gold-light);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--gold-light);
  color: var(--deep);
  border-color: var(--gold-light);
}

/* Contact Form */
.contact-form-wrap .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group { margin-bottom: 1rem; }

.date-undecided-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(251, 245, 248, 0.5);
  cursor: pointer;
  user-select: none;
}

.date-undecided-label input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: var(--gold);
  cursor: pointer;
  margin: 0;
  flex-shrink: 0;
}

.form-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(251, 245, 248, 0.45);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(240, 196, 212, 0.2);
  padding: 0.85rem 1rem;
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(251, 245, 248, 0.28); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold-light);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A96E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-group select option {
  background: #ffffff;
  color: #1a0a0a;
}

.form-group select optgroup {
  background: #ffffff;
  color: #000000;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-group select optgroup option {
  background: #ffffff;
  color: #1a0a0a;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--deep);
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: background var(--transition);
  margin-top: 0.5rem;
  border-radius: 0;
}

.form-submit:hover { background: var(--gold-light); }

.form-notice {
  font-size: 0.72rem;
  color: rgba(251, 245, 248, 0.35);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.6;
}

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: var(--deep);
  border-top: 1px solid rgba(240, 196, 212, 0.12);
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

.footer-copy {
  font-size: 0.7rem;
  color: rgba(251, 245, 248, 0.3);
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(251, 245, 248, 0.32);
  transition: color var(--transition);
}

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

/* =============================================
   WORDPRESS SPECIFIC
   ============================================= */
.wp-block { max-width: 100%; }

.alignfull { margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); max-width: 100vw; }

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* Contact Form 7 */
.wpcf7 { margin-top: 0 !important; }
.wpcf7-form-control-wrap { display: block; }
.wpcf7-not-valid-tip { font-size: 0.72rem; color: #E8A0A0; margin-top: 4px; }
.wpcf7-response-output { font-size: 0.78rem; margin-top: 1rem !important; padding: 0.75rem 1rem !important; border: 1px solid var(--gold-light) !important; color: var(--gold-light) !important; }


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

/* ── Tablet (≤1100px) ── */
@media (max-width: 1100px) {
  #site-header { padding: 1.2rem 2.5rem; }

  #about, #services, #gallery, #why, #testimonials, #contact {
    padding: 6rem 3rem;
  }

  .about-grid { max-width: 100%; gap: 4rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-header, .gallery-header, .why-inner, .contact-grid { max-width: 100%; }
  .gallery-grid { max-width: 100%; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 280px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 4rem; }
  #site-footer { padding: 2rem 3rem; }
}

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

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

  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  section {
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
  }

  /* === Header === */
  #site-header {
    padding: 0.7rem 1.2rem !important;
    width: 100% !important;
    max-width: 100vw;
    min-height: 60px !important;
  }

  #primary-navigation { display: none !important; }
  .menu-toggle { display: none !important; }
  #mobile-enquire { display: inline-flex !important; }

  #primary-navigation {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    background: rgba(251, 240, 244, 0.99);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    gap: 2rem;
    overflow-y: auto;
    z-index: 999;
  }

  #primary-navigation.open { display: flex; }

  #primary-navigation ul {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
  }

  #primary-navigation ul li a { font-size: 1.05rem; letter-spacing: 0.15em; }
  .nav-enquire { font-size: 0.85rem; padding: 0.8rem 2rem; }

  /* === Hero === */
  #hero {
    padding: 90px 1.2rem 5rem;
    min-height: 100svh;
    width: 100%;
  }

  .hero-content { max-width: 100%; padding: 0; }
  .hero-eyebrow { font-size: 0.7rem; margin-bottom: 1rem; }
  .hero-title { font-size: clamp(2.6rem, 9vw, 4rem); margin-bottom: 1rem; }
  .hero-subtitle { font-size: 0.9rem; max-width: 100%; margin-bottom: 2rem; }

  .hero-buttons {
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    flex-wrap: nowrap;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: auto !important;
    text-align: center;
    padding: 0.5rem 1rem !important;
    font-size: 0.65rem !important;
    display: inline-block;
    white-space: nowrap;
  }

  .hero-content {
    padding: 1.5rem 1.2rem !important;
  }

  /* === About === */
  #about { padding: 4rem 1.2rem; width: 100%; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 100%;
    width: 100%;
  }

  .about-image-wrap { aspect-ratio: 4 / 3; }
  .about-content { padding-left: 0; }
  .about-tag-badge { left: 0.5rem; font-size: 0.62rem; padding: 0.6rem 0.9rem; }
  .about-accent-box { display: none; }
  .about-content .section-title { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-number { font-size: 2rem; }

  /* === Services === */
  #services { padding: 4rem 1.2rem; width: 100%; }

  .services-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    max-width: 100%;
    width: 100%;
    margin-bottom: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    width: 100%;
    gap: 1rem;
  }

  .service-card { padding: 2rem 1.5rem; }
  .service-card h3 { font-size: 1.3rem; }

  /* === Gallery === */
  #gallery { padding: 4rem 1.2rem; width: 100%; }
  .gallery-header { max-width: 100%; width: 100%; margin-bottom: 2rem; }

  .gallery-grid {
    max-width: 100%;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
    gap: 0.5rem;
  }

  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .gallery-cta { margin-top: 2rem; }
  .gallery-cta .btn-outline-light { width: 100%; text-align: center; display: block; }

  /* === Why === */
  #why { padding: 4rem 1.2rem; width: 100%; }
  .why-inner { max-width: 100%; width: 100%; }
  .why-inner .section-title { margin-bottom: 2.5rem; font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .why-item { padding: 1.5rem 1rem; }
  .why-number { font-size: 2.8rem; }

  /* === Testimonials === */
  #testimonials { padding: 4rem 1.2rem; width: 100%; }
  .testimonials-inner { max-width: 100%; width: 100%; }
  .testimonial-card { padding: 2rem 1.5rem; border-radius: 4px; }
  .testimonial-card blockquote { font-size: 1.1rem; }

  /* === Contact — THE KEY FIX === */
  #contact {
    padding: 4rem 1.2rem;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
    max-width: 100%;
    width: 100%;
  }

  .contact-info,
  .contact-form-wrap {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .contact-form-wrap .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-social {
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .social-btn {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    padding: 0.7rem 1rem;
    font-size: 0.75rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px; /* prevents iOS zoom on focus */
    padding: 0.9rem 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .contact-detail-content p:last-child,
  .contact-detail-content a {
    font-size: 0.95rem;
    word-break: break-word;
  }

  /* === Footer === */
  #site-footer {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1.2rem;
    gap: 0.8rem;
    width: 100%;
  }

  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}

/* ── Small mobile (≤480px) ── */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.2rem); }

  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }

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

  .section-title { font-size: clamp(1.7rem, 8vw, 2.4rem) !important; }

  .btn-primary, .btn-outline, .btn-outline-light {
    font-size: 0.8rem;
    padding: 0.9rem 1.5rem;
  }
}

/* =============================================
   FLOATING WHATSAPP CTA
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  right: auto;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 12px 18px 12px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0,0,0,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  width: auto;
  height: auto;
  max-width: 190px;
  min-width: 0;
  overflow: hidden;
  line-height: 1;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0,0,0,0.2);
}

.whatsapp-float:active {
  transform: translateY(0) scale(0.98);
}

.whatsapp-float__icon {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px;
  min-height: 24px;
  max-width: 24px;
  max-height: 24px;
  fill: #fff;
  flex-shrink: 0;
  display: block;
}

.whatsapp-float__label {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Pulse ring animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: wa-pulse 2.5s ease-out infinite;
}

@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 18px;
    left: 18px;
    right: auto;
    padding: 11px 14px 11px 12px;
  }
  .whatsapp-float__label { font-size: 0.75rem; }
}
