/* ==========================================================================
   COLOR CRUSH STUDIO - VIBRANT LIGHT LUXURY SALON STYLE
   ========================================================================== */

/* --- CSS VARIABLES & TOKENS (Inspired by Snabbit + Luxury Salon) --- */
:root {
  /* Colors from snabbit.com */
  --bg-primary: #ffffff;         /* Pure white */
  --bg-secondary: #FFF0F6;       /* Snabbit soft highlight pink */
  --bg-tertiary: #FFF9FC;        /* Softer pink-water tint */
  --text-primary: #0F1117;       /* Snabbit rich dark charcoal */
  --text-secondary: #4B5563;     /* Snabbit elegant body grey */
  --text-muted: #9CA3AF;         /* Muted grey */
  
  /* Brand Accents */
  --brand-primary: #F70F79;      /* Snabbit signature vibrant magenta/hot pink */
  --brand-secondary: #3B2EA3;    /* Snabbit deep royal blue/indigo */
  --pink-border: #FFADD8;        /* Snabbit soft pink border */
  --pink-glow: rgba(247, 15, 121, 0.08);
  
  /* Luxury Highlights */
  --gold-primary: #c59f60;       /* Champagne gold accent */
  --gold-dark: #a27f42;
  --gold-light: #dfba82;
  --rose-gold: #dca3a0;
  
  /* UI Elements */
  --border-light: rgba(247, 15, 121, 0.1);
  --border-gold: rgba(197, 159, 96, 0.25);
  --glass-bg: rgba(255, 255, 255, 0.9);
  
  /* Typography */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* --- RESET & BASIC STYLES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.68;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 0.03em;
  color: var(--text-primary);
}

.serif {
  font-family: var(--font-serif);
  font-style: italic;
}

.gold-text {
  color: var(--brand-primary); /* Use brand primary for header colors */
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

p {
  color: var(--text-secondary);
  font-weight: 300;
  font-size: 1.05rem;
}

strong {
  font-weight: 600;
  color: var(--text-primary);
}

/* --- UTILITY CLASSES --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.text-center { text-align: center; }
.bold { font-weight: 600; }
.section-subtitle {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 0.85rem;
  font-weight: 600;
  color: var(--brand-primary);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.section-desc {
  max-width: 600px;
  margin: 0 auto 3.5rem;
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-weight: 300;
}

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

.gap-small {
  gap: 1.5rem;
}

/* --- BUTTONS (Snabbit pill shaped with vibrant magenta glow) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--brand-primary);
  color: #ffffff;
  border: 1px solid var(--brand-primary);
  box-shadow: 0 4px 15px rgba(247, 15, 121, 0.25);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--brand-primary);
  box-shadow: 0 4px 20px rgba(247, 15, 121, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--text-primary);
  border: 1px solid var(--pink-border);
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.btn-secondary:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--brand-primary);
  border: 1px solid var(--pink-border);
}

.btn-outline:hover {
  background-color: var(--brand-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.75rem;
}

/* --- ANNOUNCEMENT BAR --- */
.announcement-bar {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--pink-border);
  text-align: center;
  padding: 0.6rem 10px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  font-weight: 500;
}

.announcement-bar a {
  color: var(--brand-primary);
  text-decoration: underline;
  font-weight: 600;
}

/* --- MAIN HEADER --- */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(247, 15, 121, 0.08);
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 5%;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.45em;
  color: var(--brand-primary);
  margin-top: -2px;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  font-weight: 500;
}

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

.nav-btn {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  border: 1px solid var(--brand-primary);
  border-radius: 50px;
  padding: 0.55rem 1.4rem;
  color: var(--brand-primary);
}

.nav-btn:hover {
  background-color: var(--brand-primary);
  color: #ffffff;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu-btn .bar {
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-fast);
}

/* --- HERO SECTION (Highly visible image background, soft elements) --- */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 4rem 5%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transform: scale(1);
  transition: transform 8s ease-out;
}

.hero-content {
  max-width: 650px;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.65); /* Soft backing for perfect typography contrast */
  padding: 2.5rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  font-weight: 300;
  line-height: 1.15;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  font-style: italic;
}

.hero-desc {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 520px;
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  z-index: 10;
}

.mouse-icon {
  width: 18px;
  height: 28px;
  border: 1.5px solid var(--text-muted);
  border-radius: 15px;
  position: relative;
}

.mouse-icon .wheel {
  width: 3px;
  height: 5px;
  background-color: var(--brand-primary);
  border-radius: 2px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 1.6s infinite;
}

@keyframes scroll-wheel {
  0% { top: 4px; opacity: 1; }
  100% { top: 14px; opacity: 0; }
}

/* --- HIGHLIGHTS SECTION --- */
.highlights-section {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--pink-border);
  padding: 4rem 0;
}

.highlights-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.highlight-item {
  text-align: center;
}

.highlight-icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  color: var(--brand-primary);
}

.highlight-item h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.highlight-item p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 280px;
  margin: 0 auto;
}

/* --- ABOUT SECTION --- */
.about-section {
  padding: 8rem 0;
  background-color: var(--bg-primary);
}

.about-image-wrapper {
  position: relative;
  padding: 20px;
}

.luxury-border-frame {
  position: absolute;
  top: 0;
  left: 0;
  right: 40px;
  bottom: 40px;
  border: 1px solid var(--pink-border);
  border-radius: 12px;
  z-index: 1;
}

.about-img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(247, 15, 121, 0.04);
}

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

.about-text {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 2.5rem 0;
}

.feature-tag {
  font-size: 0.95rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-tag i {
  color: var(--brand-primary);
}

/* --- SERVICES SECTION --- */
.services-section {
  padding: 8rem 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--pink-border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--pink-border);
  overflow: hidden;
  border-radius: 16px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(247, 15, 121, 0.02);
}

.service-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(247, 15, 121, 0.08);
}

.service-img-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

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

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-info {
  padding: 1.8rem;
  text-align: left;
}

.service-info h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}

.service-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  min-height: 70px;
}

.service-accent {
  display: block;
  font-size: 0.9rem;
  font-style: italic;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
  color: var(--brand-primary);
}

/* --- TESTIMONIAL SECTION --- */
.testimonial-section {
  padding: 8rem 0;
  background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('images/testimonial-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-top: 1px solid var(--pink-border);
}

.testimonial-carousel-container {
  max-width: 800px;
  margin: 2rem auto 0;
}

.testimonial-card {
  padding: 3rem;
  background-color: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--pink-border);
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(247, 15, 121, 0.03);
}

.quote-icon {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--brand-primary);
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.stars {
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  display: flex;
  justify-content: center;
  gap: 5px;
  color: var(--brand-primary);
}

.testimonial-author {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  font-weight: 600;
  color: var(--text-primary);
}

/* --- GALLERY SECTION --- */
.gallery-section {
  padding: 8rem 0;
  background-color: var(--bg-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.gallery-item {
  position: relative;
  height: 350px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--pink-border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.gallery-overlay span {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-style: italic;
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay span {
  transform: scale(1);
}

/* --- BOOKING SECTION --- */
.booking-section {
  padding: 8rem 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--pink-border);
  border-bottom: 1px solid var(--pink-border);
}

.booking-info .booking-desc {
  font-size: 1.05rem;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
  color: var(--text-secondary);
}

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

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

.icon-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  border: 1px solid var(--pink-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--brand-primary);
  flex-shrink: 0;
}

.contact-detail-item h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
  color: var(--text-primary);
}

.contact-detail-item p, .contact-detail-item a {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.hover-gold:hover {
  color: var(--brand-primary);
}

.booking-form-wrapper {
  background-color: var(--bg-primary);
  border: 1px solid var(--pink-border);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(247, 15, 121, 0.02);
}

.form-title {
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  color: var(--text-primary);
}

.form-group {
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-group input, .form-group select, .form-group textarea {
  background-color: var(--bg-secondary);
  border: 1px solid var(--pink-border);
  padding: 0.9rem 1.2rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 8px rgba(247, 15, 121, 0.1);
}

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

.form-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.form-note a {
  color: var(--brand-primary);
}

/* --- BLOG SECTION --- */
.blog-section {
  padding: 8rem 0;
  background-color: var(--bg-primary);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.blog-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--pink-border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-primary);
  box-shadow: 0 10px 30px rgba(247, 15, 121, 0.03);
}

.blog-img-container {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

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

.blog-date {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background-color: var(--brand-primary);
  color: #ffffff;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 50px;
}

.blog-body {
  padding: 2.2rem;
}

.blog-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1rem;
  min-height: 75px;
  color: var(--text-primary);
}

.blog-excerpt {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  min-height: 80px;
  font-weight: 300;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.2rem;
}

.blog-meta span {
  color: var(--text-muted);
}

.read-more-link {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--brand-primary);
}

/* --- FAQ SECTION --- */
.faq-section {
  padding: 8rem 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--pink-border);
}

.faq-accordion {
  max-width: 800px;
  margin: 3.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  border: 1px solid var(--pink-border);
  background-color: var(--bg-primary);
  border-radius: 12px;
  transition: var(--transition-fast);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1.08rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 0.9rem;
  color: var(--brand-primary);
  transition: transform 0.4s ease;
}

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

.faq-answer p {
  padding: 0 2rem 1.8rem;
  font-size: 0.98rem;
  color: var(--text-secondary);
  font-weight: 300;
}

/* Active FAQ Item styling (for JS) */
.faq-item.active {
  border-color: var(--brand-primary);
}

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

/* --- NEWSLETTER SECTION --- */
.newsletter-section {
  padding: 8rem 0;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('images/testimonial-bg.jpg');
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--pink-border);
}

.newsletter-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 4.5rem 3rem;
  border: 1px solid var(--pink-border);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(247, 15, 121, 0.02);
}

.newsletter-box h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-style: italic;
}

.newsletter-box p {
  max-width: 550px;
  margin: 0 auto 2.5rem;
  color: var(--text-secondary);
}

.newsletter-form-ui {
  display: flex;
  max-width: 550px;
  margin: 0 auto;
  gap: 10px;
}

.newsletter-form-ui input {
  flex-grow: 1;
  background-color: var(--bg-secondary);
  border: 1px solid var(--pink-border);
  padding: 0.9rem 1.5rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  border-radius: 50px;
}

.newsletter-form-ui input:focus {
  outline: none;
  border-color: var(--brand-primary);
}

.newsletter-form-ui .btn {
  border-radius: 50px;
}

.newsletter-message {
  margin-top: 1.2rem;
  font-size: 0.95rem;
}

/* --- MAPS SECTION --- */
.maps-section {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--pink-border);
  padding-top: 5rem;
}

.maps-title-container {
  margin-bottom: 2.5rem;
}

.maps-title-container span {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-primary);
}

.address-text {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: var(--text-secondary);
}

.map-container {
  border-top: 2px solid var(--brand-primary);
  height: 450px;
  overflow: hidden;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.01);
}

.map-container iframe {
  filter: none;
}

/* --- MAIN FOOTER --- */
.main-footer {
  background-color: #FFF9FC;
  border-top: 1px solid var(--pink-border);
  padding: 6rem 0 0;
  color: var(--text-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-col h3 {
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  font-weight: 300;
  color: var(--brand-primary);
}

.footer-col h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  color: var(--brand-primary);
  font-weight: 600;
}

.brand-col p {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.social-icons {
  display: flex;
  gap: 1.2rem;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--pink-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  font-size: 1.05rem;
  background-color: #ffffff;
}

.social-icons a:hover {
  border-color: var(--brand-primary);
  color: #ffffff;
  background-color: var(--brand-primary);
  box-shadow: 0 0 10px rgba(247, 15, 121, 0.15);
  transform: translateY(-3px);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-col ul li {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.footer-col ul li a:hover {
  color: var(--brand-primary);
  padding-left: 5px;
}

.contact-col p {
  display: flex;
  gap: 12px;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.contact-col p i {
  margin-top: 4px;
  color: var(--brand-primary);
}

.footer-bottom {
  border-top: 1px solid var(--pink-border);
  padding: 2.2rem 0;
  background-color: #FFF0F6;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.policy-links {
  display: flex;
  gap: 2rem;
}

.policy-links a:hover {
  color: var(--brand-primary);
}

.author-credits {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- MOBILE NAVIGATION --- */
.main-header.scrolled {
  padding: 0.7rem 5%;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(247, 15, 121, 0.02);
}

/* --- ANIMATION REVEALS --- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE MEDIA QUERIES --- */

@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .hero-section {
    min-height: 80vh;
    padding-top: 6rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .highlights-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .about-image-wrapper {
    order: 2;
  }
  
  .about-content {
    order: 1;
  }
  
  .luxury-border-frame {
    right: 20px;
    bottom: 20px;
  }
  
  /* Menu styling for Mobile */
  .mobile-menu-btn {
    display: flex;
    z-index: 1100;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--bg-primary);
    border-left: 1px solid var(--border-light);
    padding: 7rem 3rem 3rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
  }
  
  .nav-menu ul li {
    width: 100%;
  }
  
  .nav-link {
    font-size: 1.1rem;
    display: block;
    width: 100%;
  }
  
  .nav-btn {
    display: block;
    text-align: center;
    width: 100%;
    font-size: 1rem;
    padding: 0.9rem;
  }
  
  /* Toggle Hamburger icon transformation */
  .mobile-menu-btn.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .mobile-menu-btn.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .newsletter-form-ui {
    flex-direction: column;
  }
}

@media (max-width: 580px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .booking-form-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .policy-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}
