/* ═══════════════════════════════════════════
   Jyoti Kitchen Studio — Inner Pages Styles
   ═══════════════════════════════════════════ */

/* ── Active Nav Link ── */
.nav-links a.active {
  color: var(--gold-lt);
}
.nav-links a.active::after {
  width: 100%;
}

/* ── Page Hero ── */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 70px;
  background: url("../images/hero-kitchen.jpg") center/cover no-repeat;
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 18, 8, 0.88) 0%,
    rgba(61, 43, 31, 0.78) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 10px 0 16px;
}
.page-hero-title span {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero-content p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  margin-bottom: 20px;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.breadcrumb a {
  color: var(--gold-lt);
  text-decoration: none;
  transition: color 0.25s;
}
.breadcrumb a:hover {
  color: #fff;
}
.breadcrumb i {
  font-size: 10px;
}

/* ── Page Section ── */
.page-section {
  padding: 90px 5%;
}
.page-section.bg-cream {
  background: var(--cream);
}
.page-section.bg-dark {
  background: var(--dark);
}
.text-center {
  text-align: center;
}

/* ══════════════════════════════
   ABOUT PAGE
══════════════════════════════ */

/* Mission / Vision */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.mv-card {
  background: #fff;
  border-radius: 20px;
  padding: 38px 30px;
  text-align: center;
  border: 1px solid rgba(200, 146, 42, 0.12);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}
.mv-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 26px;
  color: #fff;
  margin: 0 auto 22px;
  box-shadow: 0 8px 22px rgba(200, 146, 42, 0.35);
}
.mv-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.mv-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.75;
}

/* Stats */
.stats-section {
  text-align: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.big-stat {
  padding: 30px 20px;
}
.big-stat-num {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 10px;
}
.big-stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.team-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(200, 146, 42, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
}
.team-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.team-card:hover .team-img img {
  transform: scale(1.06);
}
.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 8, 0.55);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.team-card:hover .team-overlay {
  opacity: 1;
}
.team-social {
  display: flex;
  gap: 10px;
}
.team-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.25s;
}
.team-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.team-info {
  padding: 20px;
  text-align: center;
}
.team-info h4 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}
.team-info span {
  color: var(--gold);
  font-size: 13px;
}

/* ══════════════════════════════
   SERVICES PAGE
══════════════════════════════ */

.services-full-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 60px;
}
.service-full-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-full-card.reverse {
  direction: rtl;
}
.service-full-card.reverse > * {
  direction: ltr;
}

.sfc-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
}
.sfc-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.service-full-card:hover .sfc-img img {
  transform: scale(1.04);
}
.sfc-num {
  position: absolute;
  top: 18px;
  left: 20px;
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1;
  user-select: none;
}

.sfc-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  font-weight: 700;
  margin: 16px 0 14px;
}
.sfc-body p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.78;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--dark);
  padding: 6px 0;
  border-bottom: 1px solid rgba(200, 146, 42, 0.1);
}
.service-list li:last-child {
  border-bottom: none;
}
.service-list li i {
  color: var(--gold);
  font-size: 13px;
  flex-shrink: 0;
}

/* Process */
.process-grid {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 60px;
  justify-content: center;
  flex-wrap: wrap;
}
.process-step {
  text-align: center;
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  padding: 0 16px;
  position: relative;
}
.process-num {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(200, 146, 42, 0.15);
  line-height: 1;
  margin-bottom: -10px;
}
.process-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 28px;
  color: #fff;
  margin: 0 auto 18px;
  box-shadow: 0 8px 22px rgba(200, 146, 42, 0.35);
}
.process-step h4 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}
.process-step p {
  color: var(--gray);
  font-size: 13px;
  line-height: 1.65;
}
.process-arrow {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.5;
  margin: 0 8px;
}

/* ══════════════════════════════
   GALLERY PAGE
══════════════════════════════ */

/* Filter Tabs */
.filter-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 44px;
}
.filter-btn {
  padding: 10px 24px;
  border: 1.5px solid rgba(200, 146, 42, 0.3);
  border-radius: 50px;
  background: transparent;
  color: var(--gray);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
}
.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(200, 146, 42, 0.35);
}

/* Gallery Grid */
.gallery-full-grid {
  columns: 3;
  column-gap: 20px;
}
.gf-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gf-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gf-item:hover img {
  transform: scale(1.06);
}
.gf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 18, 8, 0.8) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}
.gf-item:hover .gf-overlay {
  opacity: 1;
}
.gf-zoom {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.25s;
  backdrop-filter: blur(4px);
}
.gf-zoom:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.gf-info {
}
.gf-info h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
}
.gf-info span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

/* Hidden items */
.gf-item.hidden {
  display: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.25s;
}
.lightbox-close:hover {
  background: var(--gold);
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.25s;
}
.lightbox-prev {
  left: 20px;
}
.lightbox-next {
  right: 20px;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
}

/* ══════════════════════════════
   CONTACT PAGE
══════════════════════════════ */

/* Info Cards */
.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 0;
}
.ci-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(200, 146, 42, 0.12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.ci-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.1);
}
.ci-icon {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: #fff;
  margin: 0 auto 18px;
  box-shadow: 0 6px 18px rgba(200, 146, 42, 0.35);
}
.ci-card h4 {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 10px;
}
.ci-card p {
  color: var(--gray);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.ci-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    gap 0.2s,
    color 0.2s;
}
.ci-link:hover {
  gap: 10px;
  color: var(--brown);
}

/* Contact page form layout */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Side Info */
.contact-side-box {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  border: 1px solid rgba(200, 146, 42, 0.12);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}
.contact-side-box h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200, 146, 42, 0.15);
}
.hours-list {
  list-style: none;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid #f0ebe3;
  color: var(--dark);
}
.hours-list li:last-child {
  border-bottom: none;
}
.hours-list li.closed {
  color: var(--gray);
}
.hours-list li span:last-child {
  font-weight: 600;
}

/* Form Alert */
.form-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 22px;
  font-weight: 500;
}
.form-alert--success {
  background: #f0faf0;
  border: 1.5px solid #4caf50;
  color: #2e7d32;
}
.form-alert--error {
  background: #fff5f5;
  border: 1.5px solid #ef5350;
  color: #c62828;
}

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 44px auto 0;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(200, 146, 42, 0.12);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.25s;
}
.faq-q:hover {
  color: var(--gold);
}
.faq-q i {
  flex-shrink: 0;
  font-size: 14px;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq-q.open i {
  transform: rotate(45deg);
}
.faq-a {
  display: none;
  padding: 0 24px 20px;
}
.faq-a.open {
  display: block;
}
.faq-a p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.78;
}

/* ══════════════════════════════
   CTA SECTION (Shared)
══════════════════════════════ */
.cta-section {
  background-image: url("../images/call.jpg");
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(200, 146, 42, 0.18) 0%,
    transparent 65%
  );
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.cta-content h2 span {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-content p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
}

/* ══════════════════════════════
   RESPONSIVE — INNER PAGES
══════════════════════════════ */
@media (max-width: 1024px) {
  .mv-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-full-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service-full-card.reverse {
    direction: ltr;
  }
  .sfc-img img {
    height: 280px;
  }
  .gallery-full-grid {
    columns: 2;
  }
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 320px;
    padding: 100px 5% 50px;
  }
  .mv-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-info-cards {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    flex-direction: column;
    align-items: center;
  }
  .process-arrow {
    transform: rotate(90deg);
  }
  .gallery-full-grid {
    columns: 1;
  }
  .filter-tabs {
    gap: 8px;
  }
  .filter-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-cards {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}
