/* ===== VARIABLES ===== */
:root {
  --navy: #0b1c3d;
  --navy-dark: #071428;
  --gold: #c5a059;
  --gold-light: #d4b87a;
  --cream: #f8f6f2;
  --cream-dark: #f0ebe3;
  --text-dark: #333;
  --text-muted: #666;
  --white: #ffffff;
  --shadow: 0 10px 40px rgba(11, 28, 61, 0.12);
  --shadow-sm: 0 4px 20px rgba(11, 28, 61, 0.08);
}

/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 60px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.topbar-center {
  flex: 1;
  justify-content: center;
}

.topbar-right {
  justify-content: flex-end;
}

.topbar-item svg {
  flex-shrink: 0;
  opacity: 0.85;
}

/* ===== HERO WRAPPER ===== */
.hero-wrapper {
  position: relative;
  background: url('images/bg-marble.jpg') center/cover no-repeat,
              url('./images/banner.png') center/cover no-repeat;
  min-height: 85vh;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: var(--white);
  border-bottom: 1px solid rgba(11, 28, 61, 0.06);
  position: relative;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 2.5px;
  line-height: 1.2;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  color: #3a3a3a;
  position: relative;
  padding-bottom: 6px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-links a.active {
  color: var(--gold);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.chevron {
  font-size: 10px;
  margin-left: 2px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
}

/* ===== HERO ===== */
.hero {
  padding: 40px 60px 120px;
  position: relative;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-left {
  flex: 1;
  max-width: 520px;
}

.hero-tagline {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 12px;
}

.hero-left h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.hero-divider svg {
  width: 180px;
  height: 20px;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-right img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(11, 28, 61, 0.15));
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 14px 28px;
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-primary:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.arrow {
  font-size: 16px;
  transition: transform 0.3s;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* ===== FEATURE CARD ===== */
.feature-card {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 88%;
  max-width: 1200px;
  margin: -70px auto 0;
  background: var(--white);
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 20;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  flex: 1;
  padding: 0 8px;
}

.feature-icon {
  width: 40px;
  height: 40px;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-item span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--navy);
  line-height: 1.5;
}

/* ===== SECTION COMMON ===== */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.section-heading h2 {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
  white-space: nowrap;
}

.heading-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.heading-diamond {
  color: var(--gold);
  font-size: 8px;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}

/* ===== ABOUT ===== */
.about {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 100px 60px 80px;
  max-width: 1300px;
  margin: 0 auto;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.2;
}

.about-text p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-text .btn {
  margin-top: 16px;
}

.about-image {
  flex: 1;
}

.image-frame {
  position: relative;
  padding: 8px;
  border: 2px dashed var(--gold);
  border-radius: 4px;
}

.image-frame img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 2px;
}

/* ===== PRODUCTS ===== */
.products {
  padding: 80px 60px;
  background: var(--cream);
}

.product-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  padding-bottom: 24px;
}

.product-tab {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 16px 16px 0;
  border-radius: 6px 6px 0 0;
}

.product-grid {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.inlay-grid {
  grid-template-columns: repeat(5, 1fr);
}

.mandir-grid {
  grid-template-columns: repeat(4, 1fr);
}

.product-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  cursor: zoom-in;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-grid img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-sm);
}

.view-all {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--navy);
  padding: 16px;
  transition: color 0.3s;
}

.view-all:hover {
  color: var(--gold);
}

/* ===== STATS ===== */
.stats {
  /* background: var(--navy) url('https://images.unsplash.com/photo-1615874959474-d609969a20ed?w=1920&h=400&fit=crop') center/cover no-repeat; */
  position: relative;
  padding: 60px 40px;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(11, 28, 61);
}

.stats-inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 20px 16px;
}

.stat-big {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-big.small {
  font-size: 22px;
  letter-spacing: 1px;
}

.stat-item p {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--white);
  line-height: 1.5;
  opacity: 0.9;
}

.stat-icon.wreath {
  width: 80px;
  height: 80px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  position: relative;
}

.stat-icon.wreath::before,
.stat-icon.wreath::after {
  content: '❧';
  position: absolute;
  color: var(--gold);
  font-size: 20px;
  opacity: 0.6;
}

.stat-icon.wreath::before { left: -8px; }
.stat-icon.wreath::after { right: -8px; transform: scaleX(-1); }

.stat-number {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--gold);
  opacity: 0.4;
  flex-shrink: 0;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 80px 60px;
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ===== FAQ ===== */
.faq {
  padding: 80px 60px;
  background: var(--white);
}

.faq-subtitle,
.contact-subtitle {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 560px;
  margin: -30px auto 50px;
  line-height: 1.7;
}

.faq-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.faq-list {
  width: 100%;
}

.faq-video {
  position: sticky;
  top: 100px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid rgba(197, 160, 89, 0.35);
  background: var(--navy);
}

.faq-video video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 620px;
  object-fit: cover;
  display: block;
}

.faq-item {
  border: 1px solid rgba(11, 28, 61, 0.1);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--cream);
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-item.open {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.3px;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.3s, background 0.3s, color 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 80px 60px;
  background: var(--cream);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.contact-details {
  list-style: none;
  margin-bottom: 32px;
}

.contact-details li {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid rgba(197, 160, 89, 0.4);
  border-radius: 8px;
  color: var(--gold);
}

.contact-details strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.contact-details p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-details a {
  color: var(--text-muted);
  transition: color 0.3s;
}

.contact-details a:hover {
  color: var(--gold);
}

.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--cream);
  border: 1px solid rgba(11, 28, 61, 0.12);
  border-radius: 6px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  border: none;
}

/* ===== FOOTER ===== */
footer {
  background: var(--cream-dark);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 50px;
  padding: 60px 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h3 {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-col p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}

.commitment-list {
  list-style: none;
}

.commitment-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}

.footer-bottom {
  background: var(--navy);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 60px;
  font-size: 12px;
}

.footer-bottom p {
  opacity: 0.85;
}

.footer-tagline {
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  font-style: italic;
}

.back-to-top {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.3s, transform 0.3s;
}

.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ===== IMAGE MODAL ===== */
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.image-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 28, 61, 0.85);
  backdrop-filter: blur(4px);
}

.modal-box {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  transform: scale(0.9);
  transition: transform 0.3s;
}

.image-modal.active .modal-box {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(11, 28, 61, 0.7);
  color: var(--white);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.modal-close:hover {
  background: var(--navy);
}

.modal-image-wrap {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 60vh;
  overflow: hidden;
}

.modal-image-wrap img {
  width: 100%;
  max-height: 60vh;
  object-fit: contain;
}

.modal-footer {
  padding: 24px;
  text-align: center;
  border-top: 1px solid rgba(11, 28, 61, 0.08);
}

.modal-title {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  transition: background 0.3s, transform 0.3s;
  border: none;
}

.btn-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-2px);
  color: var(--white);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .topbar {
    flex-direction: column;
    gap: 8px;
    padding: 10px 24px;
    text-align: center;
  }

  .topbar-item {
    white-space: normal;
    justify-content: center;
  }

  .topbar-center {
    flex: none;
  }

  .navbar {
    padding: 14px 24px;
    position: relative;
  }

  .logo-img {
    width: 44px;
    height: 44px;
  }

  .logo-text {
    font-size: 11px;
    letter-spacing: 1.2px;
    white-space: normal;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding: 20px 24px 100px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-divider svg {
    margin: 0 auto 20px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-right img {
    max-width: 320px;
  }

  .feature-card {
    width: 94%;
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px 16px;
    margin-top: -50px;
  }

  .feature-item {
    flex: 0 0 calc(33% - 16px);
  }

  .about {
    flex-direction: column;
    padding: 80px 24px 60px;
    gap: 40px;
  }

  .image-frame img {
    height: 300px;
  }

  .products {
    padding: 60px 24px;
  }

  .product-cards {
    grid-template-columns: 1fr;
  }

  .inlay-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stats-inner {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    flex: 0 0 calc(33% - 16px);
  }

  .gallery {
    padding: 60px 24px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq,
  .contact-section {
    padding: 60px 24px;
  }

  .faq-subtitle,
  .contact-subtitle {
    margin-top: -20px;
    margin-bottom: 36px;
  }

  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-video {
    position: static;
  }

  .faq-video video {
    min-height: 240px;
    max-height: 360px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px;
  }

  .section-heading h2 {
    font-size: 20px;
    white-space: normal;
    text-align: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 16px 24px;
  }
}

@media (max-width: 480px) {
  .feature-item {
    flex: 0 0 calc(50% - 12px);
  }

  .inlay-grid,
  .mandir-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    flex: 0 0 100%;
  }
}
