/* ==========================================================================
   VICKI NAIL BEAUTY - LUXURY DARK MODE DESIGN SYSTEM
   ========================================================================== */
:root {
  /* Luxury Dark & Gold Palette */
  --bg-dark: #0a0a0c;            /* Obsidian Black main background */
  --bg-card: rgba(255, 255, 255, 0.035); /* Glassmorphism card fill */
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --bg-surface: #121216;         /* Secondary dark surface */
  --gold-primary: #d4af37;       /* Champagne Gold */
  --gold-light: #f5d77f;         /* Bright Metallic Gold */
  --gold-dark: #c89116;          /* Deep Gold Accent */
  --gold-gradient: linear-gradient(135deg, #f5d77f 0%, #d4af37 50%, #c89116 100%);
  --gold-glow: rgba(245, 215, 127, 0.25);
  
  --text-white: #ffffff;
  --text-muted: #a0a0b0;
  --text-dim: #6c6c7d;
  --border-gold: rgba(245, 215, 127, 0.18);
  --border-subtle: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-display: 'Cinzel', serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout & Radii */
  --max-width: 1240px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  --transition-fast: 0.25s ease;
  --transition-normal: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-white);
  background-color: var(--bg-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

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

.text-right {
  text-align: right;
}

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

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
  background: linear-gradient(90deg, #181122 0%, #2b1d3a 50%, #181122 100%);
  border-bottom: 1px solid var(--border-gold);
  padding: 8px 16px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-white);
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar-link {
  color: var(--gold-light);
  font-weight: 700;
}

.top-bar-link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 0;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  border-bottom-color: var(--border-gold);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-brand-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(245, 215, 127, 0.35));
  transition: transform var(--transition-normal);
}

.brand-logo:hover .nav-brand-logo-img {
  transform: scale(1.08) rotate(3deg);
}

.logo-icon {
  font-size: 1.4rem;
  color: var(--gold-primary);
  text-shadow: 0 0 12px var(--gold-glow);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--text-white);
  line-height: 1;
}

.logo-subtitle {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--gold-light);
  margin-top: 2px;
}

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

.nav-item {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  padding: 6px 0;
  position: relative;
}

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

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background-color: var(--text-white);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  transition: all var(--transition-normal);
}

.btn-lg {
  padding: 14px 34px;
  font-size: 0.92rem;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #000000;
  box-shadow: 0 6px 24px var(--gold-glow);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(245, 215, 127, 0.45);
  color: #000000;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid var(--border-gold);
  color: var(--text-white);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(245, 215, 127, 0.15);
  color: var(--gold-light);
  transform: translateY(-3px);
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  padding: 90px 0 120px;
  overflow: hidden;
  background: radial-gradient(circle at 70% 30%, rgba(200, 145, 22, 0.08) 0%, transparent 60%);
}

.hero-bg-glow {
  position: absolute;
  top: -150px;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 215, 127, 0.08);
  border: 1px solid var(--border-gold);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.badge-sparkle {
  color: var(--gold-primary);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.trust-grid {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  font-size: 1.3rem;
}

.trust-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-white);
}

.trust-item p {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 540px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-image-frame:hover .hero-img {
  transform: scale(1.05);
}

.image-overlay-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
}

.card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.image-overlay-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-white);
}

.image-overlay-card p {
  font-size: 0.75rem;
  color: var(--gold-light);
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.stats-bar {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 36px 0;
}

.stats-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

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

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: var(--border-subtle);
}

/* ==========================================================================
   SERVICES & PRESTATIONS SECTION
   ========================================================================== */
.services-section {
  padding: 100px 0;
  background-color: var(--bg-dark);
}

.section-header {
  margin-bottom: 60px;
}

.section-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  background: rgba(245, 215, 127, 0.08);
  border: 1px solid var(--border-gold);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.service-icon-box {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(245, 215, 127, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.service-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

.service-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-light);
}

.btn-service-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-white);
}

.btn-service-link:hover {
  color: var(--gold-light);
}

/* ==========================================================================
   INTERACTIVE GALLERY SECTION
   ========================================================================== */
.gallery-section {
  padding: 100px 0;
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
}

.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.tab-btn {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--gold-gradient);
  color: #000000;
  border-color: transparent;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.gallery-img-box {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 12, 0.9) 0%, rgba(10, 10, 12, 0.2) 60%, transparent 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.gallery-overlay h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
}

/* ==========================================================================
   ABOUT VICKI SECTION
   ========================================================================== */
.about-section {
  padding: 100px 0;
  background-color: var(--bg-dark);
}

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

.about-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.about-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
}

.about-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.feature-icon {
  font-size: 1.4rem;
}

.feature-box h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 2px;
}

.feature-box p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.about-right {
  display: flex;
  justify-content: center;
}

.about-img-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 480px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-gold-card {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--gold-gradient);
  color: #000000;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.about-gold-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 800;
}

.about-gold-card p {
  font-size: 0.75rem;
  font-weight: 600;
}

/* ==========================================================================
   PRICING TABLE SECTION
   ========================================================================== */
.pricing-section {
  padding: 100px 0;
  background-color: var(--bg-surface);
}

.pricing-container {
  max-width: 900px;
  margin: 0 auto;
}

.pricing-table {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
  overflow: hidden;
}

.pricing-row {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  padding: 18px 28px;
  border-bottom: 1px solid var(--border-subtle);
  align-items: center;
}

.pricing-row:last-child {
  border-bottom: none;
}

.header-row {
  background: rgba(245, 215, 127, 0.08);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-white);
}

.price-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.price-val {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--gold-light);
  text-align: right;
}

/* ==========================================================================
   REVIEWS SECTION
   ========================================================================== */
.reviews-section {
  padding: 100px 0;
  background-color: var(--bg-dark);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 32px 24px;
  border-radius: var(--radius-md);
}

.review-stars {
  color: #ffc107;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.review-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}

.review-author strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-white);
}

.review-author span {
  font-size: 0.72rem;
  color: var(--gold-light);
}

/* ==========================================================================
   CONTACT & BOOKING FORM SECTION
   ========================================================================== */
.contact-section {
  padding: 100px 0;
  background-color: var(--bg-surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card, .contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 36px 32px;
}

.contact-info-card h3, .contact-form-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.contact-detail {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.contact-method-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.method-icon {
  font-size: 1.2rem;
}

.contact-method-item strong {
  font-size: 0.85rem;
  color: var(--text-white);
}

.contact-method-item p, .contact-method-item a {
  font-size: 0.82rem;
  color: var(--gold-light);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input, .form-group select, .form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--text-white);
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold-primary);
}

.form-feedback {
  font-size: 0.8rem;
  margin-top: 10px;
  font-weight: 600;
  text-align: center;
}

.form-feedback.success {
  color: #4caf50;
}

.map-box {
  margin-top: 48px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 24px;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-col ul li a:hover {
  color: var(--text-white);
}

.footer-col p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.social-links a {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ==========================================================================
   ANIMATIONS & SCROLL OBSERVER
   ========================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .services-grid, .gallery-grid, .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.9);
    transform: translateY(-150%);
    transition: transform var(--transition-normal);
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .services-grid, .gallery-grid, .reviews-grid {
    grid-template-columns: 1fr;
  }

  .pricing-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .pricing-row .price-desc {
    display: none;
  }

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