/* ============================================
   Raj Medicals & Cosmetics - Styles
   Mobile Responsive Design
   ============================================ */

/* CSS Variables */
/* Fix anchor scroll for fixed header */


:root {
  --med-blue: #0ea5e9;
  --med-blue-dark: #0284c7;
  --cosmetic-pink: #f08ea5;
  --muted: #6b7280;
  --bg: #fbfcfd;
  --card-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
  --radius: 14px;
  --radius-lg: 20px;
  --max-width: 1200px;
  --dark: #0f172a;
  --light-grid: rgba(255, 255, 255, 0.08);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
}

html,
body {
  height: 100%;
  background: var(--bg);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Accounts for fixed header */
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   HEADER (Fixed)
   ============================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1400;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(7, 17, 38, 0.04);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 16px rgba(2, 6, 23, 0.03);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white; /* clean background for logo */
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.12);
  overflow: hidden;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* ✅ prevents cropping */
  padding: 4px;        /* ✅ breathing space */
}


.brand h1 {
  font-size: 18px;
  margin: 0;
  font-weight: 800;
}

.brand-tagline {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

nav.desktop {
  display: flex;
  gap: 18px;
  align-items: center;
}

nav.desktop a {
  color: var(--muted);
  font-weight: 700;
  padding: 8px;
  border-radius: 8px;
  transition: color 0.2s ease;
}

nav.desktop a:hover {
  color: var(--med-blue);
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cta-visit {
  background: linear-gradient(90deg, var(--med-blue), var(--med-blue-dark));
  color: white;
  padding: 8px 14px;
  border-radius: 12px;
  font-weight: 800;
  box-shadow: 0 8px 28px rgba(14, 165, 233, 0.14);
  transition: transform 0.2s ease;
}

.cta-visit:hover {
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  border-radius: 8px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: 110px 20px 160px;
  margin-top: 64px;
  text-align: left;
  color: white;
  background: linear-gradient(135deg, var(--med-blue), var(--med-blue-dark));
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.22;
  pointer-events: none;
}

.hero-content {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  padding-left: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 56px;
  line-height: 1.05;
  font-weight: 800;
  margin: 0 0 18px;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: white;
  color: var(--med-blue-dark);
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 800;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 12px 36px rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.96);
  padding: 12px 26px;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  font-weight: 700;
  transition: background 0.2s ease;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 14px;
  border-radius: 12px;
  color: white;
  backdrop-filter: blur(4px);
}

.stat .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.stat-text strong {
  display: block;
  font-weight: 700;
}

.stat-text span {
  font-weight: 600;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  line-height: 0;
  z-index: 2;
}

.hero-wave svg {
  width: 100%;
  height: 160px;
  display: block;
}

/* ============================================
   ABOUT / LEGACY SECTION
   ============================================ */
.about-section {
  max-width: var(--max-width);
  margin: -40px auto 24px;
  padding: 24px;
  position: relative;
  z-index: 6;
}

.about-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  align-items: flex-start;
}

.founder-card {
  position: relative;
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f6fbff);
  box-shadow: var(--card-shadow);
}

.founder-photo {
  width: 220px;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 auto 14px;
}

.founder-photo img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(7, 17, 38, 0.04);
  box-shadow: 0 12px 36px rgba(2, 6, 23, 0.06);
  border-radius: 16px;
}

.founder-name {
  font-weight: 800;
  text-align: center;
  font-size: 18px;
  margin-bottom: 6px;
}

.founder-role {
  text-align: center;
  color: var(--med-blue);
  font-weight: 700;
  margin-bottom: 8px;
}

.founder-badge {
  position: absolute;
  right: 18px;
  bottom: 26px;
  background: linear-gradient(90deg, var(--med-blue), var(--med-blue-dark));
  color: white;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 800;
  box-shadow: 0 12px 36px rgba(14, 165, 233, 0.14);
}

.badge-years {
  font-size: 16px;
  font-weight: 900;
}

.about-content {
  background: white;
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(7, 17, 38, 0.04);
}

.about-content .eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.06);
  color: var(--med-blue);
  font-weight: 700;
  margin-bottom: 12px;
}

.about-content h3 {
  font-size: 26px;
  margin-bottom: 8px;
  font-weight: 800;
}

.about-content p.lead {
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 12px;
}

.about-content p.story {
  color: #263244;
  line-height: 1.6;
  margin-bottom: 18px;
}

.cards-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 18px;
  transition: transform 380ms cubic-bezier(0.2, 0.9, 0.2, 1);
  padding: 6px 8px 20px;
  align-items: stretch;
}

.feature-card {
  min-width: 280px;
  max-width: 320px;
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 12px 34px rgba(2, 6, 23, 0.06);
  border: 1px solid rgba(7, 17, 38, 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease;
  position: relative;
}

.feature-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.08), rgba(217, 154, 166, 0.04));
}

.feature-title {
  font-weight: 800;
  color: #071126;
  margin-bottom: 6px;
}

.feature-desc {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.10);
  z-index: 40;
}

.feature-card.active {
  transform: translateY(-18px) scale(1.04);
  box-shadow: 0 40px 100px rgba(2, 6, 23, 0.14);
  z-index: 60;
}

.carousel-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 12px;
}

.nav-btn {
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  border: 0;
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.06);
  font-weight: 800;
  transition: transform 0.2s ease;
}

.nav-btn:hover:not(:disabled) {
  transform: scale(1.05);
}

.nav-btn:disabled {
  opacity: 0.45;
  cursor: default;
}

/* ============================================
   OFFERINGS SECTION
   ============================================ */
.offer-section {
  max-width: var(--max-width);
  margin: 32px auto 24px;
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fbfcfd, #ffffff);
}

.offer-header {
  text-align: center;
  margin-bottom: 26px;
}

.offer-eyebrow {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(240, 142, 165, 0.14);
  color: #d14a72;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.offer-header h3 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 6px;
}

.offer-header p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 18px;
}

.offer-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px 26px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.12);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
}

.offer-header-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.offer-icon {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.offer-icon svg {
  width: 24px;
  height: 24px;
}

.offer-icon-med {
  background: linear-gradient(135deg, #0ea5e9, #34c5ff);
}

.offer-icon-cos {
  background: linear-gradient(135deg, #f08ea5, #f6b6c5);
}

.offer-title {
  font-size: 20px;
  font-weight: 800;
}

.offer-subtitle {
  font-size: 13px;
  font-weight: 600;
}

.offer-subtitle-med {
  color: var(--med-blue);
}

.offer-subtitle-cos {
  color: #d14a72;
}

.offer-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.offer-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #9ca3af;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid transparent;
}

.chip svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.chip-med {
  background: rgba(14, 165, 233, 0.1);
  color: #0284c7;
  border-color: rgba(14, 165, 233, 0.16);
}

.chip-cos {
  background: #fde6ec;
  color: #c14970;
  border-color: #f8c8d8;
}

.offer-divider {
  height: 1px;
  background: rgba(226, 232, 240, 0.9);
  margin: 8px 0 12px;
}

.offer-footer-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.offer-footer-row-med {
  color: var(--med-blue);
}

.offer-footer-row-cos {
  color: #d14a72;
}

.offer-footer-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(14, 165, 233, 0.08);
  flex-shrink: 0;
}

.offer-footer-icon svg {
  width: 16px;
  height: 16px;
}

.offer-footer-icon.cos {
  background: rgba(240, 142, 165, 0.12);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
  max-width: var(--max-width);
  margin: 60px auto;
  padding: 0 20px;
}

.gallery-header {
  text-align: center;
  margin-bottom: 24px;
}

.gallery-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(240, 142, 165, 0.14);
  color: #d14a72;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.gallery-header h3 {
  font-size: 28px;
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  grid-auto-flow: dense;
}

.gallery-item.main {
  grid-column: span 4;
  aspect-ratio: 21/9;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);
}

.gallery-item.sub {
  grid-column: span 1;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 30px 24px 20px;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.overlay-title {
  font-weight: 700;
  font-size: 18px;
}

.overlay-subtitle {
  font-size: 13px;
  opacity: 0.9;
}

/* CTA */
.gallery-preview-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px; /* Space between the grid and the button */
  width: 100%;      /* Ensure it takes full width to allow centering */
}

/* Optional: Make the button slightly more prominent */
.gallery-preview-cta .btn-primary {
  background: linear-gradient(135deg, var(--med-blue), var(--med-blue-dark));
  color: #ffffff !important; /* Forces white text */
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.2);
  transition: all 0.3s ease;
  border: none;
}

.gallery-preview-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(14, 165, 233, 0.3);
  filter: brightness(1.1);
}

/* ===============================
   LIGHTBOX
   =============================== */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 20px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 95%;
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: none;
  font-size: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ============================================
   CAREERS SECTION
   ============================================ */
.career-section {
  max-width: var(--max-width);
  margin: 32px auto;
  padding: 0 20px;
}

.career-card {
  background: linear-gradient(135deg, var(--med-blue), var(--med-blue-dark));
  border-radius: 22px;
  padding: 42px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  color: white;
  position: relative;
  overflow: hidden;
}

.career-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.22;
  pointer-events: none;
}

.career-icon {
  background: rgba(255, 255, 255, 0.12);
  padding: 24px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.career-content {
  flex: 1;
  position: relative;
}

.career-content h2 {
  font-size: 32px;
  margin: 0 0 10px;
  font-weight: 800;
}

.career-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0 0 18px;
}

.career-btn-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 18px;
}

.career-btn {
  background: white;
  color: var(--med-blue-dark);
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.14);
  transition: transform 0.2s ease;
}

.career-btn:hover {
  transform: translateY(-2px);
}

.career-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin: 18px 0;
}

.career-apply {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

.career-apply a {
  color: white;
  text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-dark {
  background: #0f172a;
  color: #e2e8f0;
  padding: 64px 20px;
  border-radius: 0 0 12px 12px;
  margin-top: 42px;
}

.footer-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 40px;
}

.footer-brand {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}

.brand-blue {
  color: var(--med-blue);
}

.brand-pink {
  color: var(--cosmetic-pink);
}

.footer-text {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-hours {
  color: #cbd5e1;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #f1f5f9;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.footer-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #1e293b;
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

.footer-label {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
  font-weight: 600;
}

.footer-value {
  margin: 2px 0 0 0;
  color: #e2e8f0;
  font-size: 15px;
  font-weight: 600;
}

.footer-link {
  display: block;
  margin-bottom: 10px;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--med-blue);
}

.footer-divider {
  height: 1px;
  background: #1e293b;
  margin: 40px auto 20px;
  max-width: var(--max-width);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 12px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #94a3b8;
  font-size: 14px;
  padding: 0 20px;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===============================
   GALLERY PAGE (Masonry Grid)
   =============================== */

.gallery-masonry {
  column-count: 3;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.08);
  cursor: pointer;
  background: #fff;
}



.gallery-item:hover img {
  transform: scale(1.05);
}

/* Tablet */
@media (max-width: 1024px) {
  .gallery-masonry {
    column-count: 2;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .gallery-masonry {
    column-count: 1;
  }
}


/* ============================================
   MOBILE DRAWER
   ============================================ */
.mobile-drawer {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1600;
  background: rgba(2, 6, 23, 0.45);
  align-items: flex-start;
  justify-content: flex-end;
}

.mobile-drawer.open {
  display: flex;
}

.mobile-drawer .menu {
  width: 300px;
  max-width: 86%;
  height: 100%;
  background: #fff;
  padding: 18px;
  border-radius: 12px 0 0 12px;
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.4);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-drawer a {
  padding: 12px 8px;
  color: var(--dark);
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.mobile-drawer a:hover {
  background: rgba(14, 165, 233, 0.04);
  color: var(--med-blue);
}

.close-drawer-btn {
  background: none;
  border: 0;
  padding: 12px;
  font-weight: 700;
  color: var(--muted);
  text-align: left;
}

/* ============================================
   MOBILE CALLBAR
   ============================================ */
/* ============================================
   MOBILE STICKY CALL BAR (NOTE STYLE)
   ============================================ */
.mobile-callbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1700;

  background: linear-gradient(90deg, var(--med-blue), var(--med-blue-dark));
  padding: 14px 16px;

  box-shadow: 0 -8px 30px rgba(2, 6, 23, 0.25);

  justify-content: center;
  align-items: center;
}


.callbar-info {
  display: flex;
  gap: 10px;
  align-items: center;
}

.callbar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
}

.callbar-title {
  font-weight: 800;
  color: white;
}

.callbar-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  transition: transform 0.2s ease;
}

.call-btn:hover {
  transform: scale(1.05);
}

.call-number {
  font-weight: 800;
  color: white;
}

/* ============================================
   FOCUS STATES
   ============================================ */
a:focus,
button:focus {
  outline: 3px solid rgba(14, 165, 233, 0.18);
  outline-offset: 3px;
  border-radius: 8px;
}



/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */
@media (max-width: 980px) {
  nav.desktop {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
  }

  .career-card {
    flex-direction: column;
    gap: 18px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item.main {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */
@media (max-width: 720px) {
  /* Header */
  .brand h1 {
    font-size: 14px;
  }

  .brand-tagline {
    font-size: 10px;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
  }

  .cta-visit {
    padding: 6px 10px;
    font-size: 13px;
  }

  /* Hero */
  .hero {
    padding: 64px 16px 120px;
  }

  .hero-content {
    padding-left: 12px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .stat {
    width: 100%;
  }

  /* About Section */
  .about-section {
    padding: 16px;
  }

  .founder-photo {
    width: 160px;
  }

  .founder-card {
    padding: 18px;
  }

  .about-content {
    padding: 18px;
  }

  .about-content h3 {
    font-size: 22px;
  }

  .cards-row {
    flex-direction: column;
  }

  .carousel-nav {
    flex-direction: row;
    margin-left: 0;
    margin-top: 12px;
    justify-content: center;
  }

  .feature-card {
    min-width: 100%;
  }

  /* Offerings */
  .offer-section {
    padding: 16px;
  }

  .offer-header h3 {
    font-size: 24px;
  }

  .offer-card {
    padding: 18px;
  }

  .offer-header-row {
    gap: 12px;
  }

  .offer-icon {
    width: 50px;
    height: 50px;
  }

  .offer-title {
    font-size: 18px;
  }

  /* Gallery */
  .gallery-section {
    padding: 0 16px;
  }

  .gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .gallery-item.main {
    aspect-ratio: 3/2;
  }

  

  /* Careers */
  .career-section {
    padding: 0 16px;
  }

  .career-card {
    padding: 28px 18px;
  }

  .career-content h2 {
    font-size: 24px;
  }

  .career-btn-wrapper {
    justify-content: center;
  }

  .career-btn {
    width: 100%;
    text-align: center;
  }

  /* Footer */
  .footer-dark {
    padding: 42px 16px;
  }

  .footer-brand {
    font-size: 22px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 0 16px;
  }

  /* Show Mobile Callbar */
  .mobile-callbar {
    display: flex;
  }
}

/* ===============================
   COSMETICS LEGACY SECTION
================================ */
.cosmetics-legacy {
  padding: 80px 20px;
  background: #f8fafc;
}

.cosmetics-card {
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.08);
  align-items: center;
}

.cosmetics-image img {
  width: 100%;
  border-radius: 14px;
  display: block;
  object-fit: cover;
}

.cosmetics-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cosmetics-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #e11d48;
}

.cosmetics-content h3 {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
}

.cosmetics-content p {
  color: #475569;
  line-height: 1.7;
  font-size: 15px;
}

.cosmetics-brands {
  margin-top: 18px;
}

.cosmetics-brands span {
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  display: block;
  margin-bottom: 10px;
}

.brand-logos {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.brand-logos img {
  height: 28px;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.brand-logos img:hover {
  opacity: 1;
}

/* ============================================
   COSMETICS SECTION CTA (FINAL FIXED VERSION)
   Clean • Premium • Balanced
================================ */

/* Ensure proper alignment */
.cosmetics-content {
  align-items: flex-start;
  max-width: 520px;
}

/* Option 1: Premium TEXT LINK (Recommended) */
.explore-link {
  margin-top: 12px;
  font-weight: 700;
  color: var(--med-blue);
  display: inline-block;
  font-size: 14px;
  transition: all 0.2s ease;
}

.explore-link:hover {
  text-decoration: underline;
  opacity: 0.8;
}


/* Option 2: Subtle Button (if you prefer button look) */
.explore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 14px;
  font-size: 14px;
  border-radius: 8px;
  background: transparent;
  color: var(--med-blue);
  border: 1.5px solid var(--med-blue);
  font-weight: 600;
  transition: all 0.25s ease;
}

.explore-btn:hover {
  background: var(--med-blue);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.2);
}


/* ============================================
   RESPONSIVE FIX (Mobile)
================================ */
@media (max-width: 720px) {
  .explore-btn,
  .explore-link {
    width: fit-content;
  }
}

/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 900px) {
  .cosmetics-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .cosmetics-content h3 {
    font-size: 24px;
  }
}
.evolution-text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;      /* This adds breathing room between lines */
  text-align: justify;   /* Optional: makes the left and right edges straight */
  margin-bottom: 15px;
}

/* ============================================
   RESPONSIVE DESIGN - EXTRA SMALL MOBILE
   ============================================ */
@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-sub {
    font-size: 14px;
  }

  .btn-primary,
  .btn-ghost {
    padding: 12px 20px;
    font-size: 14px;
  }

  .offer-header h3 {
    font-size: 20px;
  }

  .career-content h2 {
    font-size: 20px;
  }

  .footer-brand {
    font-size: 18px;
  }
}



/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  header,
  .mobile-drawer,
  .mobile-callbar,
  .hamburger,
  .hero-wave {
    display: none;
  }

  .hero {
    margin-top: 0;
    padding: 40px 20px;
  }

  * {
    box-shadow: none !important;
  }
}


/* =========================================
   OUR STORY HERO
========================================= */
.story-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  padding: 60px 20px;
  color: white;

  background: url("../images/cosmetics.jpg") no-repeat center top;
  background-size: cover;
}


/* Dark overlay */
.story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2, 6, 23, 0.85) 0%,
    rgba(2, 6, 23, 0.6) 40%,
    rgba(2, 6, 23, 0.1) 100%
  );
}

/* Content */
.story-content {
  position: relative;
  max-width: 700px;
  z-index: 2;
}

.story-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 12px;
}

.story-content h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}

.story-content h2 span {
  color: var(--cosmetic-pink);
  font-weight: 700;
}

.story-content p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

/* =========================================
   ABOUT SECTION
========================================= */
.story-about {
  margin-top: 20px;
  padding: 0 20px 60px;
}

.story-about-card {
  max-width: 1100px;
  margin: 0 auto;
  background: white;
  border-radius: 18px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.08);
}

/* LEFT SIDE */
.about-left {
  background: #fdf2f6;
  padding: 20px;
  border-radius: 14px;
}

.about-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.about-left h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.about-left p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* RIGHT SIDE */
.about-right {
  border-left: 2px solid #f1f5f9;
  padding-left: 20px;
}

.about-right h3{
  font-size: 14px;
  color: #475b69;
  line-height: 1.7;
  margin-bottom: 14px;
}

.about-right p {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* =========================================
   RESPONSIVE
========================================= */

/* Tablet */
@media (max-width: 900px) {
  .story-hero {
    height: 360px;
  }

  .story-content h1 {
    font-size: 36px;
  }

  .story-content h2 {
    font-size: 18px;
  }

  .story-about-card {
    grid-template-columns: 1fr;
  }

  .about-right {
    border-left: none;
    padding-left: 0;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .story-hero {
    height: auto;
    padding: 80px 16px 40px;
  }

  .story-content h1 {
    font-size: 28px;
  }

  .story-content h2 {
    font-size: 16px;
  }

  .story-content p {
    font-size: 14px;
  }

 .story-about {
    margin-top: 20px;
  }

  .story-about-card {
    padding: 20px;
  }
}

/* =========================================
   MOMENTS & MEMORIES
========================================= */
.moments-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.section-header .eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--cosmetic-pink);
  letter-spacing: 1px;
}

.section-header h2 {
  font-size: 30px;
  font-weight: 800;
  margin: 10px 0;
}

.section-header p {
  color: var(--muted);
  font-size: 14px;
}

/* Grid */
.moments-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.moments-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.4s ease;
}

.moments-grid img:hover {
  transform: scale(1.05);
}


/* ===============================
   LEGACY SECTION
================================ */
.legacy-section {
  padding: 60px 20px;
  background: #f8fafc;
}

.legacy-card {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fff, #fdf2f5);
  border-radius: 18px;
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.08);
  border: 1px solid rgba(240, 142, 165, 0.15);
}

/* Left Content */
.legacy-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.legacy-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fde6ec;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.legacy-left h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #0f172a;
}

.legacy-left p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* Right Button */
.legacy-btn {
  background: linear-gradient(135deg, #f08ea5, #e11d48);
  color: #fff;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(225, 29, 72, 0.25);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.legacy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(225, 29, 72, 0.35);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  /* Raj Cosmetics: stack gallery images vertically on mobile */
  .moments-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .moments-grid img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    display: block;
  }

  .legacy-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .legacy-left {
    flex-direction: column;
    text-align: center;
  }

  .legacy-btn {
    width: 100%;
    text-align: center;
  }
}