/* ============================================================
   DAS GROUP INTERNATIONAL — Luxury Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --white: #FFFFFF;
  --silk: #F8F9FA;
  --silk-dark: #EEF0F3;
  --navy: #512716;
  --navy-rgb: 81, 39, 22;
  --blue: #4A90E2;
  --blue-rgb: 74, 144, 226;
  --emerald: #0F8241;
  --emerald-rgb: 15, 130, 65;

  --text-dark: #1f0f09;
  /* Very dark navy */
  --text-mid: #512716;
  --text-muted: rgba(81, 39, 22, 0.6);

  --border: rgba(81, 39, 22, 0.1);
  --shadow-sm: 0 4px 16px rgba(81, 39, 22, 0.06);
  --shadow-md: 0 12px 32px rgba(81, 39, 22, 0.08);
  --shadow-lg: 0 24px 64px rgba(81, 39, 22, 0.12);
  --shadow-glow-blue: 0 8px 32px rgba(74, 144, 226, 0.25);
  --shadow-glow-emerald: 0 8px 32px rgba(15, 130, 65, 0.4);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
}

/* ---------- Utility ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--navy) !important;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 12px 32px rgba(81, 39, 22, 0.15);
}

.btn-primary:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(81, 39, 22, 0.25);
  color: var(--blue) !important;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(74, 144, 226, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 144, 226, 0.5);
}

/* ---------- TOP BAR ---------- */
.top-bar {
  background: #110804;
  padding: 12px 0;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-icon-svg {
  color: var(--emerald);
  opacity: 0.9;
  margin-right: 4px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.lang-btn:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.lang-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(81, 39, 22, 0.05);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  box-shadow: 0 10px 40px rgba(81, 39, 22, 0.06);
  background: rgba(255, 255, 255, 0.96);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  transition: padding 0.4s ease;
}

.navbar.scrolled .container {
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.nav-logo-img:hover {
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.05em;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--emerald);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--navy);
  font-weight: 600;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-primary:hover .cta-arrow {
  transform: translateX(4px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile Nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--blue);
}

.mobile-close {
  position: absolute;
  top: 32px;
  right: 32px;
  background: none;
  border: none;
  color: var(--navy);
  font-size: 32px;
  cursor: pointer;
  transition: transform 0.3s;
}

.mobile-close:hover {
  transform: rotate(90deg);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero_bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(81, 39, 22, 0.95) 0%,
      rgba(81, 39, 22, 0.7) 50%,
      rgba(81, 39, 22, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #FFFFFF !important;
  margin-bottom: 28px;
}







.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: #FFFFFF !important;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.15;
}



.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}



.font-light-italic {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 0.95em;
  color: rgba(255, 255, 255, 0.9);
}

.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { opacity: 0.5; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0.5; transform: scale(0.8); }
}

.hero-stats-panel {
  position: relative;
  z-index: 2;
  display: inline-flex;
  gap: 32px;
  margin-top: 60px;
  padding: 24px 40px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.hero-stats-panel .hero-stat {
  position: relative;
  padding-right: 32px;
}

.hero-stats-panel .hero-stat:last-child {
  padding-right: 0;
}

.hero-stats-panel .hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* Legacy stats */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  margin-top: 72px;
}

.hero-stat {
  position: relative;
  padding-right: 40px;
}

.hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-stat h3 {
  font-size: 2.8rem;
  color: #FFFFFF !important;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}

.hero-stat h3 span {
  color: var(--emerald);
  font-size: 2rem;
  vertical-align: super;
}

.hero-stat p {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF !important;
  margin-top: 8px;
  line-height: 1.4;
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    height: 0;
    opacity: 0;
  }

  50% {
    height: 50px;
    opacity: 1;
  }

  100% {
    height: 50px;
    opacity: 0;
  }
}

/* ---------- QUICK SERVICES BAR ---------- */
.quick-services {
  background: var(--white);
  padding: 0;
  border-bottom: 1px solid var(--silk-dark);
}

.qs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}


.qs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(81, 39, 22, 0.05);
  padding: 18px 12px;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
}

.qs-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(46, 204, 113, 0.1);
  /* Emerald soft glow */
  border-color: rgba(46, 204, 113, 0.3);
}

.qs-icon-svg {
  width: 40px;
  height: 40px;
  background: rgba(74, 144, 226, 0.05);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: all 0.4s ease;
}

.qs-text h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.qs-text p {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.qs-item:hover .qs-icon-svg {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.1);
}

/* EXPERTISE MODAL STYLES */
.expertise-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(9, 13, 19, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}

.expertise-content {
  background-color: var(--white);
  padding: 40px;
  border-radius: 24px;
  max-width: 500px;
  width: 90%;
  position: relative;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  color: var(--text-muted);
  font-size: 28px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: var(--red);
}

.expertise-modal-body h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.expertise-modal-body p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 25px;
}

.expertise-icon-lg {
  width: 80px;
  height: 80px;
  background: rgba(46, 204, 113, 0.1);
  /* Emerald tinted */
  color: var(--emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.qs-item:hover .qs-icon {
  transform: scale(1.08);
}

.qs-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}

.qs-text p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ---------- ABOUT ---------- */
.about {
  padding: 120px 0;
  background: var(--silk);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-main-img {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-main-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.about-badge-float {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--navy);
  border-radius: 20px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  color: white;
}

.abf-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(74, 144, 226, 0.25);
}

.abf-text p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.abf-text span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.about-content-inner>*+* {
  margin-top: 24px;
}

.about-features {
  margin-top: 32px !important;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.af-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.af-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  flex-shrink: 0;
  margin-top: 4px;
}

.af-check::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--emerald);
  border-radius: 50%;
}

.af-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}

.af-item p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------- PRODUCTS ---------- */
.products {
  padding: 120px 0;
  background: var(--white);
}

.products-header {
  text-align: center;
  margin-bottom: 64px;
}

.products-header .section-sub {
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--silk-dark);
  overflow: hidden;
  transition: var(--transition);

  cursor: pointer;
  position: relative;
  /* placeholder */
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: border-color 0.4s;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.product-card:hover::before {
  border-color: var(--gold);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.badge-new {
  background: var(--emerald);
  color: white;
}

.badge-best {
  background: var(--gold);
  color: white;
}

.product-img-wrap {
  position: relative;
  height: 240px;
  background: linear-gradient(145deg, var(--silk) 0%, var(--silk-dark) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.product-img-wrap img {
  height: 180px;
  width: auto;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 8px 24px rgba(10, 22, 40, 0.15));
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.08) translateY(-6px);
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  justify-content: center;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.overlay-btn {
  padding: 8px 20px;
  background: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  letter-spacing: 0.06em;
  transition: 0.3s;
}

.overlay-btn:hover {
  background: var(--gold);
  color: white;
}

.product-body {
  padding: 20px 22px 22px;
}

.product-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.product-name {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.product-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.product-price sup {
  font-size: 0.75rem;
  vertical-align: super;
}

.add-cart-btn {
  padding: 8px 18px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.add-cart-btn:hover {
  background: var(--blue);
  transform: translateY(-1px);
}

/* ---------- EXPERTISE ---------- */
.expertise {
  padding: 120px 0;
  background: var(--silk);
}

.expertise-header {
  text-align: center;
  margin-bottom: 64px;
}

.expertise-header .section-sub {
  margin: 0 auto;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.expertise-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid var(--silk-dark);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.expertise-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--emerald));
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}

.expertise-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.expertise-card:hover::after {
  transform: scaleX(1);
}

.exp-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(27, 79, 216, 0.08) 0%, rgba(26, 107, 69, 0.08) 100%);
  border: 1.5px solid rgba(27, 79, 216, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  transition: transform 0.3s;
}

.expertise-card:hover .exp-icon {
  transform: scale(1.1) rotate(-5deg);
}

.exp-title {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.exp-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.exp-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.expertise-card:hover .exp-link {
  gap: 14px;
}

/* ─── TESTIMONIALS v2 (GRID) ─── */
.testimonials {
  padding: 120px 0;
  background: #F8F9FA;
}

.testimonials-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}

.testi-card-v2 {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(81, 39, 22, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testi-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(81, 39, 22, 0.1);
}

.featured-testi {
  background: var(--navy);
  border-color: transparent;
  box-shadow: 0 24px 64px rgba(81, 39, 22, 0.25);
}

.featured-testi .testi-text,
.featured-testi .testi-quote-mark {
  color: var(--white) !important;
}

.featured-testi h4 {
  color: var(--white) !important;
}

.featured-testi p {
  color: rgba(255, 255, 255, 0.65) !important;
}

.featured-testi .stars {
  color: var(--emerald) !important;
}

.testi-quote-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 60px;
  line-height: 1;
  color: var(--emerald);
  opacity: 0.5;
  font-style: italic;
  margin-bottom: -10px;
}

.testi-card-v2 .stars {
  color: #F4C430;
  font-size: 14px;
  letter-spacing: 2px;
}

.testi-card-v2 .testi-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex-grow: 1;
  font-style: italic;
}

.testi-author-v2 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.testi-img-v2 {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(74, 144, 226, 0.3);
  flex-shrink: 0;
}

.testi-author-v2 h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.testi-author-v2 p {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
}


.footer-grid {
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.blog-grid {
  grid-template-columns: 1fr 1fr;
}

.blog-card.featured {
  grid-column: 1/3;
  grid-row: auto;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .top-bar-left {
    display: none;
  }

  .hero {
    min-height: 90vh;
  }

  
.font-light-italic {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 0.95em;
  color: rgba(255, 255, 255, 0.9);
}

.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { opacity: 0.5; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0.5; transform: scale(0.8); }
}

.hero-stats-panel {
  position: relative;
  z-index: 2;
  display: inline-flex;
  gap: 32px;
  margin-top: 60px;
  padding: 24px 40px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.hero-stats-panel .hero-stat {
  position: relative;
  padding-right: 32px;
}

.hero-stats-panel .hero-stat:last-child {
  padding-right: 0;
}

.hero-stats-panel .hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* Legacy stats */
.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 40px;
    margin-top: 72px;
  }

  .hero-stat {
    position: relative;
    padding-right: 40px;
  }

  .hero-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
  }







  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    order: -1;
  }

  .about-badge-float {
    bottom: -16px;
    left: 12px;
  }

  .qs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .qs-item {
    border-bottom: 1px solid var(--silk-dark);
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .testi-card {
    flex-direction: column;
    text-align: center;
  }

  .testi-text {
    font-size: 1.2rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card.featured {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: #FFFFFF !important;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.15;
  }

  .section-title {
    font-size: 2rem;
  }

  .scroll-top {
    bottom: 20px;
    right: 20px;
  }
}

/* NavBar CTA Override added per user request */
.nav-cta .btn-primary {
  color: var(--navy);
}

.text-emerald {
  color: var(--emerald);
  font-style: italic;
}

.glass-btn {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Hero Text Accessibility Fix */
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: #FFFFFF !important;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.95) !important;
}

.scroll-cue {
  color: rgba(255, 255, 255, 0.6) !important;
}


/* ─── CONTACT SECTION REDESIGN (LIGHT LUXE) ─── */
.contact-section {
  padding: 140px 0;
  background: var(--silk);
  /* Lighter background */
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Subtle light pattern */
  background: radial-gradient(circle at 15% 15%, rgba(46, 204, 113, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(74, 144, 226, 0.05) 0%, transparent 40%),
    url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><path d="M20 0L22.5 17.5L40 20L22.5 22.5L20 40L17.5 22.5L0 20L17.5 17.5L20 0Z" fill="%23512716" fill-opacity="0.02"/></svg>') repeat;
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.contact-info .section-label {
  color: var(--emerald);
  margin-bottom: 20px;
}

.contact-info .section-title {
  color: var(--navy);
  /* Dark text on light bg */
  margin-bottom: 24px;
}

.contact-info .section-sub {
  color: var(--text-muted);
  /* Darker muted text */
  margin-bottom: 48px;
  max-width: 500px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(81, 39, 22, 0.08);
  /* Darker border for contrast */
  border-radius: 16px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(81, 39, 22, 0.03);
}

.contact-card:hover {
  background: var(--white);
  border-color: rgba(46, 204, 113, 0.4);
  transform: translateX(10px);
  box-shadow: 0 16px 32px rgba(81, 39, 22, 0.08);
}

.cc-icon {
  width: 52px;
  height: 52px;
  background: rgba(46, 204, 113, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--emerald);
}

.cc-text h4 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 4px;
}

.cc-text p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.contact-trust {
  display: flex;
  gap: 60px;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--emerald);
}

.trust-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Glassmorphism Form (Light) */
.contact-form-glass {
  background: rgba(255, 255, 255, 0.75);
  /* Translucent white */
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 48px;
  border-radius: 24px;
  border: 1px solid rgba(81, 39, 22, 0.1);
  /* Visible border */
  box-shadow: 0 40px 80px rgba(81, 39, 22, 0.08);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--navy);
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid rgba(81, 39, 22, 0.15);
  border-radius: 12px;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}

.form-group select option {
  background: var(--white);
  color: var(--navy);
}

@media (max-width: 1024px) {
  .contact-grid {
    gap: 40px;
  }

  .contact-form-glass {
    padding: 32px;
  }
}

@media (max-width: 820px) {
  .contact-section {
    padding: 100px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-info {
    text-align: center;
  }

  .contact-info .section-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-cards {
    align-items: center;
  }

  .contact-trust {
    justify-content: center;
  }
}

/* ─── BLOG SECTION ─── */
.blog {
  padding: 140px 0;
  background: var(--silk);
}

.blog-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

/* Asymmetric editorial layout: big featured left + 2 stacked right */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
  align-items: stretch;
}

/* Right column stacks 2 cards vertically */
.blog-side-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ── Base card ── */
.blog-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  border: none;
  box-shadow: 0 10px 40px rgba(81, 39, 22, 0.05);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(81, 39, 22, 0.09);
}

/* ── Featured card image (tall) ── */
.blog-featured-card {
  height: 100%;
}

.blog-featured-card .blog-img-wrap {
  height: 380px;
}

/* ── Side card image (compact horizontal) ── */
.blog-side-card {
  flex-direction: row;
  align-items: stretch;
  flex: 1;
}

.blog-img-wrap--side {
  flex-shrink: 0;
  width: 145px;
  height: 100%;
  min-height: 160px;
}

.blog-img-wrap {
  position: relative;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-img {
  transform: scale(1.06);
}

.blog-cat-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 13px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cat-blue {
  background: rgba(255, 255, 255, 0.88);
  color: var(--blue);
}

.cat-gold {
  background: rgba(255, 255, 255, 0.88);
  color: #A0700A;
}

.cat-emerald {
  background: rgba(255, 255, 255, 0.88);
  color: #18894A;
}

.blog-body {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Side cards have less padding */
.blog-side-card .blog-body {
  padding: 20px 20px;
}

.blog-meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  font-weight: 600;
}

.blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 14px;
  transition: color 0.3s ease;
}

.blog-side-card .blog-title {
  font-size: 1.05rem;
  line-height: 1.4;
}

.blog-card:hover .blog-title {
  color: var(--blue);
}

.blog-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-side-card .blog-excerpt {
  font-size: 0.8rem;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.blog-read-more:hover {
  gap: 16px;
  color: var(--navy);
}

.blog-arrow {
  transition: transform 0.3s ease;
  font-style: normal;
}

.blog-read-more:hover .blog-arrow {
  transform: translateX(4px);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr 340px;
  }
}

@media (max-width: 820px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-side-col {
    flex-direction: row;
  }

  .blog-side-card {
    flex-direction: column;
    flex: 1;
  }

  .blog-img-wrap--side {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 540px) {
  .blog-side-col {
    flex-direction: column;
  }
}

/* ─── SITE FOOTER (ULTRA-PREMIUM) ─── */
.site-footer {
  background: #1a0d07;
  /* Deepest brand navy-brown */
  color: rgba(255, 255, 255, 0.65);
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Organic texture and emerald glow */
  background: radial-gradient(circle at 70% 20%, rgba(46, 204, 113, 0.1) 0%, transparent 50%),
    url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100" height="100" filter="url(%23noise)" opacity="0.04"/></svg>');
  pointer-events: none;
}

.site-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.2), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
  max-width: 340px;
}

.footer-logo .logo-icon {
  background: var(--emerald);
  box-shadow: 0 0 20px rgba(46, 204, 113, 0.3);
}

.footer-logo .logo-text {
  color: var(--white);
}

.footer-logo .logo-text span {
  color: var(--emerald);
}

.footer-desc {
  font-size: 0.94rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 28px;
  margin-bottom: 32px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.social-link:hover {
  background: rgba(46, 204, 113, 0.1);
  border-color: var(--emerald);
  color: var(--emerald);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(46, 204, 113, 0.1);
}

.footer-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--emerald);
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--emerald);
  transform: translateX(8px);
}

.footer-newsletter-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-newsletter-form {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.footer-newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: all 0.3s ease;
}

.footer-newsletter-form input:focus {
  border-color: var(--emerald);
  background: rgba(255, 255, 255, 0.06);
}

.footer-news-btn {
  width: 48px;
  height: 48px;
  background: var(--emerald);
  border: none;
  border-radius: 12px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.footer-news-btn:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
  box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
}

.footer-office {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-office p {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
}

.footer-bottom {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copyright p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--white);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1.5fr;
  }

  .footer-col:nth-child(2) {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 80px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 60px;
  }

  .footer-brand {
    max-width: 100%;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-col {
    text-align: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-newsletter-form {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 30px 0;
  }
}
/* ═══════════════════════════════════════════
   QUICK SERVICES (NOTRE SAVOIR-FAIRE)
══════════════════════════════════════════════ */
.quick-services {
  padding: 120px 0;
  background: var(--silk); /* Soft contrast against the dark hero */
  position: relative;
  z-index: 10;
}

.qs-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.qs-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 340px;
  background: var(--white);
  padding: 48px 32px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(81, 39, 22, 0.04);
  box-shadow: 0 10px 30px rgba(81, 39, 22, 0.03);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.qs-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--emerald);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.qs-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(81, 39, 22, 0.08);
  border-color: rgba(81, 39, 22, 0.08);
}

.qs-item:hover::before {
  transform: scaleX(1);
}

.qs-icon-svg {
  color: var(--emerald);
  margin-bottom: 28px;
  display: inline-flex;
  transition: transform 0.5s ease;
}

.qs-item:hover .qs-icon-svg {
  transform: scale(1.1);
}

.qs-icon-svg svg {
  width: 44px;
  height: 44px;
  stroke-width: 1px !important; /* Ultra-thin, luxury stroke */
}

.qs-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.qs-text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .qs-item {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 32px 24px;
  }
}

/* ═══════════════════════════════════════════
   À PROPOS / NOTRE ADN (ABOUT)
══════════════════════════════════════════════ */
.about {
  padding: 140px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-main-img {
  position: relative;
  z-index: 1;
  border-radius: 4px; /* Ultra-chic rigid fashion edge */
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(81, 39, 22, 0.08); /* Sophisticated grounding shadow */
  aspect-ratio: 3/4;
}

.about-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-visual:hover .about-main-img img {
  transform: scale(1.05);
}

.about-badge-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 24px 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(81, 39, 22, 0.05);
  transition: transform 0.6s ease;
}

.about-visual:hover .about-badge-float {
  transform: translateY(-8px);
}

.abf-icon {
  color: var(--emerald);
  display: flex;
}

.abf-text span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.08em;
}

.about-content-inner {
  padding-right: 40px;
}

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--emerald);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.section-title {
  font-family: 'Montserrat', sans-serif; 
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 32px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 48px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.af-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.af-icon {
  flex-shrink: 0;
  margin-top: 4px;
}

.af-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.af-item p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .about-visual {
    max-width: 80%;
    margin: 0 auto;
  }
  .about-badge-float {
    bottom: -20px;
    right: -20px;
  }
}

@media (max-width: 768px) {
  .about-visual {
    max-width: 100%;
  }
  .about-content-inner {
    padding-right: 0;
  }
}

/* ═══════════════════════════════════════════
   PRODUCTS / BOUTIQUE (NOS SOLUTIONS)
══════════════════════════════════════════════ */
.products {
  padding: 140px 0;
  background: var(--silk);
}

.products-header {
  text-align: center;
  margin-bottom: 80px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(81, 39, 22, 0.03);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(81, 39, 22, 0.08); /* Deep luxury shadow */
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  border-radius: 4px; /* sharper luxury look */
}

.badge-best { background: var(--emerald); }
.badge-new { background: var(--gold); }

.product-img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05); /* Slow elegant zoom */
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.overlay-btn {
  background: rgba(255, 255, 255, 0.8);
  color: var(--navy);
  border: 1px solid rgba(81, 39, 22, 0.1);
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 50px;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .overlay-btn {
  transform: translateY(0);
}

.overlay-btn:hover {
  background: var(--white);
  box-shadow: 0 8px 20px rgba(81, 39, 22, 0.1);
}

.product-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-cat {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--emerald);
  margin-bottom: 8px;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.1;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(81, 39, 22, 0.05);
  padding-top: 24px;
  margin-top: auto;
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}

.product-price sup {
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  top: -0.5em;
}

.add-cart-btn {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}

.add-cart-btn:hover {
  background: var(--navy);
  color: var(--white);
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ---------- WHATSAPP QUICK ORDER ---------- */
.card-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #25D366; /* WhatsApp official green */
  color: white;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
  text-decoration: none;
}

.wa-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 16px rgba(37, 211, 102, 0.4);
  background: #1EBE5D;
  color: white;
}

/* ---------- EXPERTISE HEADER ---------- */
.expertise-header {
  text-align: center;
  margin-bottom: 80px;
}

/* ---------- EXPERTISE MODAL (LUXURY REDESIGN) ---------- */
.expertise-modal {
  background: rgba(17, 8, 4, 0.6); /* Deep dark tint */
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  z-index: 10000; /* Front focus */
}

.expertise-content {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(81, 39, 22, 0.05);
  max-width: 550px;
  padding: 48px;
  transform: translateY(30px) scale(0.98);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.expertise-modal[style*="display: flex"] .expertise-content {
  transform: translateY(0) scale(1);
}

.close-modal {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 32px;
  font-weight: 300;
  color: var(--navy);
  opacity: 0.5;
  transition: all 0.3s ease;
  cursor: pointer;
  line-height: 1;
}
.close-modal:hover {
  opacity: 1;
  color: var(--emerald);
  transform: rotate(90deg);
}

.expertise-icon-lg {
  color: var(--emerald);
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}
.expertise-icon-lg svg {
  width: 56px;
  height: 56px;
  stroke-width: 1px !important;
}

.expertise-modal-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  text-align: center;
}

.expertise-modal-body p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  text-align: center;
  margin-bottom: 32px;
}

.expertise-modal-footer .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 18px 0;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  border-radius: 50px;
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
  transition: all 0.4s ease;
}
.expertise-modal-footer .btn-primary:hover {
  background: transparent;
  color: var(--navy);
}

/* ═══════════════════════════════════════════
   TESTIMONIALS (AFRO-LUXE)
══════════════════════════════════════════════ */
.testimonials {
  padding: 100px 0;
  background-color: var(--light-bg);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 70px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.testi-card-v2 {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(139, 115, 85, 0.05); /* Silk border */
  transition: all 0.4s ease;
  overflow: hidden;
  z-index: 1;
}

.testi-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.testi-quote-mark {
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 140px;
  font-family: 'Cormorant Garamond', serif;
  color: var(--silk);
  opacity: 0.15;
  line-height: 1;
  z-index: -1;
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 500;
}

.testi-author-v2 {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 20px;
}

.testi-img-v2 {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testi-avatar-mono {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald) 0%, var(--navy) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  letter-spacing: 1px;
}

.testi-author-v2 h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.testi-author-v2 p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.featured-testi {
  border: 1px solid var(--emerald);
  box-shadow: 0 10px 40px rgba(15, 130, 65, 0.08); /* Emerald glow */
}

/* ═══════════════════════════════════════════
   DOCTOR TESTIMONIAL BACKGROUND OVERRIDE (LE FOND)
══════════════════════════════════════════════ */
.featured-testi {
  background: var(--navy) !important;
  border-top: 4px solid var(--emerald) !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: none !important;
  box-shadow: 0 15px 50px rgba(15, 130, 65, 0.2) !important;
}

.featured-testi .testi-text {
  color: var(--white) !important;
  font-weight: 400 !important;
}

.featured-testi .testi-quote-mark {
  color: rgba(255, 255, 255, 0.05) !important;
}

.featured-testi .testi-author-v2 {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.featured-testi .testi-author-v2 h4 {
  color: var(--emerald) !important;
}

.featured-testi .testi-author-v2 p {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* ═══════════════════════════════════════════
   BLOG / ACTUALITÉS (SANTÉ MAG)
══════════════════════════════════════════════ */
.blog {
  padding: 100px 0;
  background-color: var(--white);
}

.blog-header {
  text-align: left;
  margin-bottom: 60px;
  max-width: 600px;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr; /* Asymmetric Magazine Layout */
  gap: 40px;
  align-items: stretch;
}

@media (max-width: 992px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
}

.blog-side-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.4s ease;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.03);
}

.blog-card:hover {
  box-shadow: 0 15px 50px rgba(15, 130, 65, 0.08); /* Emerald hint */
}

.blog-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.blog-featured-card .blog-img-wrap {
  aspect-ratio: 4/3;
  height: 100%;
  max-height: 480px;
}

.blog-img-wrap--side {
  aspect-ratio: 16/9;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-img {
  transform: scale(1.05); /* Cinematic slow zoom */
}

/* Glassmorphism Tags */
.blog-cat-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 14px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  background: rgba(17, 8, 4, 0.5); /* Tint */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.cat-blue { border-left: 2px solid #4A90E2; }
.cat-gold { border-left: 2px solid var(--gold); }
.cat-emerald { border-left: 2px solid var(--emerald); }

.blog-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.blog-featured-card .blog-title {
  font-size: 2.2rem;
}

.blog-card:hover .blog-title {
  color: var(--emerald);
}

.blog-excerpt {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  text-decoration: none;
  margin-top: auto;
  transition: all 0.3s ease;
}

.blog-arrow {
  margin-left: 8px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.blog-read-more:hover {
  color: var(--emerald);
}

.blog-read-more:hover .blog-arrow {
  transform: translateX(5px);
}

/* 
   BLOG SIDE CARD FIX: force column layout
 */
.blog-side-card {
  flex-direction: column !important;
}

.blog-img-wrap--side {
  width: 100% !important;
  height: auto !important;
  min-height: unset !important;
  aspect-ratio: 16/9 !important;
}

.blog-body {
  display: flex !important;
  flex-direction: column !important;
  padding: 24px !important;
  flex-grow: 1 !important;
}

.blog-excerpt {
  display: block !important;
  visibility: visible !important;
  overflow: visible !important;
  height: auto !important;
  max-height: none !important;
}

/* ═══════════════════════════════════════════
   FOOTER "BLACK EDITION"
══════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  padding: 80px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Brand Column */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-logo .logo-icon {
  background: var(--emerald);
  color: var(--white);
}

.footer-logo .logo-text {
  color: var(--white);
  font-size: 1.1rem;
}
.footer-logo .logo-text span {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
}

.footer-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
}

/* Social Links */
.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  border-color: var(--emerald);
  color: var(--emerald);
  background: rgba(15, 130, 65, 0.1);
  transform: translateY(-3px);
}

/* Columns */
.footer-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--emerald);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 6px;
}

/* Newsletter Form */
.footer-newsletter-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 24px;
}

.footer-newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 20px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.footer-news-btn {
  background: var(--emerald);
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  color: var(--white);
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.footer-news-btn:hover {
  background: var(--navy-dark, #0b1a2e);
}

/* Office Info */
.footer-office {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-office p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-office svg {
  color: var(--emerald);
  flex-shrink: 0;
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copyright p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--emerald);
}
