/* =========================================
   SAUBHAGYA BEAUTY CARE — Global + Home Page CSS
   Refined color scheme based on logo
   ========================================= */

/* ── CSS Variables ── */
:root {
  /* Primary Brand Colors (from logo) */
  --primary: #b32a58;
  --primary-dark: #8a1d40;
  --primary-light: #d64778;
  --secondary: #d13a69;
  --secondary-light: #e65c8a;
  
  /* Accent Gold (from logo) */
  --accent: #c69b52;
  --accent-light: #dfb66f;
  --accent-dark: #987132;
  --accent-glow: rgba(198, 155, 82, 0.3);
  
  /* Supporting Colors */
  --dark-olive: #4a1325;
  --olive-darker: #2f0b17;
  --olive-medium: #6b1e38;
  --olive-light: #8e2b4d;
  
  /* Neutrals */
  --bg: #ffffff;
  --bg-light: #fdfafb;
  --bg-cream: #fffdfa;
  --bg-card: #ffffff;
  --bg-dark: #2a111a;
  --footer-bg: #2f0b17;
  
  /* Text */
  --text: #2b1e22;
  --text-muted: #6b5a5f;
  --text-light: #f4ecf0;
  
  /* UI Elements */
  --white: #ffffff;
  --star: #f5a623;
  --success: #2d8f47;
  --error: #c0392b;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #b32a58 0%, #d13a69 100%);
  --gradient-gold: linear-gradient(135deg, #b8941e 0%, #e8ce78 100%);
  --gradient-hero: linear-gradient(135deg, rgba(138, 29, 64, 0.85) 0%, rgba(179, 42, 88, 0.6) 50%, rgba(0, 0, 0, 0.35) 100%);
  --gradient-warm: linear-gradient(135deg, #fffdfa 0%, #fdfafb 100%);
  
  /* Shadows */
  --shadow: 0 8px 32px rgba(179, 42, 88, 0.12);
  --shadow-hover: 0 16px 48px rgba(179, 42, 88, 0.22);
  --shadow-gold: 0 8px 32px rgba(184, 148, 30, 0.25);
  --shadow-dark: 0 24px 64px rgba(0, 0, 0, 0.35);
  --shadow-header: 0 4px 24px rgba(0, 0, 0, 0.10);
  
  /* Borders */
  --border-primary: rgba(179, 42, 88, 0.15);
  --border-gold: rgba(184, 148, 30, 0.25);
  --border-white: rgba(255, 255, 255, 0.15);
  
  /* Radius */
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  
  /* Transitions */
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Sizing */
  --header-h: 80px;
  
  /* Fonts */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
.no-scroll {
  overflow: hidden;
}

/* ── Container ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ── Section Spacing ── */
.section {
  padding: 100px 0;
}
.bg-light {
  background: var(--bg-light);
}
.bg-cream {
  background: var(--bg-cream);
}
.bg-dark-olive {
  background: var(--dark-olive);
}

/* ── Section Header ── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(4, 69, 73, 0.08);
  padding: 6px 18px;
  border-radius: 40px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 18px;
}
.section-title em {
  font-style: italic;
  color: var(--primary);
}
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}
.section-header.light .section-title {
  color: var(--white);
}
.section-header.light .section-desc {
  color: rgba(255, 255, 255, 0.7);
}
.section-cta {
  text-align: center;
  margin-top: 50px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

/* PRIMARY BUTTON - hover to gold */
.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(4, 69, 73, 0.3);
}
.btn-primary:hover {
  background: var(--gradient-gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184, 148, 30, 0.4);
}

/* OUTLINE BUTTON - hover to gold */
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--gradient-gold);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184, 148, 30, 0.3);
}

/* SMALL BUTTON - hover to gold */
.btn-sm {
  padding: 9px 20px;
  font-size: 0.82rem;
}
.btn-sm:hover {
  background: var(--gradient-gold) !important;
  color: var(--white) !important;
  border-color: var(--accent) !important;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* HERO PRIMARY BUTTON - already gold, hover to teal */
.btn-hero-primary {
  background: var(--gradient-gold);
  color: var(--white);
  padding: 16px 36px;
  font-size: 1rem;
  box-shadow: 0 4px 24px rgba(184, 148, 30, 0.4);
}
.btn-hero-primary:hover {
  background: var(--gradient-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(4, 69, 73, 0.4);
}

/* HERO SECONDARY BUTTON - hover to gold */
.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 16px 36px;
  font-size: 1rem;
  backdrop-filter: blur(8px);
}
.btn-hero-secondary:hover {
  background: var(--gradient-gold);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(184, 148, 30, 0.3);
}

/* ACCENT BUTTON (View Prices) - hover to gold */
.btn-accent {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(4, 69, 73, 0.3);
}
.btn-accent:hover {
  background: var(--gradient-gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184, 148, 30, 0.4);
}

/* GOLD BUTTON - hover to primary */
.btn-gold {
  background: var(--gradient-gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(184, 148, 30, 0.3);
}
.btn-gold:hover {
  background: var(--gradient-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(4, 69, 73, 0.4);
}

/* HEADER CTA - hover to gold */
.header-cta {
  flex-shrink: 0;
  margin-left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--gradient-primary);
  color: var(--white);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(4, 69, 73, 0.25);
}
.header-cta:hover {
  background: var(--gradient-gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184, 148, 30, 0.4);
}

/* MOBILE CTA - hover to gold */
.mobile-cta-wrapper .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  font-size: 1rem;
  gap: 10px;
  border-radius: 12px;
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(4, 69, 73, 0.25);
}
.mobile-cta-wrapper .btn:hover {
  background: var(--gradient-gold) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184, 148, 30, 0.4);
}

/* ── Glass Morphism ── */
.glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

/* ── Fade-in Animation ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   HEADER
   ========================================= */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(4, 69, 73, 0.08);
  transition: var(--transition);
}
#main-header.scrolled {
  box-shadow: var(--shadow-header);
  height: 70px;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 24px;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  z-index: 1001;
}
.logo img {
  height: 60px;
  width: 55px;
  display: block;
}

#nav-menu {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(4, 69, 73, 0.08);
}
.nav-link i {
  display: none;
}

.mobile-cta-wrapper {
  display: none !important;
}
.hamburger {
  display: none;
}
.nav-overlay {
  display: none !important;
}

/* ── Mobile Navigation ── */
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    position: relative;
    z-index: 1001;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  .hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .header-cta {
    display: none !important;
  }

  #nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 340px;
    height: 100vh;
    background: #ffffff;
    padding: 90px 28px 40px;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 999;
    display: block;
    margin-left: 0;
  }
  #nav-menu.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    width: 100%;
    margin-bottom: 20px;
  }
  .nav-link {
    padding: 14px 20px;
    width: 100%;
    border-radius: 10px;
    font-size: 1.05rem;
    white-space: normal;
    border-bottom: 1px solid rgba(4, 69, 73, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .nav-link i {
    display: none !important;
  }
  .nav-link:last-child {
    border-bottom: none;
  }
  .nav-link:hover,
  .nav-link.active {
    background: rgba(4, 69, 73, 0.08);
  }

  .mobile-cta-wrapper {
    display: block !important;
    margin-top: 16px;
    padding-top: 20px;
    border-top: 2px solid rgba(4, 69, 73, 0.1);
  }
  .mobile-cta-wrapper .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
    gap: 10px;
    border-radius: 12px;
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(4, 69, 73, 0.25);
  }
  .mobile-cta-wrapper .btn:hover {
    background: var(--gradient-gold) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(184, 148, 30, 0.4);
  }
  .mobile-cta-wrapper .btn i {
    display: inline-flex !important;
    font-size: 1.1rem;
  }

  .nav-overlay {
    display: none !important;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
  }
  .nav-overlay.active {
    display: block !important;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0 16px;
  }
  #nav-menu {
    max-width: 100%;
    padding: 80px 20px 30px;
  }
  .nav-link {
    padding: 12px 16px;
    font-size: 1rem;
  }
  .mobile-cta-wrapper .btn {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: calc(var(--header-h) + 5px);
  padding-bottom: 60px;
}

@media (max-width: 1024px) {
  .hero {
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 50px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: calc(var(--header-h) + 10px);
    padding-bottom: 40px;
    min-height: 90vh;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: calc(var(--header-h) + 30px);
    padding-bottom: 30px;
    min-height: 85vh;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../images/hero3.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--gradient-hero);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 20px 24px;
  margin-top: 0;
}

@media (max-width: 768px) {
  .hero-content {
    padding: 10px 16px;
  }
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 20px;
  border-radius: 40px;
  border: 1px solid rgba(184, 148, 30, 0.3);
}

@media (max-width: 480px) {
  .hero-tagline {
    font-size: 0.65rem;
    padding: 6px 14px;
    letter-spacing: 2px;
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
}

.hero-title em {
  font-style: italic;
  color: var(--accent-light);
  display: block;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 40px;
}

@media (max-width: 768px) {
  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 30px;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .hero-desc {
    font-size: 0.85rem;
    margin-bottom: 24px;
    padding: 0 5px;
  }
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 24px 40px;
  flex-wrap: wrap;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .hero-stats {
    gap: 20px;
    padding: 20px 24px;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    flex-wrap: wrap;
  }
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent-light);
}

@media (max-width: 480px) {
  .stat strong {
    font-size: 1.4rem;
  }
}

.stat span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 480px) {
  .stat span {
    font-size: 0.6rem;
    letter-spacing: 0.5px;
  }
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .stat-divider {
    display: none;
  }
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-scroll {
    bottom: 20px;
  }
}

.hero-scroll a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  display: block;
}

@media (max-width: 480px) {
  .hero-scroll a {
    font-size: 1rem;
  }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* =========================================
   PAGE HERO (Common across inner pages)
   ========================================= */
.page-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: calc(var(--header-h) + 30px);
  padding-bottom: 50px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 55vh;
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .page-hero {
    min-height: 50vh;
    padding-top: calc(var(--header-h) + 50px);
    padding-bottom: 30px;
  }
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: url('../images/hero2.webp') center/cover no-repeat;
  opacity: 0.15;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 40px 24px;
  max-width: 700px;
}

@media (max-width: 768px) {
  .page-hero-content {
    padding: 20px 16px;
  }
}

@media (max-width: 480px) {
  .page-hero-content {
    padding: 10px 12px;
  }
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  margin: 16px 0 20px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .page-hero-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin: 12px 0 16px;
  }
}

@media (max-width: 480px) {
  .page-hero-title {
    font-size: 1.6rem;
    margin: 10px 0 12px;
  }
}

.page-hero-title em {
  color: var(--accent-light);
  font-style: italic;
}

.page-hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
  margin: 0 auto 28px;
}

@media (max-width: 768px) {
  .page-hero-desc {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .page-hero-desc {
    font-size: 0.8rem;
    margin-bottom: 16px;
    padding: 0 8px;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 480px) {
  .breadcrumb {
    font-size: 0.7rem;
    gap: 6px;
  }
}

.breadcrumb a {
  color: var(--accent-light);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb i {
  font-size: 0.65rem;
}
/* =========================================
   ABOUT SECTION - PRESERVE ALL CONTENT
   ========================================= */

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  overflow: hidden;
}

.about-left {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 80px 0;
}

.about-left-inner {
  max-width: 560px;
  margin-left: auto;
  padding: 0 64px 0 40px;
}

.about-new-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-new-title em {
  font-style: italic;
  color: var(--primary);
}

.about-new-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
  border-left: 2px solid rgba(4, 69, 73, 0.12);
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 0 16px 24px;
  border-bottom: 1px solid rgba(4, 69, 73, 0.06);
  transition: var(--transition);
}

.pillar-item:last-child {
  border-bottom: none;
}

.pillar-item:hover {
  background: rgba(4, 69, 73, 0.03);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
  margin-left: -24px;
  box-shadow: 0 4px 16px rgba(4, 69, 73, 0.25);
}

.pillar-item > div:last-child {
  display: flex;
  flex-direction: column;
}

.pillar-item strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.pillar-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.about-cta-btn {
  margin-top: 4px;
}

.about-cta-btn:hover {
  background: var(--gradient-gold) !important;
  color: var(--white) !important;
  box-shadow: 0 8px 32px rgba(184, 148, 30, 0.4);
}

/* ── RIGHT SIDE - IMAGE ── */
.about-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  overflow: hidden;
}

.about-right-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--dark-olive) 0%, var(--olive-light) 55%, var(--primary) 100%);
  z-index: 0;
}

.about-right-bg::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(184, 148, 30, 0.08);
}

.about-right-bg::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.about-img-stack {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
}

.about-img-main-new {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  aspect-ratio: 3/4;
  max-height: 500px;
  border: 4px solid rgba(255, 255, 255, 0.12);
}

.about-img-main-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* ── Floating Chips ── */
.about-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 16px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.chip-top {
  top: 20px;
  left: -20px;
}

.chip-bottom {
  bottom: 40px;
  right: -20px;
}

.about-chip > i {
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
}

.about-chip strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.about-chip span {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* ── Years Ring Badge ── */
.about-years-ring {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 4px solid #fff;
  box-shadow: 0 8px 24px rgba(184, 148, 30, 0.4);
  z-index: 3;
}

.years-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.years-label {
  font-size: 0.56rem;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* =========================================
   RESPONSIVE - KEEP ALL CONTENT
   ========================================= */

@media (max-width: 1024px) {
  .about-section {
    grid-template-columns: 1fr;
  }

  .about-left-inner {
    max-width: 100%;
    padding: 0 40px;
  }

  .about-right {
    min-height: 480px;
    padding: 40px 30px;
  }

  .chip-top {
    top: 16px;
    left: 8px;
  }

  .chip-bottom {
    bottom: 24px;
    right: 8px;
  }

  .about-years-ring {
    width: 80px;
    height: 80px;
    bottom: -12px;
  }

  .years-number {
    font-size: 1.4rem;
  }

  .years-label {
    font-size: 0.5rem;
  }
}

@media (max-width: 768px) {
  .about-left {
    padding: 50px 0;
  }

  .about-left-inner {
    padding: 0 24px;
  }

  .about-right {
    min-height: 400px;
    padding: 30px 20px;
  }

  .about-img-stack {
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .about-img-main-new {
    max-height: 400px;
    border-radius: 20px;
    width: 100%;
  }

  /* Hide floating chips on tablets/mobile */
  .chip-top,
  .chip-bottom {
    display: none;
  }

  /* ── FIX: CENTER THE YEARS RING ON MOBILE ── */
  .about-years-ring {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 80px;
    height: 80px;
    margin: -30px auto 0;
    flex-shrink: 0;
  }

  .years-number {
    font-size: 1.4rem;
  }

  .years-label {
    font-size: 0.5rem;
  }
}

@media (max-width: 480px) {
  .about-left {
    padding: 40px 0;
  }

  .about-left-inner {
    padding: 0 16px;
  }

  .about-new-title {
    font-size: 1.8rem;
  }

  .about-new-desc {
    font-size: 0.92rem;
    margin-bottom: 28px;
  }

  .about-right {
    min-height: 320px;
    padding: 20px 16px;
  }

  .about-img-stack {
    max-width: 280px;
  }

  .about-img-main-new {
    max-height: 340px;
    border-radius: 16px;
    border-width: 3px;
  }

  /* ── FIX: CENTER THE YEARS RING ON MOBILE ── */
  .about-years-ring {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 70px;
    height: 70px;
    margin: -25px auto 0;
    border-width: 3px;
    flex-shrink: 0;
  }

  .years-number {
    font-size: 1.2rem;
  }

  .years-label {
    font-size: 0.45rem;
    letter-spacing: 0.3px;
  }

  .about-pillars {
    border-left: none;
    padding-left: 0;
  }

  .pillar-item {
    padding: 12px 0 12px 16px;
    gap: 14px;
  }

  .pillar-icon {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
    margin-left: -16px;
  }

  .pillar-item strong {
    font-size: 0.82rem;
  }

  .pillar-item span {
    font-size: 0.75rem;
  }

  .about-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.9rem;
  }
}

/* Extra small phones */
@media (max-width: 380px) {
  .about-img-stack {
    max-width: 240px;
  }

  .about-img-main-new {
    max-height: 280px;
  }

  .about-years-ring {
    width: 60px;
    height: 60px;
    margin: -20px auto 0;
  }

  .years-number {
    font-size: 1rem;
  }

  .years-label {
    font-size: 0.4rem;
  }
}
/* =========================================
   SERVICES SECTION
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.service-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(2, 45, 48, 0.7));
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px;
  color: var(--accent-light);
}
.service-body {
  padding: 28px;
}
.service-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.service-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.service-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.service-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-meta i {
  color: var(--primary);
}

/* Service card button hover */
.service-card .btn-accent:hover {
  background: var(--gradient-gold) !important;
  color: var(--white) !important;
  box-shadow: 0 8px 32px rgba(184, 148, 30, 0.4);
}

/* =========================================
   GALLERY SECTION
   ========================================= */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
  grid-auto-flow: dense;
}
.gal-item {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.gal-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 45, 48, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.gal-item:hover .gal-overlay {
  opacity: 1;
}
.gal-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
}
.why-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-gold);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px rgba(184, 148, 30, 0.3);
}
.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonial-slider {
  position: relative;
  min-height: 260px;
  margin-bottom: 40px;
}
.testimonial-slide {
  display: none;
  animation: fadeSlide 0.6s ease;
}
.testimonial-slide.active {
  display: flex;
  justify-content: center;
}
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.testimonial-card {
  max-width: 700px;
  padding: 48px 52px;
  border-radius: 24px;
  text-align: center;
}
.stars {
  color: var(--star);
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 28px;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
}
.testimonial-author span {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover {
  background: var(--gradient-gold);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(184, 148, 30, 0.3);
}
.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  transition: var(--transition);
}
.slider-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* =========================================
   QUICK CONTACT
   ========================================= */
.quick-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-details {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.contact-item>i {
  width: 44px;
  height: 44px;
  background: rgba(4, 69, 73, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item>div strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.contact-item>div span {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.quick-form {
  border-radius: 24px;
  padding: 40px;
}
.quick-form h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 28px;
  color: var(--text);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(4, 69, 73, 0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(4, 69, 73, 0.12);
}

/* Form submit button hover */
.btn-submit:hover {
  background: var(--gradient-gold) !important;
  color: var(--white) !important;
  box-shadow: 0 8px 32px rgba(184, 148, 30, 0.4);
}

.custom-select-wrapper {
  position: relative;
  user-select: none;
  width: 100%;
}
.custom-select {
  position: relative;
  display: flex;
  flex-direction: column;
}
.custom-select__trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: #fff;
  border: 1.5px solid rgba(4, 69, 73, 0.15);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.custom-select.open .custom-select__trigger {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(4, 69, 73, 0.12);
}
.custom-select-icon {
  font-size: 0.8rem;
  color: var(--text);
  transition: transform 0.3s ease;
}
.custom-select.open .custom-select-icon {
  transform: rotate(180deg);
}
.custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid var(--primary);
  border-top: none;
  border-bottom-left-radius: var(--radius-sm);
  border-bottom-right-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 10;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  max-height: 240px;
  overflow-y: auto;
}
.custom-select.open .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
.custom-option {
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.custom-option:hover {
  background: rgba(4, 69, 73, 0.08);
}
.custom-option.selected {
  background: var(--primary);
  color: #fff;
}
.form-group textarea {
  resize: vertical;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.75);
}
.footer-top {
  padding: 80px 0 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  margin: 20px 0 28px;
}
.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  font-size: 0.9rem;
}
.social-links a:hover {
  background: var(--gradient-gold);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(184, 148, 30, 0.3);
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: #fff;
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--accent-light);
  padding-left: 4px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 10px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.85rem;
}
.footer-credit a {
  color: var(--accent-light);
  transition: var(--transition);
}
.footer-credit a:hover {
  color: #fff;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .about-section {
    grid-template-columns: 1fr;
  }
  .about-left-inner {
    max-width: 100%;
    padding: 0 40px;
  }
  .about-right {
    min-height: 480px;
  }
  .chip-top {
    top: 16px;
    left: 8px;
  }
  .chip-bottom {
    bottom: 24px;
    right: 8px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }
  .about-left-inner {
    padding: 0 24px;
  }
  .chip-top,
  .chip-bottom {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .quick-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 20px;
    padding: 20px 24px;
  }
  .stat-divider {
    display: none;
  }
  .testimonial-card {
    padding: 32px 24px;
  }
  .about-years-ring {
    width: 70px;
    height: 70px;
  }
  .years-number {
    font-size: 1.2rem;
  }
  .years-label {
    font-size: 0.48rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-btns .btn {
    text-align: center;
    justify-content: center;
  }
  .gallery-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
  .container {
    padding: 0 16px;
  }
  .about-right {
    padding: 40px 20px;
    min-height: 350px;
  }
  .about-img-main-new {
    max-height: 350px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
}