/* 
 * VIZILTI Salon - Premium Scandinavian Editorial Design System
 * Inspired by Apple, Dyson, Aesop, and Scandinavian Interior Design
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
  /* Color Palette */
  --bg-primary: #FAFAF8;
  --bg-secondary: #F3F4F6;
  --accent-blue: #6F9FCB;
  --deep-blue: #3E6A91;
  --white: #FFFFFF;
  --dark-text: #222222;
  --light-grey: #D9D9D9;
  --card-bg: rgba(255, 255, 255, 0.70);
  --border-light: rgba(111, 159, 203, 0.15);
  
  /* Fonts */
  --font-heading: 'Playfair Display', serif;
  --font-serif-sub: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Manrope', sans-serif;
  
  /* Transitions & Radii */
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  
  /* Standard Shadows */
  --shadow-subtle: 0 4px 30px rgba(0, 0, 0, 0.03);
  --shadow-premium: 0 10px 40px rgba(62, 106, 145, 0.08);
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.04);
}

/* Reset & Global Rules */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-blue);
  border-radius: var(--radius-pill);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--deep-blue);
}

/* Selection Highlight */
::selection {
  background-color: rgba(111, 159, 203, 0.2);
  color: var(--dark-text);
}

/* Typography Utilities */
h1, h2, h3, h4, .font-serif-heading {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--dark-text);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

h2 span {
  font-family: var(--font-serif-sub);
  font-style: italic;
  font-weight: 300;
  color: var(--deep-blue);
}

p {
  color: #555555;
  font-weight: 300;
}

.subheading-tag {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--deep-blue);
  margin-bottom: 1rem;
  display: block;
}

/* Layout Utilities */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

.section-padding {
  padding: 7.5rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 5rem 0;
  }
}

/* Scroll Progress Indicator */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 10000;
}
.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(to right, var(--accent-blue), var(--deep-blue));
  width: 0%;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--deep-blue);
  color: var(--white);
  border: 1px solid var(--deep-blue);
}

.btn-primary:hover {
  background-color: var(--accent-blue);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(111, 159, 203, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: var(--dark-text);
  border: 1px solid var(--light-grey);
}

.btn-secondary:hover {
  background-color: var(--bg-secondary);
  border-color: var(--dark-text);
  transform: translateY(-2px);
}

.btn-text {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--deep-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  position: relative;
}

.btn-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: var(--deep-blue);
  transition: var(--transition-fast);
}

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

/* Glassmorphism Cards */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glass);
}

/* Sticky Navigation */
.header-nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 1.2rem 4rem;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition-smooth);
}

.header-nav-wrapper.scrolled .nav-container {
  background: rgba(250, 250, 248, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-premium);
  padding: 0.8rem 4rem;
}

@media (max-width: 768px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }
  .header-nav-wrapper.scrolled .nav-container {
    padding: 0.7rem 1.5rem;
  }
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: var(--transition-smooth);
}

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

.nav-menu a {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark-text);
  text-decoration: none;
  transition: var(--transition-fast);
}

.nav-menu a:hover {
  color: var(--deep-blue);
}

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

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  z-index: 1100;
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--dark-text);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-primary);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  padding: 6rem 2rem 2rem;
  overflow-y: auto;
  pointer-events: none;
  visibility: hidden;
}

.mobile-nav-overlay.active {
  right: 0;
  pointer-events: auto;
  visibility: visible;
}

/* Close button inside mobile overlay */
.mobile-close-btn {
  position: absolute;
  top: 1.4rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  color: var(--dark-text);
  line-height: 1;
  padding: 0.3rem 0.6rem;
  border-radius: 50%;
  transition: var(--transition-fast);
  z-index: 1100;
}

.mobile-close-btn:hover {
  color: var(--accent-blue);
  background: rgba(111,159,203,0.1);
}

.mobile-links {
  list-style: none;
  text-align: center;
  margin-bottom: 2rem;
  width: 100%;
}

.mobile-links li {
  margin: 1.2rem 0;
}

.mobile-links a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--dark-text);
  text-decoration: none;
  transition: var(--transition-fast);
  display: block;
  padding: 0.3rem 0;
}

.mobile-links a:hover {
  color: var(--accent-blue);
}

@media (max-width: 900px) {
  .nav-menu {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .logo img {
    height: 72px;
  }
}

/* Full Screen Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Soft white gradient overlay */
  background: linear-gradient(135deg, rgba(250, 250, 248, 0.90) 0%, rgba(250, 250, 248, 0.70) 50%, rgba(250, 250, 248, 0.95) 100%);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero-content {
  max-width: 750px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
}

.hero-tag {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--deep-blue);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--dark-text);
}

.hero-content h1 span {
  font-family: var(--font-serif-sub);
  font-style: italic;
  font-weight: 300;
  color: var(--deep-blue);
  display: block;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: #444444;
  margin-bottom: 3rem;
  max-width: 600px;
}

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

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

/* Services Sections */
.services-section {
  background-color: var(--bg-primary);
}

.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.services-header p {
  font-size: 1.1rem;
}

.services-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.services-tab-btn {
  background: transparent;
  border: 1px solid var(--light-grey);
  color: var(--dark-text);
  padding: 0.75rem 1.8rem;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.services-tab-btn.active, .services-tab-btn:hover {
  background-color: var(--deep-blue);
  color: var(--white);
  border-color: var(--deep-blue);
}

@media (max-width: 768px) {
  .services-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 1.2rem;
    margin-left: -1.2rem;
    margin-right: -1.2rem;
    scrollbar-width: none; /* Hide scrollbar Firefox */
  }
  
  .services-tabs::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari/Webkit */
  }
  
  .services-tab-btn {
    padding: 0.65rem 1.4rem;
    font-size: 0.7rem;
  }
}

/* Service Category Block */
.services-grid-wrapper {
  display: none;
}

.services-grid-wrapper.active {
  display: block;
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition-smooth);
}

.service-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.service-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.service-card-body p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.service-card-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: auto;
}

.service-price {
  font-family: var(--font-accent);
  font-weight: 600;
  color: var(--deep-blue);
  font-size: 0.95rem;
}

.service-book-btn {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--deep-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.service-book-btn:hover {
  color: var(--accent-blue);
}

/* Why Choose Us Section */
.why-section {
  background-color: var(--bg-secondary);
}

.why-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.why-expanding-container {
  display: flex;
  gap: 1.2rem;
  width: 100%;
  min-height: 380px;
}

.why-card {
  flex: 1;
  position: relative;
  overflow: hidden;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.2, 1), transform 0.6s cubic-bezier(0.25, 1, 0.2, 1);
  box-shadow: var(--shadow-subtle);
  color: #ffffff;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.2, 1);
}

#whyCardStylists::before {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.1) 100%), url('assets/hair_styling.png');
}
#whyCardProducts::before {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.1) 100%), url('assets/salon_products_shelf.png');
}
#whyCardHygiene::before {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.1) 100%), url('assets/salon_chennai.png');
}
#whyCardInteriors::before {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.1) 100%), url('assets/salon_interior.png');
}

.why-card:hover::before {
  transform: scale(1.08);
}

.why-card-icon,
.why-card h3,
.why-card-desc {
  position: relative;
  z-index: 1;
}

.why-card-icon {
  font-size: 1.5rem;
  margin-bottom: auto;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease, background 0.4s ease;
}

.why-card:hover .why-card-icon {
  transform: rotate(10deg) scale(1.1);
  background: rgba(255, 255, 255, 0.25);
}

.why-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  white-space: nowrap;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.why-card-desc {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Hover Expanding Card Behavior */
.why-card:hover {
  flex: 2.2;
  box-shadow: var(--shadow-premium);
}

.why-card:hover .why-card-desc {
  max-height: 100px;
  opacity: 1;
}

@media (max-width: 900px) {
  .why-expanding-container {
    flex-direction: column;
    min-height: auto;
  }
  .why-card {
    flex: auto;
    padding: 2.2rem;
    height: 240px;
  }
  .why-card:hover {
    flex: auto;
  }
  .why-card .why-card-desc {
    max-height: 100px;
    opacity: 1;
  }
}

/* About Us Section */
.about-section {
  background-color: var(--bg-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about-info h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.about-info p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: #444;
  margin-bottom: 2.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1.5rem;
}

.stat-item {
  border-left: 2px solid var(--accent-blue);
  padding-left: 1.5rem;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--deep-blue);
  line-height: 1;
  margin-bottom: 0.5rem;
}

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

.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 520px;
  box-shadow: var(--shadow-premium);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .about-visual {
    height: 380px;
  }
}

/* Portfolio / Transformations Section */
.gallery-section {
  background-color: var(--bg-secondary);
}

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

/* Elegant filter tabs */
.portfolio-tabs {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.portfolio-tab-btn {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.6rem 2rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
  background: var(--white);
  color: var(--dark-text);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.portfolio-tab-btn:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

.portfolio-tab-btn.active {
  background: var(--deep-blue);
  border-color: var(--deep-blue);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(62, 106, 145, 0.2);
}

/* Portfolio Gallery Wrapper & Desktop Grid */
.portfolio-gallery-wrapper {
  width: 100%;
}

.portfolio-grid {
  columns: 3 320px;
  column-gap: 1.5rem;
  display: block;
}

/* Portfolio Item */
.portfolio-item {
  display: inline-block;
  width: 100%;
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-subtle);
  background-color: var(--white);
  border: 1px solid var(--border-light);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(62, 106, 145, 0.15);
}

.portfolio-item img,
.portfolio-item video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item:hover img,
.portfolio-item:hover video {
  transform: scale(1.06);
}

/* Portfolio Overlay styling */
.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 1.2rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.45) 60%, transparent 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 1;
  z-index: 2;
  transition: var(--transition-fast);
}

.portfolio-title {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.portfolio-category-tag {
  color: var(--accent-blue);
  font-family: var(--font-accent);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

/* Eye/View Icon */
.portfolio-view-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-top: 1rem;
  transform: translateY(15px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, background 0.3s ease, border-color 0.3s ease;
}

.portfolio-item:hover .portfolio-view-icon {
  transform: translateY(0);
}

.portfolio-view-icon:hover {
  background: rgba(255, 255, 255, 0.4);
  border-color: #fff;
}

/* Video play badge overlay */
.portfolio-video-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  color: var(--deep-blue);
  box-shadow: var(--shadow-subtle);
  transition: opacity 0.3s ease;
}

.portfolio-video-badge svg {
  display: block;
}

.portfolio-item:hover .portfolio-video-badge {
  opacity: 0;
}

/* Center Play Button on hover */
.portfolio-item-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  z-index: 3;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  pointer-events: none;
}

.portfolio-item:hover .portfolio-item-play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Mobile carousel (hidden on desktop) */
.portfolio-carousel-wrapper {
  display: none;
}

/* Premium Gallery CTA Card */
.gallery-cta-card {
  margin-top: 5rem;
  padding: 3rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
}

.gallery-cta-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 159, 203, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.gallery-cta-content,
.gallery-cta-actions {
  position: relative;
  z-index: 1;
}

.gallery-cta-content h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--deep-blue);
}

.gallery-cta-content p {
  font-size: 1.1rem;
  color: #555;
  margin: 0;
}

.gallery-cta-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .gallery-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 2rem;
  }
  .gallery-cta-actions {
    width: 100%;
    flex-direction: column;
  }
  .gallery-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Fullscreen Lightbox */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#lightboxMediaContainer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#lightboxMediaContainer img,
#lightboxMediaContainer video {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-info {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--white);
  max-width: 600px;
}

.lightbox-category {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-blue);
  display: block;
  margin-bottom: 0.35rem;
}

.lightbox-caption {
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 500;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
  line-height: 1;
  z-index: 3010;
}

.lightbox-close:hover {
  color: #fff;
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.8rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  z-index: 3010;
  user-select: none;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.lightbox-prev {
  left: 2.5rem;
}

.lightbox-next {
  right: 2.5rem;
}

@media (max-width: 768px) {
  .lightbox-nav {
    position: absolute;
    top: auto;
    bottom: -60px;
    transform: none;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
  .lightbox-prev {
    left: calc(50% - 60px);
  }
  .lightbox-next {
    right: calc(50% - 60px);
  }
  .lightbox-close {
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
  }
  .lightbox-content {
    max-height: 70vh;
  }
  #lightboxMediaContainer img,
  #lightboxMediaContainer video {
    max-height: 55vh;
  }
}

/* Before & After Image Comparison Slider */
.ba-section {
  background-color: var(--bg-primary);
}

.ba-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.ba-slider-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 500px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  user-select: none;
}

@media (max-width: 768px) {
  .ba-slider-container {
    height: 380px;
  }
}

.ba-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ba-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlaid image will be masked/clipped */
.ba-after-img {
  z-index: 2;
  width: 50%;
  overflow: hidden;
}

.ba-after-img img {
  /* Maintain true width to avoid scale distortion when cropped */
  width: 800px;
  max-width: none;
}

@media (max-width: 800px) {
  .ba-after-img img {
    width: 100vw;
  }
}

.ba-label {
  position: absolute;
  bottom: 1.5rem;
  background-color: rgba(34, 34, 34, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: var(--white);
  padding: 0.4rem 1rem;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  z-index: 3;
}

.ba-before-label {
  right: 1.5rem;
}

.ba-after-label {
  left: 1.5rem;
}

/* Draggable partition bar */
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--white);
  z-index: 10;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.ba-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--white);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-blue);
  font-weight: bold;
}

.ba-handle-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Our Team Section */
.team-section {
  background-color: var(--bg-secondary);
}

.team-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.team-card {
  overflow: hidden;
  transition: var(--transition-smooth);
}

.team-img-wrapper {
  position: relative;
  height: 380px;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-subtle);
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.team-info h3 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.team-role {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--deep-blue);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: block;
}

.team-bio {
  font-size: 0.95rem;
  color: #666;
}

/* Testimonials (Rolling Floating Cards) */
.testimonials-section {
  background-color: var(--bg-primary);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.testimonials-track-container {
  width: 100%;
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  width: max-content;
}

.testimonial-card {
  width: 380px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  color: #FBBF24;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--light-grey);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-user-info h4 {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
}

.testimonial-user-info span {
  font-size: 0.75rem;
  color: #888;
}

/* Locations Section */
.locations-section {
  background-color: var(--bg-secondary);
}

.locations-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem;
}

@media (max-width: 900px) {
  .locations-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.location-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.location-img {
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-subtle);
}

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

.location-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.location-details {
  list-style: none;
  margin-bottom: 2rem;
}

.location-details li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  color: #444;
}

.location-details .icon {
  color: var(--deep-blue);
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.location-details strong {
  display: block;
  color: var(--dark-text);
  font-family: var(--font-accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.map-iframe-container {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-light);
}

.map-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-actions {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1rem;
  margin-top: auto;
}

/* Appointment Enquiry Section */
.enquiry-section {
  background-color: var(--bg-primary);
}

.enquiry-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 5rem;
}

@media (max-width: 900px) {
  .enquiry-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.enquiry-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.enquiry-info h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.enquiry-info p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.enquiry-feature-list {
  list-style: none;
}

.enquiry-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.enquiry-feature-list .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-blue);
  margin-top: 0.6rem;
  flex-shrink: 0;
}

.enquiry-form-card {
  padding: 3rem;
  border-radius: var(--radius-lg);
}

@media (max-width: 500px) {
  .enquiry-form-card {
    padding: 1.5rem;
  }
}

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

@media (max-width: 600px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

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

.form-group label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  color: var(--dark-text);
}

.form-control {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--light-grey);
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark-text);
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--deep-blue);
  box-shadow: 0 0 0 3px rgba(111, 159, 203, 0.15);
}

textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

/* Booking Form Submit Button Loading State */
#formSubmitBtn.loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

#formSubmitBtn.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-top: -10px;
  margin-left: -10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: formButtonSpin 0.8s ease-in-out infinite;
}

@keyframes formButtonSpin {
  to { transform: rotate(360deg); }
}

/* Gift Cards Section */
.gift-section {
  background-color: var(--bg-secondary);
}

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

@media (max-width: 900px) {
  .gift-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.gift-visual {
  position: relative;
  perspective: 1000px;
  display: flex;
  justify-content: center;
}

.gift-card-graphic {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1.586 / 1; /* Standard card ratio */
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--accent-blue) 100%);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 35px rgba(62, 106, 145, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotateY(-15deg) rotateX(10deg);
  transition: var(--transition-smooth);
}

.gift-card-graphic:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.gift-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.gift-card-header .brand-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.gift-card-header .voucher-tag {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
}

.gift-card-footer-info h4 {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-bottom: 0.2rem;
}

.gift-card-footer-info p {
  color: var(--white);
  opacity: 0.9;
  font-size: 0.85rem;
}

.gift-info h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.gift-info p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.gift-note {
  font-size: 0.85rem;
  color: #777;
  margin-top: 1.25rem;
}

/* FAQ Accordion Section */
.faq-section {
  background-color: var(--bg-primary);
}

.faq-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

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

.faq-item {
  border-bottom: 1px solid var(--light-grey);
  margin-bottom: 1rem;
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-trigger h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark-text);
  transition: var(--transition-fast);
}

.faq-trigger:hover h3 {
  color: var(--deep-blue);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  fill: currentColor;
  color: var(--deep-blue);
  transition: transform 0.4s ease;
}

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

.faq-content p {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

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

.faq-item.active .faq-content {
  max-height: 200px;
  opacity: 1;
}

/* Premium Footer */
footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-light);
  padding: 5rem 0 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.footer-col-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-col-brand p {
  font-size: 0.9rem;
  color: #666;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: var(--deep-blue);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #555;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--deep-blue);
  padding-left: 4px;
}

.footer-contact-details li {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
}

.footer-contact-details strong {
  display: block;
  color: var(--dark-text);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #777;
}

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

.footer-socials a {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--dark-text);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-socials a:hover {
  color: var(--deep-blue);
}

/* Floating Actions & Widgets */
.sticky-book-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 999;
}

.floating-whatsapp {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.sticky-book-btn {
  background-color: var(--white);
  color: var(--dark-text);
  border: 1px solid var(--border-light);
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: var(--shadow-premium);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.sticky-book-btn:hover {
  background-color: var(--deep-blue);
  color: var(--white);
  border-color: var(--deep-blue);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  /* Hide floating 'Book Appointment' text button on mobile — hero already has it */
  .sticky-book-btn {
    display: none;
  }
  .sticky-book-widget {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  /* Prevent any element from causing horizontal scroll */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }
  /* Tighten section padding on mobile */
  .section-padding {
    padding: 4rem 1.2rem;
  }
  .container {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}

/* Responsive Portfolio Transformations styles */
@media (max-width: 768px) {
  .portfolio-grid {
    display: none;
  }
  
  .portfolio-carousel-wrapper {
    display: block;
    width: 100%;
  }
  
  .portfolio-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    scrollbar-width: none;
    padding: 0.5rem 1rem 1.5rem 1rem;
    margin: 0 -1rem;
  }
  
  .portfolio-carousel::-webkit-scrollbar {
    display: none;
  }
  
  .portfolio-carousel .portfolio-item {
    flex: 0 0 82%;
    scroll-snap-align: center;
    margin-bottom: 0;
  }
  
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  
  .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border-light);
    cursor: pointer;
    transition: var(--transition-fast);
  }
  
  .carousel-dot.active {
    background-color: var(--deep-blue);
    transform: scale(1.2);
  }
}

/* ==========================================================================
   NEW INTERACTIVE FEATURES: PRICE TAGS, QUICK VIEW MODAL & TOASTS
   ========================================================================== */

/* Service Image Wrapper */
.service-img-wrapper {
  position: relative;
}

/* Quick View Button */
.quick-view-btn {
  background: transparent;
  border: 1px solid #d1d5db;
  color: #374151;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quick-view-btn:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
  color: #111827;
}

/* Quick View Service Modal */
.service-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1.5rem;
}

.service-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.service-modal-card {
  background: #ffffff;
  border-radius: 20px;
  max-width: 820px;
  width: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-modal-overlay.active .service-modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.modal-close-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.modal-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
  .modal-body-grid {
    grid-template-columns: 1fr;
  }
}

.modal-img-col {
  position: relative;
  min-height: 320px;
  background: #f1f5f9;
}

.modal-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-price-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color: #fbbf24;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-family: var(--font-heading, sans-serif);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(251, 191, 36, 0.4);
}

.modal-info-col {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-category-tag {
  color: #d97706;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.modal-info-col h3 {
  font-size: 1.75rem;
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.modal-info-col p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.modal-meta-row {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 1.5rem;
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.meta-item strong {
  color: #0f172a;
  font-size: 0.95rem;
  margin-top: 0.2rem;
}

.modal-cta-row {
  display: flex;
  gap: 1rem;
}

.modal-cta-row .btn {
  flex: 1;
  text-align: center;
  justify-content: center;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 10000;
  pointer-events: none;
}

.toast-message {
  pointer-events: auto;
  background: #0f172a;
  color: #ffffff;
  padding: 0.85rem 1.4rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-left: 4px solid #fbbf24;
  transform: translateX(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-message.show {
  transform: translateX(0);
  opacity: 1;
}

/* ==========================================================================
   PROFESSIONAL BRANDS SECTION
   ========================================================================== */

/* Color tokens local to this section */
:root {
  --gold-accent: #C9A96E;
  --gold-light: rgba(201, 169, 110, 0.15);
  --gold-line:  rgba(201, 169, 110, 0.35);
  --brands-bg:  #F7F4EF;
  --brands-dark: #1A1A1A;
}

.brands-section {
  background-color: var(--brands-bg);
  position: relative;
  overflow: hidden;
}

/* Subtle decorative corner texture */
.brands-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.brands-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.brands-section .container {
  position: relative;
  z-index: 1;
}

/* ---- Section Header ---- */
.brands-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 5rem auto;
}

.brands-header h2 {
  margin-bottom: 1.5rem;
  color: var(--brands-dark);
}

.brands-intro {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: #5A5046;
  max-width: 700px;
  margin: 0 auto;
}

/* ---- Two Columns Wrapper ---- */
.brands-columns-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto 4.5rem auto;
}

/* ---- Individual Column ---- */
.brands-column {
  flex: 1;
  padding: 0 3.5rem;
}

/* ---- Column Header ---- */
.brands-column-header {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.brands-ornament {
  font-size: 0.7rem;
  color: var(--gold-accent);
  letter-spacing: 0.3em;
  display: block;
}

.brands-column-header h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--brands-dark);
  letter-spacing: -0.01em;
  line-height: 1;
  margin: 0;
}

.brands-column-line {
  width: 40px;
  height: 1.5px;
  background: var(--gold-accent);
  margin-top: 0.4rem;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.brands-column:hover .brands-column-line {
  width: 70px;
}

/* ---- Brand List ---- */
.brands-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.brand-item {
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  cursor: default;
  transition: padding-left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.brand-item:first-child {
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.brand-item:hover {
  padding-left: 0.5rem;
}

.brand-num {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold-accent);
  letter-spacing: 0.1em;
  line-height: 1;
  min-width: 22px;
  flex-shrink: 0;
  opacity: 0.8;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--brands-dark);
  letter-spacing: -0.01em;
  line-height: 1.3;
  transition: color 0.3s ease;
  position: relative;
}

/* Gold underline reveal on hover */
.brand-name::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold-accent);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-item:hover .brand-name {
  color: #5A3E1B;
}

.brand-item:hover .brand-name::after {
  width: 100%;
}

/* ---- Vertical Divider ---- */
.brands-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(to bottom,
    transparent 0%,
    var(--gold-line) 15%,
    var(--gold-line) 85%,
    transparent 100%
  );
  flex-shrink: 0;
}

/* ---- Bottom Expert Note ---- */
.brands-note {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  padding: 2.2rem 2.5rem;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.brands-note-ornament {
  font-size: 0.7rem;
  color: var(--gold-accent);
  letter-spacing: 0.4em;
  display: block;
}

.brands-note p {
  font-family: var(--font-serif-sub);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  color: #5A5046;
  line-height: 1.75;
  margin: 0;
}

/* ---- Scroll Fade-In Animations ---- */
.brands-fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.brands-fade-in--delayed {
  transition-delay: 0.18s;
}

.brands-fade-in--delayed-2 {
  transition-delay: 0.32s;
}

.brands-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Mobile Responsiveness ---- */
@media (max-width: 768px) {
  .brands-columns-wrapper {
    flex-direction: column;
    gap: 3.5rem;
    max-width: 100%;
  }

  .brands-column {
    padding: 0;
    width: 100%;
  }

  .brands-divider {
    width: 100%;
    height: 1px;
    align-self: auto;
    background: linear-gradient(to right,
      transparent 0%,
      var(--gold-line) 15%,
      var(--gold-line) 85%,
      transparent 100%
    );
  }

  .brands-intro {
    font-size: 1rem;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .brands-note {
    padding: 1.75rem 1.5rem;
  }

  .brands-note p {
    font-size: 0.98rem;
  }
}

@media (max-width: 480px) {
  .brands-header {
    margin-bottom: 3.5rem;
  }

  .brand-name {
    font-size: 1rem;
  }
}

/* ==========================================================================
   PRODUCTION ACCESSIBILITY & PERFORMANCE ADDITIONS
   ========================================================================== */

/* Skip to Main Content Link (Accessibility) */
.skip-to-main {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--deep-blue);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  z-index: 99999;
  transition: top 0.2s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.skip-to-main:focus {
  top: 1rem;
  outline: 3px solid #fbbf24;
  outline-offset: 2px;
}

/* Global Visible Focus Ring (Keyboard navigation) */
*:focus-visible {
  outline: 3px solid var(--accent-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--deep-blue);
  outline-offset: 3px;
}

/* Full-width button utility (replaces inline style) */
.btn-full {
  width: 100%;
  justify-content: center;
  border-radius: var(--radius-sm);
}

/* FAQ question span – matches h3 typography without invalid nesting */
.faq-question {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark-text);
  letter-spacing: -0.01em;
  line-height: 1.4;
  text-align: left;
}

/* Locations – map iframe responsive fix */
.map-iframe-container iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: var(--radius-md);
  display: block;
}

/* Ensure service images don't cause layout shift */
.service-img-wrapper img {
  aspect-ratio: 560 / 440;
  object-fit: cover;
}

/* Scroll margin for anchor links (navbar offset) */
#services-section,
#why-section,
#about-section,
#ba-section,
#testimonials-section,
#locations-section,
#enquiry-section,
#gift-section,
#faq-section {
  scroll-margin-top: 90px;
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
  .header-nav-wrapper,
  .scroll-progress-container,
  .sticky-book-widget,
  .floating-whatsapp,
  .mobile-nav-overlay,
  .skip-to-main,
  .toast-container,
  .service-modal-overlay {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
  }

  h1, h2, h3 {
    color: #000;
    page-break-after: avoid;
  }

  a {
    text-decoration: underline;
    color: #000;
  }

  .hero-section {
    height: auto;
    min-height: auto;
  }

  .hero-bg-image,
  .hero-overlay {
    display: none;
  }

  .hero-content {
    color: #000;
  }

  section {
    page-break-inside: avoid;
  }
}

/* ==========================================================================
   REDUCED MOTION (Accessibility)
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-content {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .testimonials-track {
    animation: none;
  }
}

/* ==========================================================================
   HIGH CONTRAST MODE
   ========================================================================== */
@media (forced-colors: active) {
  .btn-primary,
  .btn-secondary {
    forced-color-adjust: none;
  }

  .glass-card {
    border: 2px solid ButtonText;
    background: Canvas;
  }

  .scroll-progress-bar {
    forced-color-adjust: none;
    background: Highlight;
  }
}
