/* ===== CSS Variables ===== */
:root {
  --color-primary: #1a4d5c;
  --color-primary-light: #2a6a7c;
  --color-accent: #c9a86c;
  --color-accent-light: #dfc69a;
  --color-background: #ffffff;
  --color-background-alt: #f8fafb;
  --color-text: #1a1a2e;
  --color-text-light: #6b7280;
  --color-border: #e5e7eb;
  --color-whatsapp: #25d366;
  --color-instagram: #e4405f;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  --transition: 0.3s ease;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent !important;
}

a,
button,
input,
select,
textarea,
div {
  -webkit-tap-highlight-color: transparent !important;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--color-text-light);
  max-width: 600px;
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: white;
}

.btn-whatsapp:hover {
  background-color: #1da851;
  transform: translateY(-2px);
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 1rem);
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.18);
  z-index: 1000;
  transition: all var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
}

@media (min-width: 768px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .nav-brand {
    font-size: 1.375rem;
  }
}

.navbar.scrolled .nav-brand {
  color: var(--color-primary);
  text-shadow: none;
}

.nav-social {
  display: none;
  align-items: center;
  gap: 0.75rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  transition: all var(--transition);
}

.nav-social a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.25);
}

.navbar.scrolled .nav-social a {
  color: var(--color-text-light);
  background: var(--color-background-alt);
}

.navbar.scrolled .nav-social a:hover {
  color: var(--color-primary);
  background: var(--color-background-alt);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  transition: color var(--transition);
}

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

.nav-link:hover,
.nav-link.active {
  color: white;
}

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

.navbar.scrolled .nav-link {
  color: var(--color-text-light);
}

.navbar.scrolled .nav-link::after {
  background-color: var(--color-primary);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--color-primary);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.625rem;
  z-index: 1001;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  transition: all var(--transition);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background-color: white;
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar.scrolled .nav-toggle {
  background: var(--color-background-alt);
}

.navbar.scrolled .nav-toggle span {
  background-color: var(--color-text);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Custom dark text for light background navbars (like blog page) */
.navbar-dark-text:not(.scrolled) .nav-brand {
  color: var(--color-primary);
  text-shadow: none;
}

.navbar-dark-text:not(.scrolled) .nav-social a {
  color: var(--color-primary);
  background: var(--color-background-alt);
}

.navbar-dark-text:not(.scrolled) .nav-link {
  color: var(--color-text-light);
}

.navbar-dark-text:not(.scrolled) .nav-link:hover,
.navbar-dark-text:not(.scrolled) .nav-link.active {
  color: var(--color-primary);
}

.navbar-dark-text:not(.scrolled) .nav-link::after {
  background-color: var(--color-primary);
}

.navbar-dark-text:not(.scrolled) .nav-toggle {
  background: var(--color-background-alt);
}

.navbar-dark-text:not(.scrolled) .nav-toggle span {
  background-color: var(--color-text);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  text-align: center;
  transform: translateY(20px);
  transition: transform var(--transition);
}

.mobile-menu.active .mobile-menu-content {
  transform: translateY(0);
}

.mobile-link {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 0.75rem;
  transition: color var(--transition);
}

.mobile-link:hover {
  color: var(--color-primary);
}

.mobile-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.mobile-social a {
  color: var(--color-text-light);
  transition: color var(--transition);
}

.mobile-social a:hover {
  color: var(--color-primary);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(26, 77, 92, 0.5) 0%,
      rgba(26, 77, 92, 0.25) 50%,
      rgba(26, 77, 92, 0.50) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 5rem 1.25rem 3rem;
  max-width: 900px;
}

.hero-title {
  font-size: clamp(2.75rem, 10vw, 5.5rem);
  font-weight: 900;
  color: white;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1.0625rem, 2.5vw, 1.375rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 480px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* Hero Button Styles - Poppy & Modern */
.hero .btn-primary {
  background: white;
  color: var(--color-primary);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero .btn-primary:hover {
  background: white;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 1);
  transform: translateY(-3px);
}

/* Slide indicators */
.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.hero-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition);
}

.hero-indicator.active {
  background: white;
  transform: scale(1.2);
}

.hero-indicator:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* ===== About Section ===== */
.about {
  padding: 5rem 0;
  background-color: var(--color-background);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

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

.about-intro {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.about-achievements {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.achievement {
  text-align: center;
}

.achievement-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-primary);
}

.achievement-label {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-credentials li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

.about-credentials li::before {
  content: '•';
  color: var(--color-primary);
  font-weight: 900;
  flex-shrink: 0;
}

/* ===== Before & After Section ===== */
.transformations {
  padding: 5rem 0;
  background-color: var(--color-background-alt);
}

.transformations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.transformation-card {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

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

.transformation-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: ew-resize;
}

.transformation-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.transformation-slider .before-img {
  z-index: 1;
  clip-path: inset(0 50% 0 0);
}

.transformation-slider .after-img {
  z-index: 0;
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: white;
  z-index: 3;
  cursor: ew-resize;
}

.slider-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.slider-handle::after {
  content: '◀ ▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  color: var(--color-primary);
  letter-spacing: 2px;
  white-space: nowrap;
  z-index: 4;
}

.transformation-labels {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  z-index: 2;
  pointer-events: none;
}

.transformation-label {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

.transformation-info {
  padding: 1.25rem;
}

.transformation-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.transformation-treatment {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* ===== Services Section ===== */
.services {
  padding: 5rem 0;
  background-color: var(--color-background);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

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

.service-card.featured {
  border-color: var(--color-primary);
  background: linear-gradient(to bottom right, white, #f0f7f9);
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--color-accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-background-alt);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

.service-card.featured .service-icon {
  background-color: var(--color-primary);
  color: white;
}

.service-title {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.service-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-primary);
  transition: color var(--transition);
}

.service-link:hover {
  color: var(--color-primary-light);
}

/* ===== FAQ Section ===== */
.faq {
  padding: 5rem 0;
  background-color: var(--color-background);
}

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

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 1.0625rem;
  font-weight: 500;
  text-align: left;
  color: var(--color-text);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--color-text-light);
  transition: transform var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ===== Appointment Section ===== */
.appointment {
  padding: 5rem 0;
  background-color: var(--color-background-alt);
}

.appointment-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.appointment-content {
  text-align: center;
}

.appointment-desc {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.appointment-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* .appointment-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}


.appointment-buttons .btn {
  width: 100%;
  max-width: 280px;
  text-align: center;
}
@media (min-width: 640px) {
  .appointment-buttons {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap; /* important */
/* } */
/* 
  .appointment-buttons .btn {
    width: auto;
    min-width: 180px;
  }
/* } */

.appointment-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-item svg {
  flex-shrink: 0;
  color: var(--color-primary);
  margin-top: 0.25rem;
}

.info-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.info-item p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

/* ===== Contact Form Section ===== */
.contact-form-section {
  position: relative;
  padding: 5rem 0 6rem;
  background-color: var(--color-background);
  overflow: hidden;
}

/* Decorative background blobs */
.cf-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.cf-blob-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(26,77,92,0.08) 0%, transparent 70%);
  top: -80px;
  left: -120px;
}

.cf-blob-2 {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(201,168,108,0.1) 0%, transparent 70%);
  bottom: -60px;
  right: -80px;
}

/* Accent hairline under heading */
.cf-accent-rule {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 2px;
  margin: 0.75rem auto 1.25rem;
}

/* Trust badge pills */
.cf-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.cf-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-primary);
  background: rgba(26, 77, 92, 0.07);
  border: 1px solid rgba(26, 77, 92, 0.15);
  border-radius: 50px;
  letter-spacing: 0.02em;
}

.cf-badge svg {
  flex-shrink: 0;
  opacity: 0.8;
}

.form-submit-row {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding-top: 0.5rem;
}

.contact-form-wrapper {
  /* legacy — no longer used as a card */
  max-width: unset;
}

/* Two-column layout */
.cf-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .cf-layout {
    grid-template-columns: 38% 1fr;
    gap: 3rem;
  }
}

/* Left info panel */
.cf-info-panel {
  padding: 0.5rem 0;
}

.cf-info-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.cf-info-subtitle {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.cf-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cf-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cf-info-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(26, 77, 92, 0.08);
  border: 1px solid rgba(26, 77, 92, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-top: 0.1rem;
}

.cf-info-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.cf-info-item p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.55;
}

/* Right form card */
.cf-form-panel {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.contact-form-section .section-title {
  font-size: clamp(3rem, 8.5vw, 10rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.form-input {
  width: 100%;
  padding: 0.875rem 1.125rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-background-alt);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder {
  color: #b0b8c1;
}

.form-input:focus {
  border-color: var(--color-primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(26, 77, 92, 0.1);
}

.form-input.error {
  border-color: #e05353;
  box-shadow: 0 0 0 3px rgba(224, 83, 83, 0.1);
}

.form-textarea {
  resize: none;
  min-height: 130px;
  line-height: 1.6;
}

/* Required field asterisk */
.form-required {
  color: var(--color-primary);
  margin-left: 0.15rem;
}

/* Select dropdown */
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  -webkit-appearance: none;
  appearance: none;
}

.btn-form-submit {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem 2.25rem;
  background-color: var(--color-primary);
  color: white;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-form-submit:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 77, 92, 0.25);
}

.btn-form-submit:active {
  transform: translateY(0);
}

.btn-form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.form-success-msg {
  font-size: 0.9375rem;
  color: var(--color-primary);
  font-weight: 500;
  min-height: 1.5rem;
  text-align: center;
  transition: opacity 0.3s ease;
}

/* ===== Instagram Profile Section ===== */
.instagram-profile {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 1.5rem;
}

.instagram-profile-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.instagram-profile-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

.instagram-profile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(26, 77, 92, 0.85) 0%,
      rgba(26, 77, 92, 0.7) 50%,
      rgba(201, 168, 108, 0.6) 100%);
  z-index: 1;
}

.instagram-profile-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.instagram-profile-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem 1.5rem;
  width: 100%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: slideUp 0.8s ease-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-profile-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.35);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile-avatar {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 1.25rem;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.profile-avatar-ring {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  z-index: -1;
  animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

.profile-info {
  text-align: center;
}

.profile-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.profile-username {
  font-family: var(--font-body);
  font-size: 1.375rem;
  font-weight: 600;
  color: white;
  letter-spacing: -0.02em;
}

.profile-verified {
  color: #3897f0;
  display: flex;
  align-items: center;
  animation: verifiedBounce 2s ease-in-out infinite;
}

@keyframes verifiedBounce {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

.profile-name {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.profile-bio {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.25rem;
}

.profile-bio-detail {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.25rem;
}

.profile-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.profile-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.profile-follow-btn {
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(225, 48, 108, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-follow-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(225, 48, 108, 0.5);
}

/* Highlights */
.instagram-profile-highlights {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  animation: slideUp 0.8s ease-out 0.2s backwards;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.highlight-item:hover {
  transform: scale(1.08);
}

.highlight-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.highlight-item:hover .highlight-circle {
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

.highlight-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(26, 77, 92, 0.9);
}

.highlight-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Instagram Profile Responsive */
@media (min-width: 480px) {
  .instagram-profile {
    padding: 5rem 2rem;
  }

  .instagram-profile-card {
    padding: 2.5rem 2rem;
  }

  .profile-avatar {
    width: 120px;
    height: 120px;
  }

  .profile-username {
    font-size: 1.5rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .highlight-circle {
    width: 72px;
    height: 72px;
  }

  .instagram-profile-highlights {
    gap: 1.5rem;
  }
}

@media (min-width: 768px) {
  .instagram-profile {
    min-height: 90vh;
    padding: 6rem 2rem;
  }

  .instagram-profile-content {
    max-width: 500px;
  }

  .instagram-profile-card {
    padding: 3rem 2.5rem;
  }

  .profile-avatar {
    width: 130px;
    height: 130px;
  }

  .profile-stats {
    gap: 3rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .highlight-circle {
    width: 80px;
    height: 80px;
  }

  .instagram-profile-highlights {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .instagram-profile {
    min-height: 100vh;
    padding: 7rem 2rem;
  }

  .instagram-profile-content {
    max-width: 550px;
  }

  .profile-avatar {
    width: 140px;
    height: 140px;
  }
}


/* ===== Map Section ===== */
.map-section {
  padding: 4rem 0;
  background-color: var(--color-background);
}

.map-section .section-header {
  margin-bottom: 2rem;
}

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

.map-wrapper iframe {
  width: 100%;
  height: 350px;
  display: block;
  filter: grayscale(20%) contrast(1.05);
  transition: filter var(--transition);
}

.map-wrapper:hover iframe {
  filter: grayscale(0%) contrast(1);
}

.map-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-width: 280px;
}

.map-overlay-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.map-overlay-address {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.map-overlay-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-top: 0.75rem;
  transition: color var(--transition);
}

.map-overlay-link:hover {
  color: var(--color-primary-light);
}

/* ===== Footer ===== */
.footer {
  background-color: var(--color-text);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}

.footer-tagline {
  font-size: 0.9375rem;
  margin-top: 0.75rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all var(--transition);
}

.footer-social a:hover {
  background-color: var(--color-primary);
  color: white;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  margin-bottom: 1.25rem;
}

.footer-links a {
  display: block;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.375rem 0;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: white;
}

.footer-contact p {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

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

/* ===== Media Queries ===== */

/* Tablet */
@media (min-width: 640px) {
  .appointment-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .appointment-info {
    flex-direction: row;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 768px) {
  .navbar {
    width: calc(100% - 2rem);
    top: 1rem;
  }

  .nav-social {
    display: flex;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .transformations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-wrapper iframe {
    height: 400px;
  }

  .about-grid {
    grid-template-columns: 1fr 1.2fr;
  }

  .appointment-card {
    grid-template-columns: 1.5fr 1fr;
    padding: 4rem;
  }

  .appointment-content {
    text-align: left;
  }

  .appointment-buttons {
    justify-content: flex-start;
  }

  .appointment-info {
    flex-direction: column;
    padding-top: 0;
    padding-left: 2.5rem;
    border-top: none;
    border-left: 1px solid var(--color-border);
  }

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

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

  .nav-links {
    display: flex;
  }

  .hero-content {
    padding: 6rem 2rem 5rem;
  }

  .about {
    padding: 6rem 0;
  }

  .transformations {
    padding: 6rem 0;
  }

  .transformations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services {
    padding: 6rem 0;
  }

  .faq {
    padding: 6rem 0;
  }

  .appointment {
    padding: 6rem 0;
  }

  .map-section {
    padding: 5rem 0;
  }

  .map-wrapper iframe {
    height: 450px;
  }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

/* ===== Utility Classes ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}