/* ===== OMKAR GRAPHICS — MASTER STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9A7A2E;
  --maroon: #7B1D1D;
  --maroon-dark: #5A1010;
  --white: #FFFFFF;
  --off-white: #FAF8F4;
  --dark: #1A1008;
  --gray: #6B6055;
  --light-gray: #F0EDE8;
  --shadow: 0 8px 40px rgba(122,29,29,0.12);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--dark);
  cursor: none;
  overflow-x: hidden;
}

/* ===== CUSTOM CURSOR ===== */
#cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
#cursor-ring {
  width: 38px; height: 38px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
  opacity: 0.7;
}
body:hover #cursor-ring { opacity: 1; }

/* ===== NAVBAR ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26, 16, 8, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  transition: all 0.3s;
}
nav.scrolled {
  height: 60px;
  background: rgba(26,16,8,0.99);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.03em;
}
.nav-logo span { color: var(--white); font-weight: 400; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gold); color: var(--dark) !important;
  padding: 8px 20px !important; border-radius: 4px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta::after { display: none !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 5px;
}
.hamburger span { width: 26px; height: 2px; background: var(--gold); transition: 0.3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--dark) 50%, #2A1508 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 72px 5% 0;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(123,29,29,0.3) 0%, transparent 40%);
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 2rem;
  animation: fadeSlideUp 0.8s ease both;
}
.hero-badge::before { content: '★'; font-size: 0.7rem; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900; line-height: 1.05;
  color: var(--white); margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.8s 0.15s ease both;
}
.hero h1 span { color: var(--gold); display: block; }
.hero p {
  font-size: 1.1rem; line-height: 1.75;
  color: rgba(255,255,255,0.7);
  max-width: 540px; margin-bottom: 2.5rem;
  animation: fadeSlideUp 0.8s 0.3s ease both;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.45s ease both;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 14px 32px; border-radius: 4px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none; letter-spacing: 0.03em;
  transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 14px 32px; border-radius: 4px;
  font-weight: 500; font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-image-side {
  position: absolute; right: 5%; bottom: 0; top: 72px;
  width: 42%; display: flex; align-items: flex-end;
}
.hero-decorative-box {
  width: 100%; height: 70%;
  background: linear-gradient(160deg, rgba(201,168,76,0.15), rgba(123,29,29,0.1));
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px 8px 0 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; position: relative; overflow: hidden;
  animation: fadeIn 1s 0.5s ease both;
}
.hero-decorative-box::before {
  content: '';
  position: absolute; top: -1px; left: 20%; right: 20%;
  height: 3px; background: var(--gold);
}
.hero-stat-row { display: flex; gap: 3rem; animation: fadeSlideUp 0.8s 0.6s ease both; }
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 900; color: var(--gold);
  display: block; line-height: 1;
}
.hero-stat .lbl { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 4px; letter-spacing: 0.06em; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1s 1s ease both;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, var(--gold)); animation: scrollAnim 2s infinite; }

/* ===== SECTION COMMONS ===== */
section { padding: 100px 5%; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  line-height: 1.15; color: var(--dark);
  margin-bottom: 1rem;
}
.section-title span { color: var(--maroon); }
.section-sub {
  font-size: 1rem; line-height: 1.75;
  color: var(--gray); max-width: 560px; margin-bottom: 3rem;
}
.section-header-center { text-align: center; }
.section-header-center .section-sub { margin-left: auto; margin-right: auto; }

/* ===== GALLERY STRIP (Home Preview) ===== */
.gallery-strip {
  background: var(--white);
  overflow: hidden; padding: 100px 5%;
}
.gallery-scroll-track {
  display: flex; gap: 1.5rem;
  animation: scrollTrack 30s linear infinite;
  width: max-content;
}
.gallery-scroll-track:hover { animation-play-state: paused; }
.gallery-card {
  width: 280px; height: 360px; flex-shrink: 0;
  border-radius: 8px; overflow: hidden;
  position: relative; cursor: pointer;
  transition: transform 0.3s;
}
.gallery-card:hover { transform: scale(1.03); }
.gallery-card-inner {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--light-gray), #E8DFD0);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.gallery-card-inner::before {
  content: '';
  position: absolute; inset: 12px;
  border: 1px solid rgba(201,168,76,0.4); border-radius: 4px;
}
.gallery-card-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,16,8,0.9), transparent);
  padding: 2rem 1rem 1rem;
  color: var(--white); font-size: 0.85rem; font-weight: 500;
}
.wc-design-icon {
  font-size: 3rem; opacity: 0.3; color: var(--maroon);
}

/* ===== SERVICES GRID ===== */
.services-section { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px; padding: 2rem;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(201,168,76,0.35); }
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.25rem;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700; color: var(--dark);
  margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.9rem; line-height: 1.65; color: var(--gray); }

/* ===== REVIEWS ===== */
.reviews-section { background: var(--dark); }
.reviews-section .section-title { color: var(--white); }
.reviews-section .section-tag { color: var(--gold-light); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px; padding: 1.75rem;
  transition: all 0.3s;
}
.review-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(201,168,76,0.3); }
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 3px; }
.review-text { color: rgba(255,255,255,0.75); font-size: 0.92rem; line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.review-author { font-weight: 600; color: var(--white); font-size: 0.9rem; }
.review-author span { color: var(--gold); font-weight: 400; font-size: 0.82rem; }

/* ===== CLIENTS ===== */
.clients-section { background: var(--white); }
.clients-logos {
  display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center;
  margin-top: 2rem;
}
.client-pill {
  padding: 12px 24px;
  border: 1.5px solid var(--light-gray);
  border-radius: 100px;
  font-size: 0.88rem; font-weight: 500; color: var(--gray);
  transition: all 0.2s;
}
.client-pill:hover { border-color: var(--gold); color: var(--maroon); }

/* ===== WHY CHOOSE US ===== */
.why-section { background: linear-gradient(135deg, var(--maroon-dark), var(--maroon)); }
.why-section .section-title { color: var(--white); }
.why-section .section-tag { color: var(--gold-light); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 1.5rem;
  text-align: center; transition: all 0.3s;
}
.why-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.why-card .why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h4 { color: var(--white); font-weight: 600; font-size: 0.95rem; }

/* ===== MAP ===== */
.map-section { background: var(--off-white); padding: 0; }
.map-container { width: 100%; height: 420px; }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  padding: 60px 5% 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--gold); font-weight: 700; margin-bottom: 1rem;
  display: block;
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.75; }
.footer-col h5 {
  color: var(--white); font-weight: 600; margin-bottom: 1.25rem;
  font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 1.25rem; }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: rgba(255,255,255,0.5);
  font-size: 0.9rem; transition: all 0.2s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--dark) 100%);
  padding: 140px 5% 80px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; color: var(--white);
  position: relative;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1rem; max-width: 600px; margin: 1rem auto 0; position: relative; }
.breadcrumb {
  position: relative; display: flex; justify-content: center; gap: 0.5rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }

/* ===== GALLERY PAGE ===== */
.gallery-filter {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 8px 20px; border-radius: 100px;
  border: 1.5px solid var(--light-gray);
  background: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem; font-weight: 500; color: var(--gray);
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--maroon); color: var(--white); border-color: var(--maroon);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.gallery-item {
  border-radius: 8px; overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--light-gray), #E8DFD0);
  position: relative; cursor: pointer;
  transition: transform 0.3s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item .overlay {
  position: absolute; inset: 0;
  background: rgba(26,16,8,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span { color: var(--white); font-size: 0.9rem; font-weight: 600; }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem;
}
.gallery-placeholder .icon { font-size: 3.5rem; opacity: 0.2; color: var(--maroon); }
.gallery-placeholder .label { font-size: 0.8rem; color: var(--gray); font-weight: 500; opacity: 0.6; }

/* ===== PRINTING PAGE ===== */
.printing-list { display: flex; flex-direction: column; gap: 3rem; }
.print-item {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  padding: 2rem; background: var(--white); border-radius: 12px;
  border: 1px solid rgba(201,168,76,0.1);
  transition: box-shadow 0.3s;
}
.print-item:hover { box-shadow: var(--shadow); }
.print-item.reverse { direction: rtl; }
.print-item.reverse > * { direction: ltr; }
.print-img-placeholder {
  aspect-ratio: 16/10; border-radius: 8px;
  background: linear-gradient(135deg, var(--light-gray), #E8DFD0);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; opacity: 0.25; color: var(--maroon);
}
.print-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 0.75rem;
}
.print-content p { color: var(--gray); line-height: 1.75; font-size: 0.95rem; margin-bottom: 1.25rem; }
.price-badge {
  display: inline-block;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-dark); padding: 4px 14px; border-radius: 4px;
  font-size: 0.82rem; font-weight: 600;
}

/* ===== DESIGN PAGE ===== */
.design-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.design-card {
  background: var(--white);
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(201,168,76,0.12);
  transition: all 0.3s;
}
.design-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.design-card-img {
  height: 220px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: rgba(255,255,255,0.2);
  position: relative;
}
.design-card-img::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(26,16,8,0.5));
}
.design-card-body { padding: 1.5rem; }
.design-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem;
}
.design-card-body p { font-size: 0.88rem; color: var(--gray); line-height: 1.65; }

/* ===== ABOUT PAGE ===== */
.about-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-image-block {
  position: relative;
}
.about-img-placeholder {
  aspect-ratio: 4/5; border-radius: 12px;
  background: linear-gradient(135deg, var(--maroon), var(--dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem; color: rgba(255,255,255,0.1);
}
.about-accent-box {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); border-radius: 8px;
  padding: 1.5rem 2rem; text-align: center;
}
.about-accent-box .big { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; color: var(--dark); display: block; line-height: 1; }
.about-accent-box .small { font-size: 0.78rem; font-weight: 600; color: var(--dark); opacity: 0.7; letter-spacing: 0.06em; }
.about-text .section-title { margin-bottom: 1.5rem; }
.about-text p { color: var(--gray); line-height: 1.8; font-size: 0.95rem; margin-bottom: 1rem; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start;
}
.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 1.5rem;
}
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white);
}
.contact-item-text h4 { font-weight: 600; font-size: 0.9rem; color: var(--dark); margin-bottom: 0.2rem; }
.contact-item-text p, .contact-item-text a {
  font-size: 0.88rem; color: var(--gray); text-decoration: none; line-height: 1.6;
}
.contact-item-text a:hover { color: var(--maroon); }
.contact-form { background: var(--white); border-radius: 12px; padding: 2.5rem; box-shadow: var(--shadow); }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600; color: var(--dark);
  margin-bottom: 0.4rem; letter-spacing: 0.04em;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: 6px; font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem; color: var(--dark);
  background: var(--off-white); transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold);
}
.form-group textarea { height: 140px; resize: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  width: 100%; padding: 14px;
  background: var(--maroon); color: var(--white);
  border: none; border-radius: 6px; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.04em;
  transition: all 0.25s;
}
.btn-submit:hover { background: var(--maroon-dark); transform: translateY(-2px); }

/* ===== FAQ ===== */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--light-gray);
}
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 600; color: var(--dark);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--maroon); }
.faq-q .icon { font-size: 1.2rem; transition: transform 0.3s; color: var(--gold); }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s;
  font-size: 0.9rem; color: var(--gray); line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 1.25rem; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: none; }

/* Stagger children */
.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:0s; }
.stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.1s; }
.stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.2s; }
.stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:0.3s; }
.stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:0.4s; }
.stagger.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay:0.5s; }
.stagger.visible > *:nth-child(7) { opacity:1; transform:none; transition-delay:0.6s; }
.stagger.visible > *:nth-child(8) { opacity:1; transform:none; transition-delay:0.7s; }
.stagger.visible > *:nth-child(9) { opacity:1; transform:none; transition-delay:0.8s; }

/* ===== KEYFRAMES ===== */
@keyframes fadeSlideUp {
  from { opacity:0; transform:translateY(24px); }
  to { opacity:1; transform:none; }
}
@keyframes fadeIn {
  from { opacity:0; } to { opacity:1; }
}
@keyframes scrollAnim {
  0%,100% { opacity:0.3; }
  50% { opacity:1; }
}
@keyframes scrollTrack {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes goldPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(201,168,76,0); }
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-intro, .contact-grid { grid-template-columns: 1fr; }
  .design-cards { grid-template-columns: 1fr 1fr; }
  .print-item, .print-item.reverse { grid-template-columns: 1fr; direction: ltr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--dark); padding: 1.5rem 5%; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-image-side { display: none; }
  .hero { text-align: center; }
  .hero-btns { justify-content: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .design-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}
