/* ===========================
   ASTRO KARTIKAY - INNER CSS
   =========================== */

/* ===== PAGE HERO ===== */
.page-hero {
  min-height: 45vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, #1a0a2e 0%, #0a0510 50%, var(--black) 100%);
}
.page-stars { position: absolute; inset: 0; overflow: hidden; }
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 2rem;
}
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  margin: 1rem 0;
  line-height: 1.1;
}
.page-hero-content h1 em { color: var(--gold); font-style: italic; }
.page-hero-content p {
  color: var(--grey);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto;
}

/* ===== FRAGRANCE FINDER ===== */
.finder-section { background: var(--black); }
.finder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.finder-card {
  background: var(--black-2);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 16px;
  overflow: hidden;
}
.finder-card-header {
  background: linear-gradient(135deg, rgba(107,26,26,0.5), rgba(20,10,40,0.8));
  padding: 2.5rem 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.finder-icon { font-size: 3rem; display: block; margin-bottom: 1rem; }
.finder-card-header h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.finder-card-header p { color: var(--grey); font-size: 0.95rem; }

.finder-form { padding: 2.5rem 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
input[type="text"], input[type="date"], input[type="time"], input[type="email"],
input[type="number"], input[type="password"], textarea, select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1.1rem;
  width: 100%;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
input::placeholder { color: var(--grey-dark); }
select option { background: var(--black-2); color: var(--off-white); }
.btn-full { width: 100%; text-align: center; padding: 1rem; font-size: 0.9rem; }

/* INFO SIDE */
.finder-info-side h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2rem;
}
.how-steps { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.how-step { display: flex; gap: 1.2rem; align-items: flex-start; }
.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(201,168,76,0.25);
  flex-shrink: 0;
  line-height: 1;
}
.how-step h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-pale);
  margin-bottom: 0.3rem;
}
.how-step p { color: var(--grey); font-size: 0.95rem; }

.moon-sign-table h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.sign-rows { display: flex; flex-direction: column; gap: 0.4rem; }
.sign-row {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1.5fr;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  background: rgba(255,255,255,0.02);
  align-items: center;
}
.sign-name { color: var(--off-white); }
.sign-lord { color: var(--gold); font-weight: 600; }
.sign-frag { color: var(--grey); }

/* RESULT CARD */
.result-card {
  background: var(--black-2);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
}
.result-moon-sign {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(201,168,76,0.05);
  border: 1px solid;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.result-emoji { font-size: 3.5rem; }
.result-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-dark);
  margin-bottom: 0.3rem;
}
.result-sign {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.result-lord {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--grey);
  margin-top: 0.3rem;
}
.result-fragrance { margin-bottom: 2rem; }
.result-frag-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0.5rem 0 1rem;
}
.result-desc { color: var(--grey); font-size: 1.05rem; line-height: 1.7; font-style: italic; }
.result-cta { display: flex; flex-direction: column; gap: 1rem; }
.result-cta .btn-primary, .result-cta .btn-outline { text-align: center; }

/* ===== VASTU RECOMMENDATION ===== */
.vastu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.problem-btn {
  background: var(--black-3);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 10px;
  padding: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  color: var(--off-white);
  font-family: var(--font-body);
}
.problem-btn:hover, .problem-btn.selected {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.problem-btn-icon { font-size: 1.5rem; display: block; margin-bottom: 0.4rem; }
.problem-btn-text {
  font-size: 0.9rem;
  color: var(--off-white);
  display: block;
}
.problem-btn-dir {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Vastu result */
.vastu-result {
  background: var(--black-2);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  padding: 2.5rem;
  display: none;
}
.vastu-result.show { display: block; animation: fade-up 0.5s ease forwards; }
.painting-preview {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, rgba(107,26,26,0.3), rgba(20,20,32,0.8));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  margin-bottom: 1.5rem;
}

/* ===== NUMEROLOGY CALCULATORS ===== */
.calc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding-bottom: 1.5rem;
}
.calc-tab {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  border: 1px solid rgba(201,168,76,0.15);
  background: transparent;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}
.calc-tab:hover, .calc-tab.active { color: var(--gold); border-color: var(--gold); background: rgba(201,168,76,0.08); }

.calc-panel { display: none; }
.calc-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

.calc-form-card {
  background: var(--black-2);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 16px;
  padding: 2.5rem;
}
.calc-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.calc-form-card p { color: var(--grey); font-size: 0.95rem; margin-bottom: 1.5rem; }
.calc-form { display: flex; flex-direction: column; gap: 1.2rem; }

.calc-result-area {
  background: var(--black-3);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 16px;
  padding: 2.5rem;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.calc-result-area.has-result { justify-content: flex-start; text-align: left; }
.calc-placeholder { color: var(--grey-dark); font-style: italic; }
.big-number {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 40px rgba(201,168,76,0.3);
}
.number-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.number-desc { color: var(--grey); font-size: 1rem; line-height: 1.7; }
.number-traits { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.trait-tag {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
}

/* ===== CONSULTATION PAGE ===== */
.consultation-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 4rem; align-items: start; }
.booking-form-card {
  background: var(--black-2);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 16px;
  overflow: hidden;
}
.booking-form-header {
  background: linear-gradient(135deg, var(--maroon), #2a0a2a);
  padding: 2.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.booking-form-header h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.booking-form-header p { color: rgba(255,255,255,0.7); }
.booking-form { padding: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.slot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.slot-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 6px;
  padding: 0.6rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--grey);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.slot-btn:hover, .slot-btn.selected { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }
.slot-btn.booked { opacity: 0.35; cursor: not-allowed; }

.consultation-info-side { display: flex; flex-direction: column; gap: 2rem; }
.info-box {
  background: var(--black-2);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 16px;
  padding: 2rem;
}
.info-box h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.info-list { display: flex; flex-direction: column; gap: 0.7rem; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--grey);
}
.info-item::before { content: '✦'; color: var(--gold); flex-shrink: 0; font-size: 0.7rem; margin-top: 0.3rem; }
.price-display {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(107,26,26,0.4), rgba(40,20,60,0.4));
  border-radius: 12px;
  border: 1px solid rgba(201,168,76,0.2);
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.price-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 0.5rem;
}

/* ===== SHOP PAGE ===== */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 3rem; align-items: start; }
.shop-filters {
  background: var(--black-2);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 16px;
  padding: 2rem;
  position: sticky;
  top: 100px;
}
.filter-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-pale);
  margin-bottom: 1.5rem;
}
.filter-group { margin-bottom: 2rem; }
.filter-group-title {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0;
  cursor: pointer;
  transition: var(--transition);
}
.filter-option:hover { color: var(--gold); }
.filter-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.filter-label {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--grey);
}
.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.shop-count {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--grey-dark);
}
.shop-sort {
  background: var(--black-2);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--off-white);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  width: auto;
}

/* ===== BLOG PAGE ===== */
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 4rem; align-items: start; }
.blog-main { }
.blog-card-full {
  background: var(--black-2);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
  transition: var(--transition);
}
.blog-card-full:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-3px); }
.blog-card-full .blog-img { height: 220px; }
.blog-card-full .blog-content { padding: 2rem; }
.blog-card-full h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.blog-sidebar { position: sticky; top: 100px; }
.sidebar-widget {
  background: var(--black-2);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.widget-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-pale);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

/* ===== GALLERY PAGE ===== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
  justify-content: center;
}
.gallery-filter-btn {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  border: 1px solid rgba(201,168,76,0.15);
  background: transparent;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-filter-btn:hover, .gallery-filter-btn.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.gallery-masonry {
  columns: 3;
  column-gap: 1.5rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.gallery-placeholder {
  background: linear-gradient(135deg, var(--black-3), rgba(107,26,26,0.2));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--grey-dark);
  gap: 0.5rem;
  border: 1px solid rgba(201,168,76,0.1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,15,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--gold); font-size: 1.5rem; }

/* ===== LOGIN PAGE ===== */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 2rem 4rem;
  background: radial-gradient(ellipse at 50% 0%, #1a0a2e 0%, var(--black) 70%);
}
.login-card {
  background: var(--black-2);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px;
  padding: 3.5rem;
  width: 100%;
  max-width: 440px;
  text-align: center;
}
.login-logo { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 0.5rem; }
.login-symbol { font-size: 3rem; color: var(--gold); display: block; margin-bottom: 1rem; }
.login-card h2 { font-family: var(--font-display); font-size: 1.8rem; color: var(--white); margin-bottom: 0.5rem; }
.login-card p { color: var(--grey); margin-bottom: 2rem; }
.login-form { display: flex; flex-direction: column; gap: 1.2rem; text-align: left; }
.forgot-link {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--gold);
  text-align: right;
  display: block;
  margin-top: 0.3rem;
}
.login-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--grey-dark);
  font-size: 0.8rem;
  margin: 0.5rem 0;
}
.login-divider::before, .login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201,168,76,0.15);
}
.register-link {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--grey);
  text-align: center;
}
.register-link a { color: var(--gold); }

/* ===== ABOUT PAGE ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.about-img-side { position: sticky; top: 100px; }
.about-main-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 16px;
  background: var(--black-3);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--grey-dark);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.awards-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.award-mini-card {
  background: var(--black-2);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}
.award-mini-icon { font-size: 1.5rem; margin-bottom: 0.3rem; }
.award-mini-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold-pale);
  line-height: 1.2;
}
.about-content-side h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.about-content-side h2 em { color: var(--gold); font-style: italic; }
.about-text { color: var(--grey); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.2rem; }
.timeline { margin: 3rem 0; }
.timeline-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  width: 55px;
  padding-top: 0.2rem;
}
.timeline-content {
  border-left: 1px solid rgba(201,168,76,0.2);
  padding-left: 1.5rem;
  padding-bottom: 1.5rem;
}
.timeline-content h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.timeline-content p { color: var(--grey); font-size: 0.95rem; }

/* ===== ACHIEVEMENTS PAGE ===== */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.achievement-card {
  background: var(--black-2);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.achievement-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--gold), var(--maroon));
}
.achievement-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-5px); box-shadow: var(--shadow-gold); }
.achievement-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.achievement-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-pale);
  margin-bottom: 0.5rem;
}
.achievement-card p { color: var(--grey); font-size: 0.9rem; }
.achievement-year {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 0.8rem;
  display: block;
}

/* ===== TESTIMONIALS FULL PAGE ===== */
.testimonials-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem; align-items: start; }
.contact-form-card {
  background: var(--black-2);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 16px;
  padding: 3rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
textarea {
  resize: vertical;
  min-height: 150px;
}
.contact-info-side { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card {
  background: var(--black-2);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-info-text h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.contact-info-text p {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--grey);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .finder-grid, .vastu-grid, .calc-panel.active,
  .consultation-grid, .blog-layout, .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-filters { position: static; }
  .gallery-masonry { columns: 2; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .about-img-side { position: static; }
}
@media (max-width: 600px) {
  .gallery-masonry { columns: 1; }
  .problem-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .slot-grid { grid-template-columns: repeat(2, 1fr); }
  .login-card { padding: 2rem 1.5rem; }
}
