/* ==========================================================================
   AURA Luxury Beauty Studio - Main Stylesheet
   ========================================================================== */

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* Design Tokens & Variables */
:root {
  /* Core Variable Refactoring for wikifint website factory */
  --primary: #151616;           /* Brand Obsidian Charcoal */
  --secondary: #F5ECE1;         /* Brand Warm Sand/Beige */
  --accent: #C8A27C;            /* Brand Champagne Rose Gold */
  
  --radius-xs: 2px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-round: 50%;
  
  --shadow-sm: 0 4px 12px rgba(21, 22, 22, 0.03);
  --shadow-md: 0 12px 36px rgba(21, 22, 22, 0.05);
  --shadow-lg: 0 24px 58px rgba(21, 22, 22, 0.08);
  --shadow-xl: 0 32px 72px rgba(21, 22, 22, 0.12);
  --shadow-gold: 0 10px 30px rgba(200, 162, 124, 0.2);
  
  --heading-font: 'Cormorant Garamond', serif;
  --body-font: 'Plus Jakarta Sans', sans-serif;

  /* Layout / Helper Mappings */
  --bg-primary: #FAF8F5;         /* Soft Ivory background */
  --bg-secondary: var(--secondary);
  --bg-tertiary: #EBE5DC;        /* Deep Warm Neutral */
  --text-primary: var(--primary);
  --text-secondary: #5C5E60;     /* Muted Slate */
  --text-tertiary: #8C8E90;      /* Light Slate */
  
  --accent-hover: #A07F5E;       /* Darkened Rose Gold */
  --accent-light: #F3EFE9;       /* Soft Pastel Accent */
  --accent-gold: #D4AF37;        /* Minimal Premium Gold */
  --white: #FFFFFF;
  --black: #000000;
  
  --font-primary: var(--heading-font);
  --font-secondary: var(--body-font);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
  --section-padding: 7.5rem 0;
  
  /* Transitions */
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease-in-out;
  
  /* Layout constraints */
  --container-width: 1320px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-secondary);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

/* Custom Selection */
::selection {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--text-primary);
  line-height: 1.2;
  font-weight: 400;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: 0;
}

h4 {
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}

p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

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

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

/* Layout Elements */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.section {
  padding: var(--section-padding);
  position: relative;
}

/* Buttons & CTA */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.5rem;
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
  z-index: 1;
  min-height: 48px; /* Touch target safety (>44px) */
}

.btn-primary {
  background-color: var(--text-primary);
  color: var(--bg-primary);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accent);
  transform: translateY(100%);
  transition: var(--transition-normal);
  z-index: -1;
}

.btn-primary:hover {
  color: var(--text-primary);
  border-color: var(--accent);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover::after {
  transform: translateY(0);
}

.btn-outline {
  background-color: transparent;
  border-color: rgba(21, 22, 22, 0.2);
  color: var(--text-primary);
}

.btn-outline::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--text-primary);
  transform: translateY(100%);
  transition: var(--transition-normal);
  z-index: -1;
}

.btn-outline:hover {
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

.btn-outline:hover::after {
  transform: translateY(0);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--text-primary);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  padding: 0.5rem 0;
  position: relative;
  min-height: 44px; /* Touch target safety */
}

.btn-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 1px;
  background-color: var(--accent);
  transition: var(--transition-normal);
}

.btn-text:hover::after {
  width: 100%;
}

.btn-text i {
  margin-left: 0.5rem;
  transition: var(--transition-fast);
}

.btn-text:hover i {
  transform: translateX(5px);
}

/* Premium Image Placeholder Grid/Base */
.img-wrapper {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: block;
}

.img-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(200, 162, 124, 0.08) 0%, rgba(21, 22, 22, 0.02) 100%);
  z-index: 1;
  pointer-events: none;
}

.img-wrapper::after {
  content: 'AURA';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-primary);
  font-size: 2.5rem;
  letter-spacing: 0.4em;
  color: rgba(21, 22, 22, 0.08);
  font-weight: 300;
  pointer-events: none;
  z-index: 0;
  transition: var(--transition-normal);
}

.img-wrapper img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  transition: var(--transition-smooth);
}

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

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  z-index: 100;
  transition: var(--transition-normal);
  border-bottom: 1px solid rgba(21, 22, 22, 0.03);
  background-color: transparent;
}

header.scrolled {
  height: 75px;
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(21, 22, 22, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  gap: 1.5rem;
}

/* Logo layout support for long business names */
.logo {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2.2vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  display: inline-block;
  line-height: 1.2;
  flex: 0 1 auto;
  max-width: 320px;
  min-width: 0;
  white-space: normal;
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.logo span {
  font-weight: 300;
  font-size: 0.85em;
  letter-spacing: 0.05em;
  margin-left: 0.35rem;
  color: var(--accent);
}

/* Menu gap auto-shrinks on smaller desktop viewports */
.nav-menu {
  display: flex;
  list-style: none;
  gap: clamp(0.8rem, 1.8vw, 2.8rem);
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-primary);
  padding: 0.5rem 0;
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
}

.nav-cta .btn {
  padding: 0.8rem 1.8rem;
  font-size: 0.75rem;
}

/* Mobile Toggle Hamburger */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  width: 28px;
  height: 18px;
  position: relative;
  z-index: 102;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  left: 0;
  transition: var(--transition-normal);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Section Header Shared */
.section-header {
  margin-bottom: var(--spacing-lg);
  max-width: 650px;
}

.section-subtitle {
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 0.8rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
#hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  background-color: var(--bg-primary);
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: var(--bg-secondary);
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: var(--spacing-lg);
  position: relative;
  z-index: 2;
  height: 100%;
}

.hero-content {
  max-width: 600px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-tag::before {
  content: '';
  width: 12px;
  height: 1px;
  background-color: var(--accent);
}

.hero-content h1 {
  margin-bottom: 1.8rem;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

/* Hero Media Overlap Composition */
.hero-media {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-main {
  width: 75%;
  height: 90%;
  max-height: 580px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

/* Floating Badges */
.badge {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 1.5rem 1.8rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 3;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.4);
  animation: float-badge 6s ease-in-out infinite alternate;
}

.badge-review {
  bottom: 10%;
  left: -5%;
}

.badge-review .stars {
  color: var(--accent);
  font-size: 0.8rem;
  margin-bottom: 0.4rem;
  display: flex;
  gap: 2px;
}

.badge-review .review-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

.badge-review .review-author {
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.badge-award {
  top: 15%;
  right: -5%;
  align-items: center;
  animation-delay: 2s;
}

.badge-award i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.badge-award span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  text-align: center;
}

.badge-experience {
  top: 45%;
  left: -12%;
  padding: 1.2rem;
  border-radius: var(--radius-round);
  width: 110px;
  height: 110px;
  justify-content: center;
  align-items: center;
  animation-delay: 4s;
}

.badge-experience .number {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-primary);
  font-weight: 600;
  text-transform: uppercase;
}

.badge-experience .label {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-align: center;
}

/* Background elements */
.hero-shape-1 {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: var(--radius-round);
  background: radial-gradient(circle, rgba(200, 162, 124, 0.15) 0%, rgba(250, 248, 245, 0) 70%);
  top: 10%;
  right: -5%;
  z-index: 1;
}

.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  z-index: 2;
  cursor: pointer;
}

.scroll-cue span {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-secondary);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background-color: rgba(21, 22, 22, 0.15);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 25px;
  background-color: var(--accent);
  animation: scroll-line-anim 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

/* ==========================================================================
   About Section
   ========================================================================== */
#about {
  background-color: var(--bg-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.about-media-composition {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 3rem 0;
}

.about-img-large {
  width: 70%;
  height: 520px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.about-img-small {
  width: 48%;
  height: 320px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  position: absolute;
  right: 5%;
  bottom: 0;
  z-index: 3;
  border: 8px solid var(--bg-primary);
}

.about-experience-stamp {
  position: absolute;
  top: -2%;
  left: 55%;
  background-color: var(--text-primary);
  color: var(--bg-primary);
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 4;
  text-align: center;
}

.about-experience-stamp .num {
  font-family: var(--font-primary);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  display: block;
}

.about-experience-stamp .label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

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

.about-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(21, 22, 22, 0.08);
}

.stat-item .stat-number {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.2rem;
}

.stat-item .stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-tertiary);
}

/* ==========================================================================
   Services Section (Featured + Asymmetric grid)
   ========================================================================== */
#services {
  background-color: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--spacing-lg);
  margin-top: 2rem;
}

/* Featured Service Card */
.service-card-featured {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  padding: var(--spacing-lg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card-featured::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 162, 124, 0.15) 0%, rgba(21, 22, 22, 0) 70%);
  border-radius: var(--radius-round);
  z-index: -1;
}

.service-card-featured .featured-tag {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  border: 1px solid rgba(200, 162, 124, 0.4);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 3rem;
}

.service-card-featured h3 {
  color: var(--bg-primary);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.service-card-featured p {
  color: rgba(250, 248, 245, 0.75);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.featured-benefits {
  list-style: none;
  margin-bottom: 3.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-sm);
}

.featured-benefits li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(250, 248, 245, 0.9);
}

.featured-benefits li i {
  color: var(--accent);
}

.service-card-featured .featured-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(250, 248, 245, 0.1);
  padding-top: 2rem;
}

.service-card-featured .price-info {
  display: flex;
  flex-direction: column;
}

.service-card-featured .price-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.service-card-featured .price-amount {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  line-height: 1;
}

/* Service Grid Right Side (asymmetrical) */
.services-list-grid {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.service-card-small {
  background-color: var(--bg-primary);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 1.8rem;
  transition: var(--transition-normal);
  border: 1px solid rgba(21, 22, 22, 0.02);
}

.service-card-small:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 162, 124, 0.2);
}

.service-icon-box {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-round);
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition-normal);
}

.service-card-small:hover .service-icon-box {
  background-color: var(--accent);
  color: var(--white);
}

.service-small-content h4 {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.service-small-content p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--text-secondary);
}

.service-small-price {
  text-align: right;
}

.service-small-price span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
}

.service-small-price .amt {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
#why {
  background-color: var(--bg-primary);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.why-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

.why-block {
  padding: 2.2rem;
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
}

.why-block:hover {
  transform: translateY(-5px);
  background-color: var(--bg-tertiary);
}

.why-block-icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
  display: inline-block;
}

.why-block h4 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.why-block p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: var(--text-secondary);
}

.why-media {
  position: relative;
  height: 520px;
}

.why-img {
  width: 90%;
  height: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.why-badge {
  position: absolute;
  bottom: 8%;
  right: 0;
  background-color: var(--text-primary);
  color: var(--bg-primary);
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  max-width: 250px;
}

.why-badge h4 {
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.why-badge p {
  font-size: 0.8rem;
  margin-bottom: 0;
  color: rgba(250, 248, 245, 0.7);
  line-height: 1.5;
}

/* ==========================================================================
   Gallery Section (Responsive Uniform Grid)
   ========================================================================== */
#gallery {
  background-color: var(--bg-primary);
  padding-bottom: var(--spacing-xl);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.gallery-item .img-wrapper {
  aspect-ratio: 4 / 3;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
}

.gallery-info-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(21, 22, 22, 0.8) 0%, rgba(21, 22, 22, 0) 60%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.2rem;
  transition: var(--transition-normal);
  z-index: 3;
  border-radius: var(--radius-xl);
}

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

.gallery-info-overlay h4 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
  transform: translateY(15px);
  transition: var(--transition-normal);
}

.gallery-info-overlay span {
  color: var(--accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transform: translateY(15px);
  transition: var(--transition-normal);
  transition-delay: 0.05s;
}

.gallery-item:hover .gallery-info-overlay h4,
.gallery-item:hover .gallery-info-overlay span {
  transform: translateY(0);
}

/* Custom Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(21, 22, 22, 0.98);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 80vh;
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xl);
}

.lightbox-caption {
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 1.8rem;
  text-align: center;
  margin-top: 1.5rem;
  letter-spacing: 0.05em;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--accent);
}

/* ==========================================================================
   Signature Services — Editorial Asymmetric Layout
   ========================================================================== */
.signature-section {
  background-color: var(--bg-secondary);
  overflow: hidden;
}

.sig-services-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

/* Each row is a flex row containing a large/wide card + a stack */
.sig-row {
  display: grid;
  gap: 1.5rem;
}

/* Row 1: Large card (7 cols) + stack of 2 (5 cols) */
.sig-row-1 {
  grid-template-columns: 7fr 5fr;
  align-items: stretch;
}

/* Row 2: Wide card (5 cols) + stack of 2 (7 cols) — reversed */
.sig-row-2 {
  grid-template-columns: 5fr 7fr;
  align-items: stretch;
}

.sig-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Base card */
.sig-card {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
  border: 1px solid rgba(21, 22, 22, 0.04);
  box-shadow: var(--shadow-sm);
}

.sig-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Large card: media on top, text below — tall photo */
.sig-card-large .sig-card-media {
  height: 380px;
  flex-shrink: 0;
  position: relative;
}

/* Wide card: horizontal split — image left, text right */
.sig-card-wide {
  flex-direction: row;
  min-height: 250px;
}

.sig-card-wide .sig-card-media {
  width: 45%;
  flex-shrink: 0;
}

.sig-card-wide .sig-card-body {
  padding: 2.5rem;
}

/* Medium stack cards: compact horizontal */
.sig-card-medium {
  flex-direction: row;
  flex: 1;
  min-height: 150px;
}

.sig-card-medium .sig-card-media {
  width: 38%;
  flex-shrink: 0;
}

/* Card body - shared base */
.sig-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 2rem;
  gap: 0.6rem;
}

.sig-card-medium .sig-card-body {
  padding: 1.5rem 1.8rem;
  gap: 0.4rem;
}

/* Shared media container */
.sig-card-media {
  position: relative;
  overflow: hidden;
}

.sig-card-media .img-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.sig-card-media .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.sig-card:hover .sig-card-media img {
  transform: scale(1.06);
}

/* Badge (Most Popular) */
.sig-card-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background-color: var(--accent);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-sm);
  z-index: 5;
}

/* Card body - specific layouts */
.sig-card-large .sig-card-body {
  padding: 2rem 2.2rem 2.2rem;
  gap: 0.7rem;
}

/* Category label */
.sig-service-category {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
}

/* Service title */
.sig-card-body h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0;
  line-height: 1.25;
}

/* Description */
.sig-card-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0;
}

/* CTA link (reuses btn-text styles) */
.sig-card-cta {
  margin-top: auto;
  padding-top: 0.5rem;
}

/* Medium card compacted h3 & p */
.sig-card-medium .sig-card-body h3 {
  font-size: 1.1rem;
}

.sig-card-medium .sig-card-body p {
  font-size: 0.82rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==========================================================================
   Testimonials Section — Premium Multi-Card Carousel
   ========================================================================== */
.testimonials-section {
  background-color: var(--bg-primary);
  overflow: hidden;
}

/* Split header: title left, badge + controls right */
.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.testimonials-header-left .section-title {
  margin-bottom: 0;
}

.testimonials-header-right {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-shrink: 0;
}

/* Google Review Trust Badge */
.google-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background-color: var(--white);
  border: 1px solid rgba(21, 22, 22, 0.07);
  border-radius: var(--radius-lg);
  padding: 0.7rem 1.2rem;
  box-shadow: var(--shadow-sm);
}

.google-badge-logo svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.google-badge-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.google-badge-stars {
  display: flex;
  gap: 2px;
  color: #FBBC05;
  font-size: 0.65rem;
}

.google-badge-rating {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  color: var(--text-primary);
  line-height: 1;
  font-weight: 500;
}

.google-badge-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
  font-weight: 500;
}

/* Prev / Next arrow buttons */
.testimonial-controls {
  display: flex;
  gap: 0.6rem;
}

.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-round);
  border: 1px solid rgba(21, 22, 22, 0.1);
  background-color: var(--white);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.testi-btn:hover {
  background-color: var(--text-primary);
  color: var(--white);
  border-color: var(--text-primary);
  transform: scale(1.05);
}

/* Track (the overflow hidden viewport) */
.testimonials-track-wrap {
  overflow: hidden;
  width: 100%;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Individual testimonial card */
.testi-card {
  background-color: var(--white);
  border: 1px solid rgba(21, 22, 22, 0.05);
  border-radius: var(--radius-xl);
  padding: 2.2rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
  /* Width set by JS based on visible count */
  flex-shrink: 0;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

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

/* Stars + Google icon row */
.testi-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testi-stars {
  display: flex;
  gap: 3px;
  color: #FBBC05;
  font-size: 0.85rem;
}

.testi-source-icon svg {
  width: 20px;
  height: 20px;
  opacity: 0.85;
}

/* Quote text */
.testi-quote {
  font-family: var(--font-primary);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.6;
  quotes: none;
  flex: 1;
}

/* Author section */
.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(21, 22, 22, 0.05);
}

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-round);
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--bg-secondary);
}

.testi-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testi-author-info strong {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.testi-author-info span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
}

/* Pagination dots */
.testi-pagination {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.8rem;
}

.testi-dot {
  width: 7px;
  height: 7px;
  border-radius: var(--radius-round);
  background-color: var(--bg-tertiary);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  padding: 0;
}

.testi-dot.active {
  background-color: var(--accent);
  transform: scale(1.4);
}

/* ==========================================================================
   FAQ Section (Accordion)
   ========================================================================== */
#faq {
  background-color: var(--bg-secondary);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-primary);
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(21, 22, 22, 0.01);
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(200, 162, 124, 0.15);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 2.2rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  min-height: 48px; /* Touch target safety */
}

.faq-question-btn h4 {
  font-family: var(--font-primary);
  font-size: 1.35rem;
  color: var(--text-primary);
  font-weight: 500;
  transition: var(--transition-fast);
}

.faq-question-btn:hover h4 {
  color: var(--accent);
}

.faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
}

.faq-icon span {
  position: absolute;
  background-color: var(--text-primary);
  transition: var(--transition-normal);
}

.faq-icon span:nth-child(1) {
  top: 7px;
  left: 0;
  width: 100%;
  height: 2px;
}

.faq-icon span:nth-child(2) {
  top: 0;
  left: 7px;
  width: 2px;
  height: 100%;
}

.faq-item.active .faq-icon span:nth-child(2) {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item.active .faq-icon span:nth-child(1) {
  transform: rotate(180deg);
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-content {
  padding: 0 2.2rem 1.8rem 2.2rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   Book Appointment Section
   ========================================================================== */
#booking {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  overflow: hidden;
}

#booking::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 450px;
  height: 450px;
  border-radius: var(--radius-round);
  background: radial-gradient(circle, rgba(200, 162, 124, 0.08) 0%, rgba(21, 22, 22, 0) 75%);
  z-index: 1;
}

#booking .section-title {
  color: var(--white);
}

.booking-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.booking-info-box h3 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.booking-info-box p {
  color: rgba(250, 248, 245, 0.7);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 500px;
}

.booking-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.booking-features li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.booking-features li i {
  font-size: 1.2rem;
  color: var(--accent);
  margin-top: 0.2rem;
}

.booking-features h5 {
  color: var(--white);
  font-size: 1.05rem;
  font-family: var(--font-secondary);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.booking-features p {
  font-size: 0.85rem;
  color: rgba(250, 248, 245, 0.55);
  margin-bottom: 0;
}

/* Booking Form Elements */
.booking-form-card {
  background-color: var(--white);
  padding: 3.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  color: var(--text-primary);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.form-group-full {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem 1.2rem;
  border: 1px solid rgba(21, 22, 22, 0.08);
  border-radius: var(--radius-sm);
  background-color: var(--bg-primary);
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: var(--transition-fast);
  min-height: 44px; /* Touch safety */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(200, 162, 124, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.booking-form-card .btn {
  width: 100%;
}

/* ==========================================================================
   Contact Section & Interactive Google Map Fallback Layout
   ========================================================================== */
#contact {
  background-color: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--spacing-lg);
  align-items: flex-start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-round);
  background-color: var(--bg-secondary);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-item h5 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-tertiary);
  margin-bottom: 0.4rem;
}

.contact-item p,
.contact-item a {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0;
  line-height: 1.4;
  min-height: 44px; /* Touch safety */
  display: inline-block;
}

.contact-item a:hover {
  color: var(--accent);
}

.opening-hours-list {
  list-style: none;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.opening-hours-list li {
  display: flex;
  justify-content: space-between;
  width: 280px;
  font-size: 0.95rem;
  border-bottom: 1px dashed rgba(21, 22, 22, 0.08);
  padding-bottom: 0.3rem;
}

.opening-hours-list .day {
  font-weight: 500;
  color: var(--text-primary);
}

.opening-hours-list .hours {
  color: var(--text-secondary);
}

/* Map visual styling */
.map-placeholder-box {
  position: relative;
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border: 1px solid rgba(21, 22, 22, 0.05);
}

.map-placeholder-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  border: 0;
  background-color: transparent;
}

.map-fallback-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 2rem;
  text-align: center;
  z-index: 1;
}

.map-fallback-overlay i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.map-fallback-overlay span {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  font-weight: 500;
}

.map-fallback-overlay p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.contact-form-box {
  background-color: var(--bg-secondary);
  padding: 3.5rem;
  border-radius: var(--radius-xl);
}

.contact-form-box h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.contact-form-box p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 2.2rem;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
footer {
  background-color: #0F1010; /* Extra dark obsidian */
  color: #929598;
  padding: var(--spacing-xl) 0 3rem 0;
  font-size: 0.9rem;
  border-top: 1px solid rgba(250, 248, 245, 0.03);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid rgba(250, 248, 245, 0.06);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-round);
  background-color: rgba(250, 248, 245, 0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  min-height: 44px; /* Touch target safety */
}

.footer-socials a:hover {
  background-color: var(--accent);
  color: var(--text-primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.8rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-links a {
  color: #929598;
  font-size: 0.9rem;
  display: inline-block;
  min-height: 36px; /* Touch target safety for mobile list spacing */
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Newsletter form */
.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(250, 248, 245, 0.08);
  background-color: rgba(250, 248, 245, 0.03);
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  min-height: 44px;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
  background-color: rgba(250, 248, 245, 0.05);
}

.newsletter-form .btn {
  padding: 0.9rem 1.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #626466;
}

.footer-bottom a {
  color: #626466;
  border-bottom: 1px solid transparent;
  transition: var(--transition-fast);
  display: inline-block;
  min-height: 32px;
}

.footer-bottom a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.footer-designer {
  text-align: right;
}

.footer-designer a {
  color: var(--accent);
  font-weight: 500;
}

/* ==========================================================================
   Animations & Transitions Keyframes
   ========================================================================== */
@keyframes float-badge {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-12px);
  }
}

@keyframes scroll-line-anim {
  0% {
    top: -25px;
  }
  50% {
    top: 50px;
  }
  100% {
    top: 50px;
  }
}

/* Scroll reveal helper classes */
.reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.25s; }
.delay-3 { transition-delay: 0.4s; }
.delay-4 { transition-delay: 0.55s; }

/* Responsive Media Queries */
@media (max-width: 1366px) {
  .nav-menu {
    gap: 1.2rem;
  }
  .nav-link {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 1200px) {
  :root {
    --spacing-xl: 5rem;
    --section-padding: 6rem 0;
  }
  
  .nav-menu {
    gap: 0.8rem;
  }
  
  .logo {
    font-size: 1.3rem;
  }
  
  .about-grid {
    gap: var(--spacing-lg);
  }
  
  .footer-top {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: var(--spacing-sm);
  }
}

@media (max-width: 991px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --section-padding: 5rem 0;
  }
  
  /* Header adjustments for drawer navigation below 992px */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: rgba(250, 248, 245, 0.96);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: var(--shadow-xl);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
    z-index: 101;
    transition: var(--transition-normal);
    border-left: 1px solid rgba(21, 22, 22, 0.06);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  header {
    height: 70px !important;
    background-color: rgba(250, 248, 245, 0.98) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(21, 22, 22, 0.05) !important;
    box-shadow: var(--shadow-sm) !important;
    display: flex !important;
    align-items: center !important;
  }

  .nav-container {
    height: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .logo {
    font-size: clamp(0.95rem, 4.5vw, 1.2rem) !important;
    max-width: 220px !important;
    flex: 0 1 auto !important;
    white-space: normal !important;
    line-height: 1.2 !important;
  }

  .hamburger {
    display: block !important;
    margin-left: auto !important;
  }
  
  .nav-cta {
    display: none !important; /* Hide header CTA button on mobile completely */
  }
  
  /* Layout shifts */
  #hero {
    height: auto !important;
    min-height: auto !important;
    padding-top: calc(70px + 3rem) !important; /* Fixed offset spacing for mobile header */
    padding-bottom: 4rem !important;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
    padding-top: 0 !important; /* Spacer is handled by #hero padding-top */
  }
  
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-media {
    height: 60vh;
    min-height: 400px;
  }
  
  .hero-img-main {
    width: 65%;
    height: 95%;
  }
  
  .badge-review { left: 5%; }
  .badge-award { right: 5%; }
  .badge-experience { left: -2%; }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .about-media-composition {
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
  
  .about-img-large {
    width: 80%;
  }
  
  .about-img-small {
    width: 45%;
    bottom: -20px;
    right: 0px;
  }
  
  .about-experience-stamp {
    left: 10%;
    top: 0;
  }
  
  .about-content {
    padding-left: 0;
    text-align: center;
  }
  
  .about-stats {
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .why-media {
    height: 400px;
    display: flex;
    justify-content: center;
  }
  
  .why-img {
    width: 100%;
  }
  
  .why-badge {
    right: 5%;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  
  .booking-wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .booking-info-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .booking-features {
    text-align: left;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  /* Signature Services — tablet: both rows stack to single column */
  .sig-row-1,
  .sig-row-2 {
    grid-template-columns: 1fr;
  }
  
  .sig-card-wide {
    flex-direction: column;
  }
  
  .sig-card-wide .sig-card-media {
    width: 100%;
    height: 220px;
  }
  
  .sig-card-wide .sig-card-body {
    padding: 1.8rem 2rem;
  }
  
  /* Testimonials — tablet: show 2 cards */
  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }
}

@media (max-width: 768px) {

  
  /* Signature Services — mobile: single column, vertical cards */
  .sig-card-medium {
    flex-direction: column;
    min-height: auto;
  }
  
  .sig-card-medium .sig-card-media {
    width: 100%;
    height: 180px;
  }
  
  .sig-card-medium .sig-card-body {
    padding: 1.2rem 1.4rem;
  }
  
  /* Testimonials — mobile controls */
  .testimonials-header-right {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .google-badge {
    padding: 0.5rem 0.9rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .form-group-full {
    grid-column: span 1;
  }
  
  .contact-form-box {
    padding: 2.2rem;
  }
  
  .booking-form-card {
    padding: 2.2rem;
  }
}

@media (max-width: 576px) {
  :root {
    --spacing-md: 1.5rem;
    --section-padding: 4rem 0;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .hero-media {
    height: 50vh;
    min-height: 320px;
  }
  
  .hero-img-main {
    width: 80%;
  }
  
  .badge-experience {
    display: none; /* Hide experience circle badge on small screens */
  }
  
  .badge-review {
    left: 0;
    padding: 1rem;
  }
  
  .badge-award {
    right: 0;
    padding: 1rem;
  }
  
  .about-experience-stamp {
    position: static;
    margin: 0 auto 1.5rem auto;
    max-width: 200px;
  }
  
  .about-img-small {
    display: none; /* Hide small overlapping image on extremely small viewports */
  }
  
  .about-img-large {
    width: 100%;
    height: 350px;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .why-blocks {
    grid-template-columns: 1fr;
  }
  
  .service-card-featured {
    padding: 2rem;
  }
  
  .featured-benefits {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
  
  .service-card-small {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
    padding: 1.8rem;
  }
  
  .service-icon-box {
    margin: 0 auto;
  }
  
  .service-small-price {
    text-align: center;
  }
  
  .why-badge {
    position: static;
    margin-top: 1.5rem;
    max-width: 100%;
  }
  
  .faq-question-btn {
    padding: 1.5rem 1.8rem;
  }
  
  .faq-answer-content {
    padding: 0 1.8rem 1.5rem 1.8rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-designer {
    text-align: center;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  /* Additional Premium Mobile Optimizations */
  .nav-menu .nav-link {
    font-size: 1.15rem;
    padding: 0.8rem 2rem;
    display: inline-block;
    letter-spacing: 0.15em;
  }
  
  @media (max-width: 480px) {
    .badge {
      display: none !important;
    }
    
    .hero-ctas {
      flex-direction: column;
      width: 100%;
      gap: 0.8rem;
    }
    
    .hero-ctas .btn {
      width: 100%;
    }
  }
}
