*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Ivory & Gold theme */
  --gold: #D4AF37;
  --gold-light: #F5D76E;
  --accent: #8B1C1C; /* warm maroon accent */
  --cream: #FFF8EE;
  --bg: #FFF8EE;
  --surface: #F5F0E6;
  --text: #2D1010;
  --muted: #8A6B5A;
  --shadow: rgba(16,10,6,0.06);
  /* legacy variables kept for compatibility */
  --saffron: var(--gold);
  --deep-red: var(--accent);
  --dark: #1A0A00;
  --maroon: #800020;
  --pink: #E91E8C;
  --teal: #00897B;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; width: 100%; z-index: 999;
  background: rgba(255,248,238,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--gold);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 900;
  color: var(--deep-red);
  letter-spacing: 1px;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 0.85rem; font-weight: 500;
  color: var(--text); letter-spacing: 0.5px; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--saffron); }
.nav-cta {
  background: var(--deep-red); color: white;
  padding: 10px 22px; border: none; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-size: 0.8rem;
  font-weight: 600; cursor: pointer; text-transform: uppercase;
  letter-spacing: 0.5px; transition: background 0.2s, transform 0.1s;
}
.nav-cta:hover { background: var(--saffron); transform: scale(1.03); }

/* Hamburger / Mobile nav */
.nav-toggle {
  display: none; background: transparent; border: none; color: var(--dark);
  font-size: 1.2rem; cursor: pointer; padding: 8px; align-items: center;
}
.nav-mobile-dropdown {
  position: absolute; left: 0; right: 0; top: 100%;
  background: rgba(255,248,238,0.98); border-top: 1px solid rgba(212,175,55,0.12);
  box-shadow: 0 10px 30px var(--shadow); transform: translateY(-6px);
  opacity: 0; visibility: hidden; transition: transform 0.28s ease, opacity 0.28s ease;
  z-index: 998; padding: 1rem 1.5rem;
}
.nav-mobile-dropdown.open { transform: translateY(0); opacity: 1; visibility: visible; }
.nav-mobile-dropdown ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.nav-mobile-dropdown a { text-decoration: none; color: var(--text); padding: 12px 8px; display: block; }
.nav-cta-mobile { display: inline-block; margin-top: 10px; }

/* Touch target and accessibility defaults */
.nav-toggle, .nav-cta, .nav-cta-mobile, .btn-primary, .btn-outline, .gallery-tab, .album-link, .wa-btn { min-height: 44px; }

/* Images fluid fallback */
img, picture { max-width: 100%; height: auto; display: block; }

/* HERO */
#hero {
  min-height: 100vh;
  /* Fallback color/gradient kept for when image doesn't load */
  background-color: #1a0a00;
  background-image: url('galary/Hero_shivam.JPG'), linear-gradient(135deg, #1A0A00 0%, #3D0E0E 40%, #6B1A1A 70%, #1A0A00 100%);
  background-size: cover, cover;
  background-position: center center, center center;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, scroll;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding-top: 64px;
  will-change: transform;
}

/* Dark overlay on top of hero background image to keep text readable */
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
  z-index: 0;
  pointer-events: none;
}

.mandala-bg {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  opacity: 0.06;
  animation: rotateSlow 40s linear infinite;
}

@keyframes rotateSlow { to { transform: translate(-50%, -50%) rotate(360deg); } }

.hero-content {
  text-align: center; padding: 2rem; position: relative; z-index: 1;
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: inline-block;
  background: var(--gold); color: var(--dark);
  font-size: 0.75rem; font-weight: 600;
  padding: 6px 18px; border-radius: 50px;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 900; color: white;
  line-height: 1.0;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero-name .highlight {
  color: var(--gold-light);
  display: block;
  font-style: italic;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.75);
  margin: 1.2rem 0 2rem;
  font-weight: 300; letter-spacing: 1px;
}

.hero-sub strong { color: var(--gold-light); font-weight: 600; }

.hero-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin: 1.5rem auto;
}
.hero-divider::before, .hero-divider::after {
  content: ''; display: block;
  width: 60px; height: 1px; background: var(--gold);
}
.divider-icon { color: var(--gold); font-size: 1.2rem; }

.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.btn-primary {
  background: var(--saffron); color: white;
  padding: 14px 36px; border: none; border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  letter-spacing: 0.5px; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(244,114,11,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(244,114,11,0.5); }
.btn-outline {
  background: transparent; color: var(--gold-light);
  padding: 14px 36px; border: 2px solid var(--gold);
  border-radius: 50px; font-family: 'Poppins', sans-serif;
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  letter-spacing: 0.5px; text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--gold); color: var(--dark); }

.hero-stats {
  display: flex; gap: 3rem; justify-content: center;
  margin-top: 3.5rem; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900;
  color: var(--gold-light); display: block;
}
.stat-label {
  font-size: 0.75rem; color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 1px;
}

/* SECTIONS */
section { padding: clamp(3rem, 8vw, 6rem) 2rem; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  color: var(--saffron); font-size: 0.75rem;
  font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900; color: var(--deep-red);
  line-height: 1.2;
}
.section-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--saffron));
  margin: 1rem auto 0; border-radius: 2px;
}

/* ABOUT */
#about {
  background: white;
}
.about-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-box {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(135deg, #3D0E0E, #6B1A1A);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-img-box::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, rgba(212,175,55,0.05) 0px, rgba(212,175,55,0.05) 2px, transparent 2px, transparent 20px
  );
}
.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
.about-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--saffron); color: white;
  padding: 16px 22px; border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(244,114,11,0.4);
}
.about-badge strong { display: block; font-size: 1.8rem; font-weight: 700; }
.about-badge span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; }

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900;
  color: var(--deep-red); margin-bottom: 1rem;
  line-height: 1.2;
}
.about-text h2 em { color: var(--saffron); font-style: italic; }
.about-text p {
  color: var(--muted); line-height: 1.8;
  margin-bottom: 1rem; font-size: 0.95rem;
}
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.5rem; }
.tag {
  padding: 6px 14px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 500;
  border: 1.5px solid;
}
.tag-red { border-color: var(--deep-red); color: var(--deep-red); }
.tag-gold { border-color: var(--gold); color: #8B7210; }
.tag-saffron { border-color: var(--saffron); color: var(--saffron); }

/* SERVICES */
#services {
  background: linear-gradient(180deg, var(--cream) 0%, #FFF0D5 100%);
}
.services-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: white; border-radius: 20px;
  padding: 2.2rem 1.8rem;
  border: 1.5px solid rgba(212,175,55,0.2);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  opacity: 0; transition: opacity 0.25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(192,24,26,0.1); border-color: var(--gold); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.2rem;
}
.icon-red { background: #FFF0F0; }
.icon-gold { background: #FFF8E0; }
.icon-saffron { background: #FFF3E8; }
.icon-teal { background: #E0F4F1; }

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--deep-red); margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* GALLERY */
#gallery { background: var(--dark); }
#gallery .gallery-section { background: var(--dark); }
#gallery .container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

.gallery-section { padding: 90px 2rem; background: var(--dark); }
.gallery-section .section-header { text-align: center; margin-bottom: 3.5rem; }
.gallery-section .section-subtitle { color: var(--gold); font-size: 0.75rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 0.5rem; }
.gallery-section .section-title { color: var(--gold-light); font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; line-height: 1.2; }
.title-ornament { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 1.5rem auto; }
.ornament-line { display: block; width: 60px; height: 1px; background: var(--gold); }
.ornament-diamond { color: var(--gold); font-size: 1.2rem; }
.gallery-subtitle { font-size: 0.95rem; color: rgba(255,255,255,0.6); margin-top: 1rem; }

.gallery-tabs {
  display: flex; gap: 10px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 2.5rem;
}
.gallery-tab {
  padding: 8px 20px; border-radius: 50px;
  border: 1.5px solid rgba(212,175,55,0.3);
  background: transparent; color: rgba(255,255,255,0.6);
  font-family: 'Poppins', sans-serif; font-size: 0.8rem;
  font-weight: 500; cursor: pointer; letter-spacing: 0.5px;
  transition: all 0.25s;
}
.gallery-tab:hover { border-color: var(--gold); color: var(--gold-light); }
.gallery-tab.active {
  background: linear-gradient(90deg, var(--saffron), var(--deep-red));
  border-color: transparent; color: white;
}

.gallery-tab-panel { display: none; }
.gallery-tab-panel.active { display: block; }

.gallery-single { 
  text-align: center;
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 2rem;
}
.gallery-item {
  border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, #3D0E0E, #2A0A1A);
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
  border: 1px solid rgba(212,175,55,0.15);
  aspect-ratio: 4/3;
  max-width: 600px;
  width: 100%;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item:hover { transform: scale(1.05); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  gap: 10px; opacity: 0;
  transition: opacity 0.25s;
  color: var(--gold-light);
  font-weight: 500;
}
.gallery-overlay i { font-size: 1.5rem; }
.gallery-overlay span { font-size: 0.9rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.album-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(90deg, var(--saffron), var(--deep-red));
  color: white; padding: 12px 24px;
  border-radius: 50px; text-decoration: none;
  font-family: 'Poppins', sans-serif; font-size: 0.88rem;
  font-weight: 500; margin-top: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(244,114,11,0.4);
}
.album-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(244,114,11,0.5);
}
.album-link i { font-size: 1rem; }

/* TESTIMONIALS */
#testimonials { background: white; }
.testi-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testi-card {
  background: var(--cream); border-radius: 20px;
  padding: 2rem; border: 1.5px solid rgba(212,175,55,0.2);
  position: relative;
}
.testi-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem; line-height: 0.8;
  color: var(--gold); opacity: 0.3;
  position: absolute; top: 1.2rem; left: 1.2rem;
  font-weight: 900;
}
.testi-text {
  font-size: 0.9rem; color: var(--muted);
  line-height: 1.8; margin-bottom: 1.2rem;
  padding-top: 1.5rem;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.85rem; color: white;
  flex-shrink: 0;
}
.av-red { background: var(--deep-red); }
.av-saffron { background: var(--saffron); }
.av-teal { background: var(--teal); }
.av-maroon { background: var(--maroon); }
.testi-name { font-weight: 600; font-size: 0.88rem; color: var(--text); }
.testi-event { font-size: 0.75rem; color: var(--muted); }
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.4rem; }

/* CONTACT */
#contact {
  background: linear-gradient(135deg, #1A0A00, #3D0E0E);
  position: relative; overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    60deg, rgba(212,175,55,0.03) 0px, rgba(212,175,55,0.03) 1px, transparent 1px, transparent 30px
  );
}
#contact .section-title { color: white; }
#contact .section-tag { color: var(--gold); }

.contact-wrap {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 4rem; align-items: start;
  position: relative; z-index: 2;
}
.contact-info h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light); font-size: 1.5rem; margin-bottom: 1rem;
}
.contact-info p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.8; margin-bottom: 2rem; }

.contact-detail {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 1rem; color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
}
.c-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(212,175,55,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  border: 1px solid rgba(212,175,55,0.2);
}

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { color: rgba(255,255,255,0.7); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(212,175,55,0.2);
  border-radius: 10px; padding: 12px 14px;
  color: white; font-family: 'Poppins', sans-serif;
  font-size: 0.88rem; outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); background: rgba(255,255,255,0.1);
}
.form-group select option { background: #3D0E0E; color: white; }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
  background: linear-gradient(90deg, var(--saffron), var(--deep-red));
  color: white; padding: 14px 28px;
  border: none; border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  cursor: pointer; letter-spacing: 0.5px;
  transition: opacity 0.2s, transform 0.1s;
  margin-top: 0.5rem;
  box-shadow: 0 6px 20px rgba(192,24,26,0.35);
}
.form-submit:hover { opacity: 0.9; transform: translateY(-1px); }

/* FOOTER */
footer {
  background: #0D0300; padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(212,175,55,0.15);
}
footer p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
footer span { color: var(--gold); }

/* FLOATING WA BUTTON */
.wa-btn {
  position: fixed; bottom: 2rem; right: 2rem;
  background: #25D366; color: white;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  z-index: 998; transition: transform 0.2s;
}
.wa-btn:hover { transform: scale(1.1); }

/* SCROLL ANIMATIONS */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 480px) {
  /* Mobile specific */
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; gap: 8px; }
  nav { height: 56px; padding: 0 1rem; }
  .nav-logo { font-size: 1.05rem; }
  .nav-mobile-dropdown { top: 56px; }
  .hero-content { padding: 1rem; }
  .mandala-bg { width: 420px; height: 420px; opacity: 0.05; }
  .hero-name { text-align: center; }
  .hero-btns { flex-direction: column; gap: 0.75rem; width: 100%; }
  .btn-primary, .btn-outline { width: 100%; padding: 12px 18px; }
  .hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .about-img-box { border-radius: 16px; }
  .about-text h2 { font-size: clamp(1.4rem, 4vw, 1.8rem); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 1rem; }
  .gallery-tabs { gap: 6px; }
  .gallery-tab { font-size: 0.78rem; padding: 6px 12px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; aspect-ratio: 4/3; }
  .testi-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-group input, .form-group select, .form-group textarea { width: 100%; }
  .contact-wrap { grid-template-columns: 1fr; }
  footer { text-align: center; font-size: 0.78rem; }
}

@media (max-width: 768px) {
  /* Tablet */
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  nav { height: 60px; padding: 0 1.25rem; }
  .nav-logo { font-size: 1.15rem; }
  .hero-name { font-size: clamp(2rem, 5.5vw, 4.2rem); }
  .hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }

  /* Mobile fix: background-attachment fixed causes issues on iOS; switch to scroll */
  #hero { background-attachment: scroll, scroll; }
  #hero::before { background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.6) 100%); }
}

@media (max-width: 1024px) {
  /* Small desktop */
  .nav-links { gap: 1rem; }
  .nav-logo { font-size: 1.25rem; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
}
