/* ============================================
   COSMOS VEDIC WORLD - Premium Astrology Website
   Modern Gradient Theme: Purple-Pink-Gold
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #6B21A8;
  --primary-light: #A855F7;
  --primary-dark: #4C1480;
  --secondary: #EC4899;
  --secondary-light: #F472B6;
  --gold: #F59E0B;
  --gold-light: #FCD34D;
  --gold-dark: #B45309;
  --bg-dark: #0F0820;
  --bg-darker: #07030F;
  --bg-card: rgba(255, 255, 255, 0.05);
  --text-light: #F9FAFB;
  --text-muted: #C4B5FD;
  --text-dim: #9CA3AF;
  --border-color: rgba(168, 85, 247, 0.2);

  --gradient-main: linear-gradient(135deg, #6B21A8 0%, #EC4899 50%, #F59E0B 100%);
  --gradient-soft: linear-gradient(135deg, rgba(107, 33, 168, 0.15) 0%, rgba(236, 72, 153, 0.15) 50%, rgba(245, 158, 11, 0.15) 100%);
  --gradient-hero: linear-gradient(135deg, #0F0820 0%, #2D1B69 50%, #6B21A8 100%);
  --gradient-gold: linear-gradient(135deg, #F59E0B 0%, #FCD34D 50%, #F59E0B 100%);
  --gradient-text: linear-gradient(135deg, #FCD34D 0%, #F472B6 50%, #A855F7 100%);

  --shadow-glow: 0 0 60px rgba(168, 85, 247, 0.4);
  --shadow-gold: 0 0 40px rgba(245, 158, 11, 0.3);
  --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.4);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.7;
  position: relative;
}

/* Animated cosmic background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  z-index: -2;
  animation: cosmicShift 20s ease infinite;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 60% 70%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1.5px 1.5px at 80% 20%, rgba(252, 211, 77, 0.4), transparent),
    radial-gradient(1px 1px at 30% 80%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(2px 2px at 90% 50%, rgba(244, 114, 182, 0.4), transparent),
    radial-gradient(1px 1px at 10% 90%, rgba(255, 255, 255, 0.3), transparent);
  background-size: 200% 200%;
  z-index: -1;
  animation: starsTwinkle 30s linear infinite;
  pointer-events: none;
}

@keyframes cosmicShift {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(2deg); }
}

@keyframes starsTwinkle {
  0% { background-position: 0% 0%; opacity: 0.6; }
  50% { opacity: 1; }
  100% { background-position: 100% 100%; opacity: 0.6; }
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

/* ---------- Container ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(15, 8, 32, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(15, 8, 32, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}

.logo-img {
  height: 56px;
  background: #ffffff;
  padding: 5px 12px;
  border-radius: 10px;
  display: block;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

.logo-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-main);
  border-radius: 50%;
  box-shadow: var(--shadow-glow);
  animation: rotate 20s linear infinite;
}

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

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text .brand {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 22px;
}

.logo-text .tagline {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 3px;
}

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

.nav-link {
  position: relative;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 60%;
}

.nav-cta {
  padding: 12px 26px;
  background: var(--gradient-main);
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  color: white !important;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
  transition: var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.6);
}

.nav-cta:hover::before {
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--gold-light);
  border-radius: 3px;
  transition: var(--transition);
}

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

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

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-main);
  color: white;
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(236, 72, 153, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gradient-gold);
  color: var(--bg-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--bg-dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5);
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--gradient-soft);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero h1 span {
  display: block;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 540px;
}

.stat-item {
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-soft);
  border-radius: 50%;
  filter: blur(60px);
  animation: pulse-glow 4s ease infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 0.9; }
}

.zodiac-wheel {
  position: relative;
  width: 100%;
  max-width: 500px;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

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

.floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--gradient-soft);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  animation: float-around 8s ease-in-out infinite;
  z-index: 3;
}

.floating-element:nth-child(1) { top: 10%; right: 5%; animation-delay: 0s; }
.floating-element:nth-child(2) { bottom: 15%; left: 0; animation-delay: 2s; }
.floating-element:nth-child(3) { top: 50%; right: -5%; animation-delay: 4s; }

@keyframes float-around {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(15px, -15px) rotate(5deg); }
  50% { transform: translate(-10px, -20px) rotate(-5deg); }
  75% { transform: translate(-15px, 10px) rotate(3deg); }
}

/* ---------- Section Styles ---------- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--gradient-soft);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(32px, 4.5vw, 52px);
  margin-bottom: 18px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.service-card {
  position: relative;
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  transition: var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: var(--gradient-soft);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  transition: opacity 0.5s;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: var(--shadow-card);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-soft);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  background: var(--gradient-main);
  transform: rotate(-5deg) scale(1.05);
  box-shadow: var(--shadow-glow);
}

.service-icon svg {
  width: 44px;
  height: 44px;
}

.service-title {
  font-size: 24px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.service-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

.service-link::after {
  content: '→';
  transition: transform 0.3s;
}

.service-link:hover::after {
  transform: translateX(6px);
}

/* ---------- City / Presence Cards ---------- */
.city-card {
  padding: 0;
}

.city-card-image {
  width: 100%;
  height: 190px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.city-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.city-card:hover .city-card-image img {
  transform: scale(1.08);
}

.city-card-body {
  padding: 28px 28px 32px;
  position: relative;
  z-index: 1;
}

.city-card-body .service-title {
  font-size: 22px;
  margin-bottom: 10px;
}

.city-card-body .service-desc {
  margin-bottom: 20px;
}

/* ---------- About Section ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: var(--gradient-soft);
  border: 2px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.about-image-wrap svg {
  width: 100%;
  height: 100%;
}

.about-experience {
  position: absolute;
  bottom: -20px;
  right: -20px;
  padding: 24px 32px;
  background: var(--gradient-main);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glow);
  text-align: center;
  z-index: 2;
}

.about-experience .number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.about-experience .label {
  font-size: 12px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
}

.about-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
}

.about-content > p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 18px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.about-feature:hover {
  border-color: var(--gold);
  transform: translateX(5px);
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--gradient-main);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
}

.about-feature h4 {
  font-family: var(--font-body);
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--gold-light);
}

.about-feature p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ---------- Testimonials ---------- */
.testimonials {
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.testimonial-card {
  position: relative;
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  transition: var(--transition);
}

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

.testimonial-quote {
  font-size: 60px;
  font-family: var(--font-display);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 0.8;
  margin-bottom: 16px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 16px;
}

.testimonial-text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 18px;
}

.testimonial-author h5 {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gold-light);
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-dim);
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 80px 0;
}

.cta-box {
  padding: 70px 60px;
  background: var(--gradient-main);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(252, 211, 77, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-box h2 {
  font-size: clamp(30px, 4vw, 46px);
  color: white;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.cta-box p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.cta-box .btn {
  position: relative;
  z-index: 1;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 30px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-about p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.8;
  margin: 20px 0;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gradient-main);
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--text-muted);
  transition: var(--transition);
}

.footer-social a:hover svg {
  fill: white;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 17px;
  margin-bottom: 24px;
  color: var(--gold-light);
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-dim);
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-dim);
  font-size: 14px;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--gradient-soft);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

.footer-contact-icon svg {
  width: 16px;
  height: 16px;
}

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

.footer-bottom p {
  color: var(--text-dim);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--gold-light);
}

/* ---------- Page Hero (Inner pages) ---------- */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 16px;
}

.page-hero .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: var(--gradient-soft);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 16px;
}

.page-hero .breadcrumb a {
  color: var(--gold-light);
}

.page-hero .breadcrumb span {
  color: var(--text-dim);
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
}

.contact-info {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
}

.contact-info h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.contact-detail:last-child {
  border-bottom: none;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--gradient-main);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
}

.contact-detail h4 {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-detail p, .contact-detail a {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
}

.contact-detail a:hover {
  color: var(--gold-light);
}

.contact-form {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
}

.contact-form h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.contact-form > p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

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

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 13px;
  color: var(--gold-light);
  margin-bottom: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(15, 8, 32, 0.5);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(15, 8, 32, 0.8);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

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

/* ---------- Service Detail Section ---------- */
.detail-section {
  padding: 80px 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.detail-grid.reverse {
  direction: rtl;
}

.detail-grid.reverse > * {
  direction: ltr;
}

.detail-visual {
  aspect-ratio: 1;
  background: var(--gradient-soft);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.detail-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(15, 8, 32, 0.4) 100%);
}

.detail-content h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 20px;
}

.detail-content p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.detail-list {
  list-style: none;
  margin: 24px 0;
}

.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  color: var(--text-light);
  font-size: 15px;
}

.detail-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Gemstone Grid ---------- */
.gemstone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.gemstone-card {
  padding: 28px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

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

.gemstone-visual {
  width: 100px;
  height: 100px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient-soft);
  border: 2px solid var(--border-color);
  transition: var(--transition);
}

.gemstone-card:hover .gemstone-visual {
  transform: rotate(10deg);
}

.gemstone-card h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--gold-light);
}

.gemstone-card p {
  font-size: 13px;
  color: var(--text-dim);
}

/* ---------- Process Steps ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  position: relative;
}

.process-step {
  position: relative;
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.process-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--gradient-main);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  box-shadow: var(--shadow-glow);
}

.process-step h4 {
  font-family: var(--font-body);
  font-size: 18px;
  margin: 16px 0 10px;
  color: var(--gold-light);
}

.process-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- Animations on scroll ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ---------- Nav Dropdown ---------- */
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-dropdown-toggle .caret {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.3s ease;
}

.nav-item-dropdown.open .nav-dropdown-toggle .caret,
.nav-item-dropdown:hover .nav-dropdown-toggle .caret {
  transform: rotate(-135deg) translate(-2px, -2px);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 4px;
  min-width: 280px;
  max-width: 560px;
  padding: 14px;
  background: rgba(15, 8, 32, 0.98);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(168, 85, 247, 0.15);
  backdrop-filter: blur(20px);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 1001;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: rgba(15, 8, 32, 0.98);
  border-left: 1px solid var(--border-color);
  border-top: 1px solid var(--border-color);
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown li {
  width: 100%;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.nav-dropdown a:hover {
  background: var(--gradient-soft);
  color: var(--gold-light);
  transform: translateX(4px);
}

.nav-dropdown a .dd-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-soft);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--gold-light);
}

.nav-dropdown a .dd-icon svg {
  width: 18px;
  height: 18px;
}

.nav-dropdown a .dd-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-dropdown a .dd-text strong {
  font-size: 14px;
  font-weight: 600;
}

.nav-dropdown a .dd-text small {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 400;
}

/* ---------- Shop Page ---------- */
.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
}

.shop-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-cat-btn {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.shop-cat-btn:hover {
  color: var(--gold-light);
  border-color: var(--gold);
}

.shop-cat-btn.active {
  background: var(--gradient-main);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.35);
}

.shop-search {
  position: relative;
  flex: 1;
  max-width: 320px;
  min-width: 200px;
}

.shop-search input {
  width: 100%;
  padding: 12px 18px 12px 44px;
  background: rgba(15, 8, 32, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition);
}

.shop-search input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(15, 8, 32, 0.8);
}

.shop-search svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--gold-light);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.product-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-card);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 12px;
  background: var(--gradient-main);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.product-badge.sale {
  background: var(--gradient-gold);
  color: var(--bg-dark);
}

.product-wishlist {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  background: rgba(15, 8, 32, 0.7);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}

.product-wishlist:hover,
.product-wishlist.active {
  color: var(--secondary-light);
  border-color: var(--secondary);
  background: rgba(236, 72, 153, 0.15);
}

.product-wishlist svg {
  width: 18px;
  height: 18px;
}

.product-image {
  aspect-ratio: 1;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 40%, rgba(15, 8, 32, 0.5) 100%);
}

.product-image .product-emoji {
  font-size: 80px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 20px rgba(168, 85, 247, 0.4));
  transition: transform 0.5s;
}

.product-card:hover .product-emoji {
  transform: scale(1.15) rotate(-6deg);
}

.product-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-light);
  line-height: 1.3;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--text-dim);
}

.product-rating .stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
  margin-top: auto;
}

.product-price .current {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-price .old {
  font-size: 15px;
  color: var(--text-dim);
  text-decoration: line-through;
}

.product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  background: var(--gradient-main);
  border: none;
  border-radius: 50px;
  color: white;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

.product-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.45);
}

.product-btn svg {
  width: 16px;
  height: 16px;
}

/* Shop benefits strip */
.shop-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 80px;
  padding: 36px 24px;
  background: var(--gradient-soft);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}

.shop-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-light);
}

.shop-benefit-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--gradient-main);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.shop-benefit-icon svg {
  width: 22px;
  height: 22px;
}

.shop-benefit h5 {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gold-light);
  margin-bottom: 2px;
}

.shop-benefit p {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.4;
}

/* ---------- Appointment Page ---------- */
.appt-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: start;
}

.appt-form-wrap {
  padding: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
}

.appt-form-wrap h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.appt-form-wrap .form-intro {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 15px;
}

.appt-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 26px;
}

.appt-type {
  position: relative;
  padding: 20px 16px;
  background: rgba(15, 8, 32, 0.5);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}

.appt-type input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.appt-type:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.appt-type.selected {
  border-color: var(--gold);
  background: var(--gradient-soft);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.appt-type-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  background: var(--gradient-main);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.appt-type-icon svg {
  width: 22px;
  height: 22px;
}

.appt-type h5 {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.appt-type p {
  font-size: 12px;
  color: var(--gold-light);
  font-weight: 600;
}

.appt-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.appt-card {
  padding: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
}

.appt-card h4 {
  font-size: 20px;
  margin-bottom: 18px;
  color: var(--gold-light);
}

.appt-hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border-color);
  font-size: 14px;
  list-style: none;
  color: var(--text-muted);
}

.appt-hours li:last-child {
  border-bottom: none;
}

.appt-hours .day {
  color: var(--text-light);
  font-weight: 500;
}

.appt-hours .time {
  color: var(--gold-light);
  font-weight: 600;
}

.appt-hours .closed {
  color: #fca5a5;
}

.appt-contact-card {
  padding: 30px;
  background: var(--gradient-main);
  border-radius: var(--radius-lg);
  color: white;
  position: relative;
  overflow: hidden;
}

.appt-contact-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(252, 211, 77, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.appt-contact-card h4 {
  color: white;
  font-size: 22px;
  margin-bottom: 8px;
  position: relative;
}

.appt-contact-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-bottom: 20px;
  position: relative;
}

.appt-contact-card .phone-big {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #FCD34D;
  display: block;
  margin-bottom: 6px;
  position: relative;
}

.appt-contact-card .note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .hero-visual {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: calc(100vh - 80px);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    background: var(--bg-darker);
    border-left: 1px solid var(--border-color);
    transition: right 0.4s ease;
    overflow-y: auto;
    gap: 4px;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 14px 16px;
  }

  .nav-cta {
    margin-top: 16px;
    text-align: center;
  }

  /* Dropdown in mobile becomes an accordion */
  .nav-item-dropdown .nav-dropdown {
    position: static;
    transform: none;
    min-width: 0;
    max-width: none;
    width: 100%;
    margin-top: 6px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.25);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    grid-template-columns: 1fr;
    max-height: none;
    overflow-y: visible;
    border-radius: var(--radius-sm);
  }

  .nav-item-dropdown.open .nav-dropdown {
    display: grid;
  }

  .nav-item-dropdown:hover .nav-dropdown {
    display: none;
  }

  .nav-item-dropdown.open:hover .nav-dropdown {
    display: grid;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown a {
    padding: 10px;
  }

  .nav-dropdown a .dd-icon {
    width: 32px;
    height: 32px;
  }

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

  .appt-form-wrap {
    padding: 28px 22px;
  }

  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-search {
    max-width: none;
  }

  .section {
    padding: 70px 0;
  }

  .hero {
    padding: 110px 0 60px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .stat-item {
    text-align: center;
  }

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

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

  .cta-box {
    padding: 50px 30px;
  }

  .contact-info,
  .contact-form {
    padding: 28px 22px;
  }

  .about-experience {
    bottom: -10px;
    right: 10px;
    padding: 16px 22px;
  }

  .about-experience .number {
    font-size: 36px;
  }
}

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

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

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

  .about-features {
    grid-template-columns: 1fr;
  }
}
