/* 
 * Brezerland Perfumes — Premium Light Luxury Stylesheet
 * Brand Identity: Quiet Luxury B2B Manufacturer & Exporter
 * Palette: Warm Ivory (55%), Soft Cream (15%), White (20%), Champagne Gold (7%), Soft Sage (3%)
 * Fonts: Cormorant Garamond (Headings), Manrope (Body & UI)
 */

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

:root {
  /* Color Tokens */
  --bg-primary: #FCFAF7;       /* Warm Ivory */
  --bg-secondary: #F5F1EB;     /* Soft Cream */
  --bg-tertiary: #EAE3D8;      /* Deep Cream/Footer */
  --card-bg: #FFFFFF;          /* Pure White */
  --text-primary: #222222;     /* Dark Charcoal */
  --text-secondary: #666666;   /* Slate Gray */
  --text-muted: #8E8E8E;       /* Muted Gray */
  --border-color: #E7DED4;     /* Soft Cream Borders */
  
  /* Brand Accents */
  --gold-luxury: #B8924D;      /* Deep Luxury Gold */
  --gold-champagne: #D8C3A5;   /* Soft Champagne Gold */
  --accent-sage: #728C69;      /* Sage Accent */
  --accent-sage-light: rgba(114, 140, 105, 0.1);
  --gold-rgb: 184, 146, 77;
  
  /* Spacing & Heights */
  --topbar-height: 80px;
  
  /* Shadows & Radius */
  --shadow-soft: 0 10px 40px rgba(184, 146, 77, 0.05), 0 4px 12px rgba(0, 0, 0, 0.02);
  --shadow-hover: 0 20px 50px rgba(184, 146, 77, 0.12), 0 8px 24px rgba(0, 0, 0, 0.03);
  --radius-btn: 14px;
  --radius-card: 18px;
  --radius-image: 24px;
}

/* BASE RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-champagne) var(--bg-secondary);
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

button,
input,
select,
textarea {
  font-family: inherit;
  color: var(--text-primary);
}

.container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

/* CUSTOM CURSOR FOLLOWER (Disabled) */
.custom-cursor,
.custom-cursor-follower {
  display: none !important;
}

/* PAGE LOADER */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg-primary);
  display: grid;
  place-items: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-panel {
  text-align: center;
  position: relative;
  padding: 50px 40px;
  border-radius: var(--radius-card);
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
}

.loader-logo {
  width: 120px;
  margin: 0 auto;
  transition: transform 0.6s ease;
}

.loader-text {
  margin-top: 24px;
  color: var(--text-secondary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
}

.particles span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-champagne);
  animation: drift 3.5s infinite ease-in-out;
}

.particles span:nth-child(1) { left: 10%; top: 15%; animation-delay: 0s; }
.particles span:nth-child(2) { right: 12%; top: 20%; animation-delay: 0.5s; }
.particles span:nth-child(3) { left: 8%; bottom: 15%; animation-delay: 1s; }
.particles span:nth-child(4) { right: 10%; bottom: 18%; animation-delay: 1.5s; }
.particles span:nth-child(5) { left: 50%; top: 25%; animation-delay: 2s; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50% { transform: translate(8px, -24px) scale(1.3); opacity: 0.2; }
}

/* PROGRESS BAR */
.progress-bar {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-champagne), var(--gold-luxury), var(--accent-sage));
  z-index: 10000;
  transition: width 0.1s ease;
}

/* HEADER & TOPBAR */
.topbar {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 900;
  padding: 24px 0;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.topbar.scrolled {
  position: fixed;
  background: rgba(252, 250, 247, 0.85); /* Frosted Glass Ivory */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  box-shadow: 0 4px 30px rgba(184, 146, 77, 0.03);
  border-bottom: 1px solid var(--border-color);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 42px;
  width: auto;
  transition: transform 0.4s ease;
}

.brand:hover img {
  transform: scale(1.05);
}

.brand span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  text-transform: uppercase;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.navbar a:hover,
.navbar a.active {
  color: var(--text-primary);
}

.navbar a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1.5px;
  background: var(--gold-luxury);
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar a:hover::after,
.navbar a.active::after {
  width: 100%;
}

/* DROPDOWN NAVIGATION MENU */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-btn {
  background: transparent;
  border: none;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  transition: color 0.3s ease;
}

.dropdown-btn svg {
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-btn {
  color: var(--text-primary);
}

.nav-dropdown:hover .dropdown-btn svg {
  transform: rotate(180deg);
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  min-width: 220px;
  padding: 12px 0;
  box-shadow: var(--shadow-hover);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

.nav-dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(14px);
}

.dropdown-content a {
  display: block;
  padding: 10px 20px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-align: left;
  border-bottom: none !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dropdown-content a::after {
  display: none !important;
}

.dropdown-content a:hover {
  background: var(--bg-secondary);
  color: var(--gold-luxury) !important;
  padding-left: 24px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* BUTTONS */
.btn {
  padding: 12px 28px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 1px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn svg {
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--gold-luxury);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: #FFFFFF;
  border-color: var(--gold-luxury);
  color: var(--gold-luxury);
  box-shadow: 0 10px 25px rgba(184, 146, 77, 0.15);
}

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

.btn-secondary:hover {
  background: #FFFFFF;
  border-color: var(--gold-luxury);
  color: var(--gold-luxury);
  box-shadow: 0 10px 25px rgba(184, 146, 77, 0.08);
}

.btn-whatsapp {
  background: #25d366;
  color: #FFFFFF;
}

.btn-whatsapp:hover {
  background: #FFFFFF;
  border-color: #25d366;
  color: #25d366;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.15);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* MOBILE TOGGLE & MENU */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: var(--card-bg);
  position: relative;
  cursor: pointer;
  z-index: 950;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.3s, top 0.3s;
}

.menu-toggle span:nth-child(1) { top: 15px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 27px; }

.menu-toggle.open span:nth-child(1) { transform: rotate(45deg); top: 21px; }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg); top: 21px; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 920;
  pointer-events: none;
}

.mobile-menu.open {
  pointer-events: auto;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(34, 34, 34, 0.3);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.mobile-menu.open .mobile-menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: min(320px, 80vw);
  height: 100%;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-color);
  box-shadow: -10px 0 40px rgba(184, 146, 77, 0.05);
  padding: 90px 24px 40px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: auto;
}

.mobile-menu.open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
}

.mobile-nav ul {
  list-style: none;
  display: grid;
  gap: 16px;
}

.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold-luxury);
  padding-left: 6px;
}

.mobile-ctas {
  margin-top: auto;
  display: grid;
  gap: 12px;
}

/* SECTION PADDING & DECORATION */
section {
  padding: clamp(60px, 9vw, 110px) 0;
  position: relative;
}

.bg-ivory {
  background: var(--bg-primary);
}

.bg-cream {
  background: var(--bg-secondary);
}

.bg-white {
  background: var(--card-bg);
}

.section-label {
  color: var(--accent-sage);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--accent-sage);
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
}

p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.96rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(36px, 5vw, 60px);
}

.section-heading p {
  font-size: 1.05rem;
  margin-top: 10px;
}

/* Alternate content alignment columns helper */
.alternate-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}
.alternate-row:last-child {
  margin-bottom: 0;
}
.alternate-row.reverse {
  flex-direction: row-reverse;
}
.alternate-row .col-content {
  flex: 1;
}
.alternate-row .col-image {
  flex: 1;
}

/* CINEMATIC HERO SECTION */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: stretch;
  padding-top: calc(var(--topbar-height) + 60px);
  background: var(--bg-primary);
  overflow: hidden;
  position: relative;
}

@media (max-width: 1200px) {
  .hero {
    min-height: 85vh;
  }
}

@media (max-width: 1024px) {
  .hero {
    min-height: 75vh;
    padding-top: calc(var(--topbar-height) + 32px);
    align-items: flex-start;
  }
}

/* HOMEPAGE SCOPED REDESIGN (VIDEO HERO SECTION) */
.home-page .hero {
  min-height: calc(100vh - 180px) !important;
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

@media (max-width: 1200px) {
  .home-page .hero {
    min-height: calc(95vh - 180px) !important;
  }
}

@media (max-width: 1024px) {
  .home-page .hero {
    min-height: calc(85vh - 72px) !important;
    margin-top: 72px !important;
    padding-top: 40px !important;
  }
}

@media (max-width: 767px) {
  .home-page .hero {
    min-height: calc(75vh - 72px) !important;
    margin-top: 72px !important;
    padding-top: 32px !important;
  }
}

/* Background Video Container & Video Styling */
.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center; /* Visual focus on machinery and perfume bottles */
  transform: scale(1);
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-video {
    animation: slowZoom 25s infinite ease-in-out;
  }
}

/* Luxury warm overlay to improve text readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(252, 250, 247, 0.22),
    rgba(252, 250, 247, 0.35)
  );
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero-overlay {
    background: linear-gradient(
      rgba(252, 250, 247, 0.15),
      rgba(252, 250, 247, 0.25)
    );
  }
}

.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114, 140, 105, 0.08) 0%, transparent 70%);
  bottom: -10%;
  left: -10%;
  pointer-events: none;
  filter: blur(50px);
  z-index: 3;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: stretch;
  position: relative;
  z-index: 10;
  align-self: stretch;
  padding-top: 40px;
  padding-bottom: 40px;
  width: 100%;
}

.eyebrow {
  display: inline-block;
  color: var(--gold-luxury);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

/* Custom styled paragraph for luxury readability and high contrast */
.hero p {
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 600px;
}

.home-page .hero p {
  color: #2F2F2F !important;
  font-weight: 500 !important;
  line-height: 1.8 !important;
  letter-spacing: 0.2px !important;
  max-width: 580px !important;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-badges span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  align-self: center;
}

.home-page .hero-copy {
  padding-left: 80px; /* aligns text container with page container guidelines */
  padding-right: 20px;
}

@media (max-width: 1200px) {
  .home-page .hero-copy {
    padding-left: 70px;
  }
}

@media (max-width: 1024px) {
  .home-page .hero-copy {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}

@media (max-width: 767px) {
  .home-page .hero-copy {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

.hero-visual.spacer {
  pointer-events: none;
  background: transparent;
  border: none;
  box-shadow: none;
}

@media (max-width: 1024px) {
  .hero-visual.spacer {
    display: none !important;
  }
}

/* Character spans for GSAP SplitText reveal */
.char-span {
  display: inline-block;
  transform-origin: bottom center;
  will-change: transform, opacity, filter;
}

/* Scoped Homepage solid headers - rest of pages remain unaffected */
.home-page .top-info-bar {
  position: relative;
  background: #FCFAF7; /* Solid Warm Ivory */
  border-bottom: 1px solid var(--border-color);
  z-index: 990;
}

.home-page .topbar {
  position: relative;
  top: 0;
  background: #FCFAF7; /* Solid Warm Ivory */
  border-bottom: 1px solid var(--border-color);
  z-index: 980;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.home-page .topbar.scrolled {
  position: fixed !important;
  top: 0 !important;
  background: rgba(252, 250, 247, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000 !important;
  border-bottom: 1px solid var(--border-color) !important;
  box-shadow: 0 4px 30px rgba(184, 146, 77, 0.05);
}

/* Waiting state for initial hero reveal */
.hero-hidden .hero-copy-top,
.hero-hidden .hero-actions,
.hero-hidden .trust-badges {
  opacity: 0;
  pointer-events: none;
}

/* SPLIT PAGE SECTIONS */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-media {
  position: relative;
}

.image-frame-container {
  border-radius: var(--radius-image);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
  background: var(--bg-secondary);
}

.about-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.about-media:hover .about-img-main {
  transform: scale(1.03);
}

.location-info {
  position: absolute;
  bottom: -24px;
  right: -16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--gold-luxury);
  padding: 16px 20px;
  border-radius: 14px;
  max-width: 300px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: var(--shadow-hover);
}

.location-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.location-info p {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--text-secondary);
}

/* ABOUT TABS */
.about-tabs {
  margin-top: 32px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.about-tab-buttons {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

.tab-btn.active {
  color: var(--gold-luxury);
  background: var(--bg-secondary);
  box-shadow: inset 0 0 0 1px rgba(184, 146, 77, 0.1);
}

.about-tab-content {
  display: none;
}

.about-tab-content.active {
  display: block;
  animation: tabFadeIn 0.4s ease-out forwards;
}

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

.about-tab-content h3 {
  display: none;
}

.about-tab-content p {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.value-item {
  background: var(--bg-primary);
  padding: 16px;
  border-radius: 12px;
  border-left: 3px solid var(--gold-luxury);
  border-top: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.value-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.value-item p {
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--text-secondary);
}

/* STATS COUNTERS */
.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.counters article {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 18px 10px;
  border-radius: var(--radius-card);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.counters article:hover {
  border-color: var(--gold-luxury);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.counters strong {
  display: block;
  font-size: 2rem;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-luxury);
  line-height: 1.1;
  margin-bottom: 4px;
}

.counters span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  font-weight: 500;
}

/* COMPANY FACTSHEET TABLE */
.factsheet-container {
  margin-top: clamp(60px, 8vw, 100px);
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-soft);
}

.factsheet-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 24px;
  text-align: center;
  position: relative;
}

.factsheet-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 50px;
  height: 1.5px;
  background: var(--gold-luxury);
}

.factsheet-table-wrapper {
  overflow-x: auto;
  margin-top: 16px;
}

.factsheet-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.factsheet-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-color);
  line-height: 1.5;
}

.factsheet-table tr:last-child td {
  border-bottom: none;
}

.factsheet-table td:nth-child(odd) {
  color: var(--gold-luxury);
  font-weight: 600;
  width: 22%;
  white-space: nowrap;
}

.factsheet-table td:nth-child(even) {
  color: var(--text-secondary);
  width: 28%;
}

.factsheet-table a.profile-link {
  color: var(--text-primary);
  border-bottom: 1px dashed var(--gold-luxury);
  display: inline-block;
  padding: 1px 0;
}

.factsheet-table a.profile-link:hover {
  color: var(--gold-luxury);
}

/* PRODUCTS & SERVICES GRID (Cards Alternating Layouts) */
.products-list-grid {
  display: grid;
  gap: 48px;
}

.product-category-card {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-image);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.product-category-card:hover {
  border-color: var(--gold-champagne);
  box-shadow: var(--shadow-hover);
}

.prod-card-image {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

.prod-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.product-category-card:hover .prod-card-image img {
  transform: scale(1.05);
}

.prod-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(252, 250, 247, 0.95));
}

.card-reverse {
  direction: rtl;
}

.card-reverse .prod-card-content,
.card-reverse .prod-card-image {
  direction: ltr;
}

.card-reverse .prod-image-overlay {
  background: linear-gradient(to left, transparent, rgba(252, 250, 247, 0.95));
}

.prod-card-content {
  padding: clamp(24px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(252, 250, 247, 0.3);
}

.prod-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold-champagne);
  line-height: 1;
  margin-bottom: 8px;
}

.prod-card-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.2;
}

.prod-sub {
  color: var(--accent-sage);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 16px;
  display: block;
}

.prod-card-content p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.prod-sub-items {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 28px;
  border-top: 1px solid var(--border-color);
  padding-top: 18px;
}

.prod-sub-items li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  position: relative;
  padding-left: 14px;
}

.prod-sub-items li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold-luxury);
  font-size: 0.7rem;
}

.prod-card-content .btn {
  align-self: flex-start;
}

/* WHY CHOOSE BREEZERLAND CARDS */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 36px 28px;
  border-radius: var(--radius-card);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-sage-light), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-luxury);
  box-shadow: var(--shadow-hover);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  display: grid;
  place-items: center;
  color: var(--gold-luxury);
  margin-bottom: 20px;
  position: relative;
  z-index: 10;
  transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.05) rotate(2deg);
  background: var(--gold-luxury);
  color: #FFFFFF;
}

.feature-card h3 {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  position: relative;
  z-index: 10;
}

.feature-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-secondary);
  position: relative;
  z-index: 10;
}

.wide-card {
  grid-column: span 3;
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(90deg, var(--bg-secondary) 0%, var(--card-bg) 100%);
}

.wide-card .feature-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.wide-card-text {
  flex-grow: 1;
}

/* PROCESS TIMELINE */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 45px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-champagne) 0%, var(--gold-luxury) 50%, var(--accent-sage) 100%);
  opacity: 0.5;
}

.timeline-step {
  position: relative;
  padding-left: 110px;
  margin-bottom: 40px;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.step-badge {
  position: absolute;
  left: 10px;
  top: 4px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 2px solid var(--gold-luxury);
  color: var(--text-primary);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease, border-color 0.4s ease, background-color 0.4s ease, color 0.4s ease;
  z-index: 10;
}

.timeline-step:hover .step-badge {
  transform: scale(1.08);
  border-color: var(--accent-sage);
  background-color: var(--accent-sage);
  color: #FFFFFF;
}

.timeline-content {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 28px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.timeline-step:hover .timeline-content {
  transform: translateX(6px);
  border-color: var(--gold-champagne);
}

.timeline-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 0.88rem;
  line-height: 1.6;
}

/* INDUSTRIES SERVED GRID */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.industry-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 28px 20px;
  border-radius: var(--radius-card);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-soft);
}

.industry-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-luxury);
  box-shadow: var(--shadow-hover);
  background: var(--bg-primary);
}

.industry-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: grid;
  place-items: center;
  color: var(--gold-luxury);
  margin-bottom: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
  background: var(--gold-luxury);
  color: #FFFFFF;
  transform: scale(1.05);
}

.industry-card strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.industry-card p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* TESTIMONIALS SLIDER */
.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}

.testimonial-wrapper {
  position: relative;
}

.testimonial-card {
  display: none;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 40px clamp(20px, 4vw, 50px) 30px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  text-align: center;
  animation: cardFadeIn 0.5s cubic-bezier(0.25, 1, 0.5, 1) both;
}

.testimonial-card.active {
  display: block;
}

.testimonial-stars {
  color: var(--gold-luxury);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.testimonial-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 0;
}

.testimonial-author {
  text-align: center;
  margin-top: 16px;
  animation: authorFadeIn 0.4s ease both;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.testimonial-author span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  margin-bottom: 16px;
}

.testimonial-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: all 0.35s ease;
}

.testimonial-dots .dot:hover {
  background: var(--gold-champagne);
}

.testimonial-dots .dot.active {
  background: var(--gold-luxury);
  width: 24px;
  border-radius: 99px;
  box-shadow: 0 0 10px rgba(184, 146, 77, 0.3);
}

/* CONTACT SECTION & RICH FORM EXPERIENCE */
.contact {
  position: relative;
  background-color: var(--bg-secondary);
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--gold-luxury);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
  transition: border-left-color 0.3s ease, background-color 0.3s ease;
}

.contact-item:hover {
  background-color: var(--bg-primary);
  border-left-color: var(--accent-sage);
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--gold-luxury);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-item span,
.contact-item p {
  color: var(--text-primary);
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-item a {
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
}

.contact-item a:hover {
  color: var(--gold-luxury);
  border-color: var(--gold-luxury);
}

.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius-image);
  box-shadow: var(--shadow-soft);
}

.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.contact-form p {
  font-size: 0.88rem;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
}

.form-group select option {
  background: var(--card-bg);
  color: var(--text-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-luxury);
  background: #FFFFFF;
  box-shadow: 0 0 10px rgba(184, 146, 77, 0.08);
}

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

.form-actions {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

/* INFRASTRUCTURE / LABORATORY GRID */
.facility-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.facility-grid.reverse {
  grid-template-columns: 0.8fr 1.2fr;
}
.facility-card-list {
  display: grid;
  gap: 20px;
}
.facility-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 20px;
}
.facility-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--accent-sage-light);
  display: grid;
  place-items: center;
  color: var(--accent-sage);
  flex-shrink: 0;
}
.facility-card-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.facility-card-info p {
  font-size: 0.85rem;
  line-height: 1.5;
}

/* LUXURY DARK-CREAM FOOTER */
.footer {
  background: var(--bg-tertiary);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.9fr);
  gap: 40px;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 18px;
}

.footer p {
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 260px;
  color: var(--text-secondary);
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer-socials a {
  font-size: 0.8rem;
  color: var(--text-secondary);
  border-bottom: 1px dashed var(--gold-luxury);
  font-weight: 500;
}

.footer-socials a:hover {
  color: var(--gold-luxury);
  border-color: var(--gold-luxury);
}

.footer h4 {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.footer a:hover {
  color: var(--gold-luxury);
  transform: translateX(4px);
}

.phone-link {
  font-size: 1.05rem !important;
  color: var(--gold-luxury) !important;
  font-weight: 700;
}

.address-text {
  font-size: 0.82rem !important;
  margin-top: 8px;
  color: var(--text-secondary);
}

.footer-note {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* BACK TO TOP BUTTON */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-luxury);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--text-primary);
  transform: translateY(-3px);
}

/* REVEAL ON SCROLL STATES */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: opacity 0.85s cubic-bezier(0.25, 1, 0.5, 1), transform 0.85s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-up { transform: translateY(35px); }
.reveal-left { transform: translateX(-35px); }
.reveal-right { transform: translateX(35px); }
.reveal-scale { transform: scale(0.95); }

.reveal-visible {
  opacity: 1;
  transform: none;
}

.js-gsap-pending .hero-copy,
.js-gsap-pending .hero-visual {
  opacity: 0;
}

.heading-line {
  display: block;
  overflow: hidden;
}

.heading-line-inner {
  display: block;
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .js-gsap-pending .hero-copy,
  .js-gsap-pending .hero-visual {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .particles span {
    animation: none !important;
  }
}

/* RESPONSIVE LAYOUT MEDIA QUERIES */
@media (max-width: 1024px) {
  .hero {
    align-items: flex-start;
    padding-top: calc(var(--topbar-height) + 32px);
  }

  .hero-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    gap: 32px;
  }

  /* Desktop: .hero-copy is a single block — keep it together. Disabled on homepage to support left padding and alignment */
  :not(.home-page) .hero-copy {
    display: contents !important;
  }

  /* Stack order: top copy → image → bottom copy (actions + badges) */
  .hero-copy-top {
    order: 1;
    width: 100%;
  }

  .hero-copy-top h1 {
    max-width: 800px;
    margin: 0 auto 20px;
  }

  .hero-copy-top p {
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-visual {
    order: 2;
    width: 100%;
    margin-bottom: 0;
  }

  .hero-copy-bottom {
    order: 3;
    width: 100%;
  }

  .hero-actions {
    justify-content: center;
    margin-bottom: 32px;
  }

  .trust-badges {
    justify-content: center;
  }

  .hero-image-container {
    /* On mobile/tablet: no parent height, use aspect-ratio to size the card */
    height: auto;
    min-height: unset;
    max-width: 380px;
    aspect-ratio: 4 / 5;
    transform: none;
    margin: 0 auto;
  }
  
  .hero-visual:hover .hero-image-container {
    transform: none;
  }

  .split-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-media {
    max-width: 480px;
    margin: 0 auto;
  }

  .location-info {
    bottom: -16px;
    right: -10px;
  }

  .product-category-card {
    grid-template-columns: 1fr;
  }

  .prod-card-image {
    min-height: 280px;
  }

  .prod-image-overlay {
    background: linear-gradient(to bottom, transparent, rgba(252, 250, 247, 0.95));
  }

  .card-reverse .prod-image-overlay {
    background: linear-gradient(to bottom, transparent, rgba(252, 250, 247, 0.95));
  }

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

  .wide-card {
    grid-column: span 2;
  }

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

  .facility-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .facility-grid.reverse {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }
  
  .footer-grid div:last-child {
    grid-column: span 3;
    margin-top: 10px;
  }

  .navbar {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .btn-header-cta {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --topbar-height: 70px;
  }

  .hero {
    padding-top: 32px;
  }

  .topbar {
    background: rgba(252, 250, 247, 0.8);
    backdrop-filter: blur(15px);
    padding: 12px 0;
    position: fixed;
    border-bottom: 1px solid var(--border-color);
  }
  
  .topbar-inner {
    padding: 0 8px;
  }

  .brand span {
    font-size: 1.3rem;
  }

  .brand img {
    height: 36px;
  }
  
  .alternate-row {
    flex-direction: column !important;
    gap: 30px;
  }
}

@media (max-width: 620px) {
  h2 {
    font-size: 1.75rem;
  }

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

  .factsheet-table td {
    padding: 12px 14px;
    font-size: 0.85rem;
  }

  .factsheet-table tr {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border-color);
  }

  .factsheet-table td {
    display: block;
    width: 100% !important;
    border-bottom: none;
    padding: 6px 14px;
  }

  .factsheet-table td:nth-child(odd) {
    padding-top: 12px;
    padding-bottom: 0;
  }

  .factsheet-table td:nth-child(even) {
    padding-top: 4px;
    padding-bottom: 12px;
  }

  .prod-sub-items {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .wide-card {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .timeline-line {
    left: 20px;
  }

  .timeline-step {
    padding-left: 60px;
  }

  .step-badge {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    left: 0;
    top: 4px;
  }

  .timeline-content {
    padding: 18px;
  }

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

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

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

  .footer-grid div:last-child {
    grid-column: span 1;
  }
}

/* HEADER CENTERING CONTAINER */
.header-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}

@media (min-width: 1600px) {
  .header-container {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 1024px) {
  .header-container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* TOP INFORMATION BAR */
.top-info-bar {
  background: #FFFFFF;
  border-bottom: 1px solid #E7DED4;
  height: 100px;
  display: flex;
  align-items: center;
  z-index: 950;
  position: relative;
}

.top-info-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.info-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.info-logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: height 0.3s ease;
}

@media (max-width: 1024px) {
  .info-logo img {
    height: 60px;
  }
}

@media (max-width: 768px) {
  .info-logo img {
    height: 50px;
  }
}

.info-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  text-transform: uppercase;
}

.info-blocks {
  display: flex;
  align-items: center;
  gap: 40px;
}

.info-block {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.info-block:hover {
  transform: translateY(-2px);
}

.info-icon {
  color: var(--gold-luxury);
  width: 26px;
  height: 26px;
  stroke-width: 1.5;
  fill: none;
}

.info-block-text {
  display: flex;
  flex-direction: column;
}

.info-title {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.info-content {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

/* MAIN NAVIGATION STICKY OFFSET ADJUSTMENTS */
.topbar {
  position: absolute;
  left: 0;
  right: 0;
  top: 100px; /* Sits directly below the 100px top-info-bar */
  z-index: 900;
  padding: 20px 0;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, top 0.4s ease;
  border-bottom: 1px solid transparent;
}

.topbar.scrolled {
  position: fixed;
  top: 0;
  background: rgba(252, 250, 247, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(184, 146, 77, 0.05);
  border-bottom: 1px solid var(--border-color);
}

/* GET A QUOTE BUTTON */
.btn-quote {
  background: var(--gold-champagne);
  color: var(--text-primary);
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
}

.btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(184, 146, 77, 0.25);
  background: var(--gold-luxury);
  color: #FFFFFF;
}



/* FLOATING CONTACT WIDGET */
.contact-widget {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 9999;
}

/* Collapsed circular chat button */
.widget-trigger {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-luxury);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(184, 146, 77, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: trigger-pulse 5s infinite;
}

.widget-trigger:hover {
  transform: scale(1.08);
}

.widget-trigger svg {
  stroke-width: 2.2;
}

@keyframes trigger-pulse {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(184, 146, 77, 0.3);
  }
  50% {
    box-shadow: 0 6px 26px rgba(184, 146, 77, 0.65);
    transform: scale(1.04);
  }
}

/* Expanded state popup card */
.contact-popup {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 360px;
  background: #FFFFFF;
  border-radius: 22px;
  border: 1px solid #E7DED4;
  box-shadow: 0 10px 40px rgba(34, 34, 34, 0.08);
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.35s;
}

.contact-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Popup Close */
.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 18px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s ease;
}

.popup-close:hover {
  color: var(--text-primary);
}

/* Popup Header Elements */
.popup-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.popup-logo-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid #E7DED4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  animation: logo-float 4s infinite ease-in-out;
}

.popup-logo-circle img {
  width: 100%;
  height: auto;
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.popup-title-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}

.popup-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 6px;
}

.online-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid #25D366;
  animation: pulse-ring 2s infinite ease-out;
}

@keyframes pulse-ring {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

.online-text {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #25D366;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.popup-message {
  text-align: center;
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 24px;
}

.popup-message p {
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Action Buttons */
.popup-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-popup {
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, border-color 0.3s ease;
}

.btn-popup svg {
  transition: transform 0.3s ease;
}

.btn-popup:hover {
  transform: translateY(-2.5px);
}

.btn-popup:hover svg {
  transform: rotate(5deg);
}

.btn-popup-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.15);
}

.btn-popup-whatsapp:hover {
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-popup-call {
  background: var(--gold-luxury);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 15px rgba(184, 146, 77, 0.2);
}

.btn-popup-call:hover {
  box-shadow: 0 6px 20px rgba(184, 146, 77, 0.35);
}

.btn-popup-email {
  background: #FFFFFF;
  color: var(--gold-luxury);
  border: 1px solid var(--gold-luxury);
}

.btn-popup-email:hover {
  background: var(--bg-secondary);
  box-shadow: 0 4px 12px rgba(184, 146, 77, 0.08);
}

/* RESPONSIVE LAYOUTS FOR FLOATING WIDGET */
@media (max-width: 1024px) {
  .top-info-bar {
    display: none !important;
  }
  
  .topbar {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    height: 72px !important;
    padding: 0 !important;
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent !important;
    display: flex;
    align-items: center;
    z-index: 900;
    transition: background 300ms ease, backdrop-filter 300ms ease, box-shadow 300ms ease, border-color 300ms ease !important;
  }

  .topbar.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 4px 30px rgba(184, 146, 77, 0.05) !important;
    border-bottom: 1px solid var(--border-color) !important;
  }

  .topbar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
  }

  .brand.desktop-hide {
    display: inline-flex !important;
    align-items: center;
  }

  .brand.desktop-hide img {
    height: 56px !important;
    width: auto !important;
  }



  .btn-quote {
    display: none !important;
  }

  .menu-toggle {
    display: inline-flex !important;
    border: 1px solid var(--border-color) !important;
    background: var(--card-bg) !important;
    border-radius: 8px !important;
  }

  .menu-toggle span {
    border-radius: 2px !important;
  }

  /* Mobile Menu Drawer Redesign */
  .mobile-menu-panel {
    width: min(320px, 85vw) !important;
    background: var(--bg-primary) !important; /* Warm Ivory */
    padding: 80px 0 40px !important;
    overflow-y: auto !important;
    box-shadow: -10px 0 40px rgba(184, 146, 77, 0.08) !important;
    border-left: 1px solid var(--border-color) !important;
    transform: translateX(100%);
    transition: transform 300ms cubic-bezier(0.77, 0, 0.175, 1) !important;
    display: flex;
    flex-direction: column;
  }

  .mobile-menu-backdrop {
    transition: opacity 300ms ease !important;
  }

  .mobile-menu-divider {
    height: 1px;
    background: var(--border-color);
    width: calc(100% - 48px);
    margin: 20px auto;
  }

  .mobile-menu-links {
    list-style: none;
    padding: 0 24px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .mobile-menu-links li {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .mobile-menu-links a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
  }

  .mobile-menu-links a:hover,
  .mobile-menu-links a.active {
     color: var(--gold-luxury);
  }

  .mobile-menu-cta-container {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .btn-quote-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 48px);
    max-width: 100%;
    height: 48px;
    border-radius: 24px;
    background: var(--gold-luxury);
    color: #FFFFFF;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(184, 146, 77, 0.15);
    transition: all 0.3s ease;
    border: 1px solid transparent;
  }

  .btn-quote-mobile:hover {
    background: #FFFFFF;
    color: var(--gold-luxury);
    border-color: var(--gold-luxury);
    box-shadow: 0 4px 15px rgba(184, 146, 77, 0.08);
  }

  .mobile-menu-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 24px;
  }

  .mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .mobile-contact-item.font-address {
    align-items: flex-start;
  }

  .mobile-contact-item span {
    line-height: 1.4;
  }

  .mobile-contact-item .contact-icon {
    width: 18px;
    height: 18px;
    color: var(--gold-luxury);
    flex-shrink: 0;
    fill: none;
    stroke-width: 1.5;
  }

  .mobile-menu-whatsapp-container {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .btn-whatsapp-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: calc(100% - 48px);
    max-width: 100%;
    height: 48px;
    border-radius: 24px;
    background: #25d366;
    color: #FFFFFF;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.15);
    transition: all 0.3s ease;
    border: 1px solid transparent;
  }

  .btn-whatsapp-mobile:hover {
    background: #FFFFFF;
    color: #25d366;
    border-color: #25d366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.08);
  }

  .mobile-menu-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    padding: 0 24px;
  }

  /* Tablet specific overrides (768px - 1024px) */
  @media (min-width: 768px) and (max-width: 1024px) {
    .mobile-menu-links {
      padding: 0 28px;
    }
    .mobile-menu-divider {
      width: calc(100% - 56px);
    }
    .btn-quote-mobile {
      width: calc(100% - 56px);
    }
    .mobile-menu-contact {
      padding: 0 28px;
    }
    .btn-whatsapp-mobile {
      width: calc(100% - 56px);
    }
    .mobile-menu-socials {
      padding: 0 28px;
    }
  }

  .mobile-menu-socials a {
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .creative-director-page .creative-hero {
    min-height: 80vh;
    display: grid;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .creative-director-page .hero-copy {
    max-width: 760px;
    margin-top: 40px;
  }

  .creative-director-page .creative-hero .hero-overlay {
    background: radial-gradient(circle at top, rgba(255,255,255,0.85), rgba(252,250,247,0.75) 35%, rgba(252,250,247,0.95) 100%);
  }

  .creative-director-page .smoke-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.28;
  }

  .creative-director-page .smoke-background span {
    position: absolute;
    display: block;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(244,234,220,0.4), transparent 60%);
    filter: blur(36px);
    animation: driftSmoke 16s ease-in-out infinite;
  }

  .creative-director-page .smoke-background span:nth-child(1) {
    top: 12%;
    left: 18%;
    animation-duration: 18s;
  }

  .creative-director-page .smoke-background span:nth-child(2) {
    top: 40%;
    right: 10%;
    animation-duration: 22s;
  }

  .creative-director-page .smoke-background span:nth-child(3) {
    bottom: 14%;
    left: 20%;
    animation-duration: 20s;
  }

  @keyframes driftSmoke {
    0% { transform: translate(0, 0) scale(1); opacity: 0.18; }
    50% { transform: translate(14px, -20px) scale(1.12); opacity: 0.08; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.18; }
  }

  .creative-director-page .hero-copy-top h1,
  .creative-director-page .hero-copy-top h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 4.5vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--text-primary);
  }

  .creative-director-page .hero-copy-top p {
    font-size: 1.15rem;
    line-height: 1.9;
    max-width: 680px;
    color: var(--text-secondary);
  }

  .creative-director-page .director-portrait-frame {
    width: min(360px, 100%);
    margin: 0 auto;
    border-radius: 50%;
    padding: 12px;
    background: linear-gradient(180deg, rgba(184,146,77,0.15), rgba(255,255,255,0));
    box-shadow: var(--shadow-soft);
    animation: floatPortrait 8s ease-in-out infinite;
  }

  .creative-director-page .director-portrait-frame img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    border: 6px solid rgba(184,146,77,0.25);
    display: block;
  }

  @keyframes floatPortrait {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  .creative-director-page .director-copy h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 3.5vw, 3.2rem);
    margin-top: 18px;
    margin-bottom: 10px;
    color: var(--text-primary);
  }

  .creative-director-page .subtle-lead {
    font-size: 1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-secondary);
  }

  .creative-director-page #about-parth .copy-block p {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.85;
  }

  .creative-director-page .timeline-content {
    display: grid;
    gap: 18px;
  }

  .creative-director-page .timeline-content img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
  }

  .creative-director-page .feature-card {
    min-height: 320px;
  }

  .creative-director-page .feature-card h3 {
    font-size: 1.25rem;
  }

  .creative-director-page .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    text-transform: uppercase;
  }

  .creative-director-page .tedx-gallery {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
    align-items: start;
  }

  .creative-director-page .tedx-featured-card,
  .creative-director-page .tedx-thumbs button {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-card);
    overflow: hidden;
    background: var(--card-bg);
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  }

  .creative-director-page .tedx-featured-card:hover,
  .creative-director-page .tedx-thumbs button:hover {
    transform: translateY(-4px);
    border-color: rgba(184,146,77,0.65);
    box-shadow: var(--shadow-hover);
  }

  .creative-director-page .tedx-featured-card img,
  .creative-director-page .tedx-thumbs img {
    width: 100%;
    height: auto;
    display: block;
  }

  .creative-director-page .tedx-thumbs {
    display: grid;
    gap: 18px;
  }

  .creative-director-page .gallery-masonry {
    column-count: 2;
    column-gap: 20px;
  }

  .creative-director-page .gallery-masonry button {
    margin-bottom: 20px;
    width: 100%;
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
    transition: transform 0.35s ease;
  }

  .creative-director-page .gallery-masonry button:hover {
    transform: translateY(-6px);
  }

  .creative-director-page .gallery-masonry img {
    width: 100%;
    display: block;
    border-radius: 22px;
    border: 1px solid var(--border-color);
  }

  .creative-director-page .creative-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1.1;
    color: var(--text-primary);
    margin: 0 auto;
    max-width: 760px;
  }

  .creative-director-page .quote-author {
    margin-top: 22px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
  }

  .creative-director-page .creative-disclaimer {
    max-width: 960px;
    margin: 0 auto 40px;
    color: var(--text-muted);
    font-size: 12px;
    opacity: 0.45;
    line-height: 1.7;
    text-align: center;
  }

  .creative-director-page .lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 11000;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    padding: 24px;
  }

  .creative-director-page .lightbox.open {
    display: flex;
  }

  .creative-director-page .lightbox-frame {
    max-width: 960px;
    width: 100%;
    position: relative;
    text-align: center;
  }

  .creative-director-page .lightbox-close {
    position: absolute;
    top: -14px;
    right: -14px;
    border: none;
    background: rgba(255,255,255,0.12);
    color: #FFFFFF;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
  }

  .creative-director-page .lightbox img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 18px;
  }

  .creative-director-page .lightbox p {
    margin-top: 18px;
    color: #FFFFFF;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
  }

  @media (max-width: 900px) {
    .creative-director-page .creative-hero { padding-top: 100px; padding-bottom: 100px; }
    .creative-director-page .hero-copy-top h1 { font-size: clamp(2.8rem, 7vw, 3.4rem); }
    .creative-director-page .hero-copy-top p { max-width: 100%; }
    .creative-director-page .tedx-gallery { grid-template-columns: 1fr; }
    .creative-director-page .gallery-masonry { column-count: 1; }
    .creative-director-page #about-parth .container { grid-template-columns: 1fr; }
  }

  @media (max-width: 640px) {
    .creative-director-page .creative-hero { padding-top: 80px; padding-bottom: 80px; }
    .creative-director-page .director-portrait-frame { width: 260px; }
    .creative-director-page .feature-card { min-height: auto; }
  }

  .mobile-menu-socials a:hover {
    color: var(--gold-luxury);
  }
}

@media (max-width: 768px) {
  .brand.desktop-hide img {
    height: 48px !important;
  }
  
  .brand.desktop-hide span {
    display: inline-block !important;
    font-size: 1.2rem !important;
    letter-spacing: 0.04em !important;
  }
  
  .contact-widget {
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: flex;
    justify-content: flex-end;
  }
  
  .contact-popup {
    width: 100%;
    right: 0;
    bottom: 74px;
    padding: 24px;
  }
}

@media (min-width: 1025px) {
  .desktop-hide {
    display: none !important;
  }
}

/* ==========================================================================
   FACTORY GALLERY & LIGHTBOX SECTION
   ========================================================================== */

.factory-gallery-section {
  padding: 100px 0;
  background-color: var(--card-bg);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.factory-gallery-section .section-heading {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.factory-gallery-section .section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: #C49A4A;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.factory-gallery-section h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.factory-gallery-section .section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 300;
}

/* Asymmetric Masonry Grid */
.factory-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 32px;
  margin-top: 40px;
}

/* Base Card Styling */
.gallery-card {
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius-card);
  border: 1.5px solid rgba(196, 154, 74, 0.18);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  cursor: pointer;
  will-change: transform, box-shadow;
  display: block;
}

.gallery-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.gallery-card img {
  width: 100%;
  height: 116%; /* Taller to allow parallax shifting without revealing white edges */
  object-fit: cover;
  object-position: center center;
  will-change: transform;
}

/* Asymmetric Desktop Masonry Layout Grid Spans */
.gallery-card:nth-child(1) { grid-column: span 2; grid-row: span 2; } /* Large Featured */
.gallery-card:nth-child(2) { grid-column: span 1; grid-row: span 1; }
.gallery-card:nth-child(3) { grid-column: span 1; grid-row: span 2; } /* Tall */
.gallery-card:nth-child(4) { grid-column: span 1; grid-row: span 1; }
.gallery-card:nth-child(5) { grid-column: span 2; grid-row: span 1; } /* Wide */
.gallery-card:nth-child(6) { grid-column: span 1; grid-row: span 2; } /* Tall */
.gallery-card:nth-child(7) { grid-column: span 1; grid-row: span 1; }
.gallery-card:nth-child(8) { grid-column: span 1; grid-row: span 1; }
.gallery-card:nth-child(9) { grid-column: span 2; grid-row: span 2; } /* Large Featured 2 */
.gallery-card:nth-child(10) { grid-column: span 1; grid-row: span 1; }
.gallery-card:nth-child(11) { grid-column: span 1; grid-row: span 2; } /* Tall */
.gallery-card:nth-child(12) { grid-column: span 1; grid-row: span 1; }
.gallery-card:nth-child(13) { grid-column: span 2; grid-row: span 1; } /* Wide */
.gallery-card:nth-child(14) { grid-column: span 1; grid-row: span 1; }
.gallery-card:nth-child(15) { grid-column: span 1; grid-row: span 1; }

/* Image Overlays & Interactions (Hover States) */
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.8) 0%, rgba(17, 17, 17, 0.2) 60%, rgba(17, 17, 17, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 24px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-card-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.gallery-card-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-champagne);
  font-weight: 700;
}

.gallery-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  color: #FFFFFF;
  line-height: 1.25;
}

.gallery-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #C49A4A;
  font-weight: 700;
  margin-top: 8px;
  transition: color 0.3s ease;
}

/* Desktop-Only Hover Animations */
@media (min-width: 1025px) {
  .gallery-card {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease;
  }
  
  .gallery-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 30px 60px rgba(196, 154, 74, 0.22), 0 10px 20px rgba(0, 0, 0, 0.04);
    border-color: #C49A4A;
  }
  
  .gallery-card:hover .gallery-image-wrapper {
    transform: scale(1.08); /* Zoom the image wrapper inside to 108% */
  }
  
  .gallery-image-wrapper {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .gallery-card:hover .gallery-card-overlay {
    opacity: 1;
  }
  
  .gallery-card:hover .gallery-card-info {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Tablet & Mobile Layout Adaptations */
@media (max-width: 1024px) {
  /* Overlay is always visible on touch screens since hover doesn't exist */
  .gallery-card-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.85) 0%, rgba(17, 17, 17, 0) 50%);
    padding: 16px;
  }
  
  .gallery-card-info {
    transform: none;
    opacity: 1;
  }
  
  .gallery-card-title {
    font-size: 1.15rem;
  }
  
  .gallery-card-btn {
    display: none; /* Hide hover details button to preserve space on mobile/tablet */
  }
}

/* Tablet Layout (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .factory-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
    gap: 24px;
  }
  
  /* Symmetrical 2-column masonry mappings for Tablet */
  .gallery-card:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-card:nth-child(2) { grid-column: span 1; grid-row: span 1; }
  .gallery-card:nth-child(3) { grid-column: span 1; grid-row: span 2; }
  .gallery-card:nth-child(4) { grid-column: span 1; grid-row: span 1; }
  .gallery-card:nth-child(5) { grid-column: span 2; grid-row: span 1; }
  .gallery-card:nth-child(6) { grid-column: span 1; grid-row: span 2; }
  .gallery-card:nth-child(7) { grid-column: span 1; grid-row: span 1; }
  .gallery-card:nth-child(8) { grid-column: span 1; grid-row: span 1; }
  .gallery-card:nth-child(9) { grid-column: span 2; grid-row: span 2; }
  .gallery-card:nth-child(10) { grid-column: span 1; grid-row: span 1; }
  .gallery-card:nth-child(11) { grid-column: span 1; grid-row: span 2; }
  .gallery-card:nth-child(12) { grid-column: span 1; grid-row: span 1; }
  .gallery-card:nth-child(13) { grid-column: span 2; grid-row: span 1; }
  .gallery-card:nth-child(14) { grid-column: span 1; grid-row: span 1; }
  .gallery-card:nth-child(15) { grid-column: span 1; grid-row: span 1; }
}

/* Mobile Layout (<768px) */
@media (max-width: 767px) {
  .factory-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 36px;
    margin-top: 30px;
  }
  
  .gallery-card {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    height: 320px; /* Symmetrical height on mobile to prevent squishing */
  }
  
  .gallery-card img {
    height: 100%; /* No parallax on mobile for performance */
  }
}

/* ==========================================================================
   PREMIUM LIGHTBOX OVERLAY
   ========================================================================== */

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  user-select: none;
}

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

.lightbox-close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 100000;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close-btn:hover {
  transform: rotate(90deg);
  color: #C49A4A;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100000;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-nav-btn:hover {
  background: #FFFFFF;
  color: #111111;
  border-color: #FFFFFF;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.lightbox-nav-btn.prev-btn {
  left: 40px;
}

.lightbox-nav-btn.next-btn {
  right: 40px;
}

.lightbox-content {
  max-width: 85vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 99999;
}

.lightbox-img-container {
  width: 100%;
  max-height: 72vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 12px;
  border: 1.5px solid rgba(196, 154, 74, 0.3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  background: #0d0d0d;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  transform: scale(0.93) translateY(10px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.gallery-lightbox.active .lightbox-content img {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.lightbox-caption {
  color: var(--gold-champagne);
  margin-top: 24px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.5s ease 0.1s, opacity 0.5s ease 0.1s;
}

.gallery-lightbox.active .lightbox-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox Responsive Adjustments */
@media (max-width: 1024px) {
  .lightbox-nav-btn {
    display: none; /* Hide navigation buttons on mobile/tablet — use swipe gestures instead */
  }
  
  .lightbox-content {
    max-width: 92vw;
  }
  
  .lightbox-img-container {
    max-height: 65vh;
  }
  
  .lightbox-content img {
    max-height: 65vh;
  }
  
  .lightbox-caption {
    font-size: 1.3rem;
    margin-top: 16px;
    padding: 0 10px;
  }
}

/* ==========================================================================
   FEATURED CERTIFICATE CARD (TEDx APPRECIATION)
   ========================================================================== */

.reveal-up-scale {
  opacity: 0;
  transform: translateY(35px) scale(0.95);
  transition: opacity 0.95s cubic-bezier(0.25, 1, 0.5, 1), transform 0.95s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-up-scale.reveal-visible {
  opacity: 1;
  transform: none;
}

.featured-cert-card {
  background: var(--bg-primary);
  border: 1.5px solid rgba(196, 154, 74, 0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  width: 70%;
}

.featured-flex-container {
  display: flex;
  flex-direction: row;
  min-height: 380px;
}

.featured-img-side {
  flex: 1.1;
  position: relative;
  overflow: hidden;
  background: #faf9f6;
}

.featured-cert-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-content-side {
  flex: 1.3;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #C49A4A;
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  border-radius: 20px;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(196, 154, 74, 0.25);
}

/* Desktop-Only Hover Visual Enhancements */
@media (min-width: 1025px) {
  .featured-cert-card {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease;
  }
  
  .featured-cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(196, 154, 74, 0.22), 0 8px 24px rgba(0, 0, 0, 0.05);
    border-color: #C49A4A !important;
  }
  
  .featured-cert-card:hover .featured-cert-img {
    transform: scale(1.05);
  }
  
  .featured-cert-card:hover .cert-overlay {
    opacity: 1 !important;
  }
  
  .featured-cert-card button:hover {
    background: #C49A4A !important;
    color: #FFFFFF !important;
    border-color: #C49A4A !important;
  }
  
  /* Glass Reflection Shine Sweep */
  .featured-cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.22) 50%,
      rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    z-index: 5;
    pointer-events: none;
  }
  
  .featured-cert-card:hover::before {
    left: 150%;
    transition: left 1.1s cubic-bezier(0.25, 1, 0.5, 1);
  }
}

/* Tablet Layout Constraints */
@media (max-width: 1024px) {
  .featured-cert-card {
    width: 90%;
  }
  
  .featured-flex-container {
    flex-direction: column;
  }
  
  .featured-img-side {
    aspect-ratio: 4/3;
  }
  
  .featured-content-side {
    padding: 36px 30px !important;
  }
  
  .featured-cert-card .cert-overlay {
    display: none !important;
  }
}

/* Mobile Breakpoint Adjustments */
@media (max-width: 767px) {
  .featured-cert-card {
    width: 100% !important;
  }
  
  .featured-img-side {
    aspect-ratio: 4/3;
  }
  
  .featured-content-side {
    padding: 28px 20px !important;
  }
  
  .featured-content-side h4 {
    font-size: 1.5rem !important;
  }
}

/* Faint Luxury Dots Divider */
.cert-divider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  opacity: 0.75;
  margin: clamp(1.75rem, 3.6vw + 0.6rem, 3.4rem) 0;
  width: 100%;
}

.cert-divider-dots span {
  width: 6px;
  height: 6px;
  background-color: #C49A4A;
  border-radius: 50%;
  display: inline-block;
}

.cert-divider-dots span:nth-child(2) {
  width: 8px;
  height: 8px;
}

/* ==========================================================================
   SMART CONTACT MODAL & INLINE VALIDATION STYLES
   ========================================================================== */

/* Inline Form Errors */
.inline-error-msg {
  color: #d25a5a;
  font-size: 0.76rem;
  margin-top: 4px;
  display: block;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.01em;
  font-family: 'Manrope', sans-serif;
  animation: smart-error-fade 0.25s ease-out;
}

@keyframes smart-error-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

input.invalid,
select.invalid,
textarea.invalid {
  border-color: #d25a5a !important;
  box-shadow: 0 0 0 3px rgba(210, 90, 90, 0.08) !important;
}

/* Smart Contact Choice Modal Layout */
.smart-contact-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 16px;
}

.smart-contact-modal.active {
  opacity: 1;
  pointer-events: all;
}

.smart-contact-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.68);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.smart-contact-modal-content {
  position: relative;
  background: #FFFFFF;
  border: 1.5px solid rgba(196, 154, 74, 0.25);
  border-radius: 20px;
  width: min(460px, 100%);
  padding: 40px 32px 32px;
  box-shadow: 0 25px 60px rgba(184, 146, 77, 0.16), 0 10px 20px rgba(0, 0, 0, 0.06);
  z-index: 10;
  text-align: center;
  transform: scale(0.93) translateY(15px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.smart-contact-modal.active .smart-contact-modal-content {
  transform: scale(1) translateY(0);
}

.smart-contact-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-muted);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, transform 0.3s ease;
}

.smart-contact-close:hover {
  color: #C49A4A;
  transform: rotate(90deg);
}

.smart-contact-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.smart-contact-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-weight: 300;
}

.smart-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.smart-contact-btn {
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.smart-contact-btn.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  border-color: #25D366;
}

.smart-contact-btn.btn-whatsapp:hover {
  background: #20ba5a;
  border-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.28);
}

.smart-contact-btn.btn-email {
  background: #FFFFFF;
  color: var(--text-primary);
  border-color: rgba(196, 154, 74, 0.3);
}

.smart-contact-btn.btn-email:hover {
  background: var(--bg-primary);
  border-color: #C49A4A;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(196, 154, 74, 0.14);
}

.smart-contact-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.smart-contact-btn .btn-loader {
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-radius: 50%;
  display: none;
  animation: smart-spin 0.6s linear infinite;
}

.smart-contact-btn.loading .btn-loader {
  display: inline-block;
}

.smart-contact-btn.loading .btn-icon {
  display: none;
}

.smart-contact-btn.btn-whatsapp .btn-loader {
  border-top-color: #FFFFFF;
  border-left-color: #FFFFFF;
}

.smart-contact-btn.btn-email .btn-loader {
  border-top-color: #C49A4A;
  border-left-color: #C49A4A;
}

@keyframes smart-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.smart-contact-status {
  font-size: 0.82rem;
  color: #C49A4A;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  height: 18px;
  margin-bottom: 16px;
  transition: opacity 0.3s ease;
  display: block;
}

.smart-contact-status.visible {
  opacity: 1;
}

.smart-contact-cancel {
  background: none;
  border: none;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}

.smart-contact-cancel:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

@media (max-width: 480px) {
  .smart-contact-modal-content {
    padding: 32px 20px 24px;
  }
  .smart-contact-title {
    font-size: 1.45rem;
  }
}




