:root {
  --navy: #050a15;
  --navy-light: #0d1627;
  --tan: #c2a37d;
  --tan-light: rgba(194, 163, 125, 0.15);
  --tan-deep: #a88a64;
  --cream: #f9f7f2;
  --white: #ffffff;
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --card-aspect: 4/5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  background: var(--navy);
}

@media (pointer: fine) {
  body,
  a,
  button,
  .nav-pill,
  .swiper-slide {
    cursor: none !important;
  }
}

body {
  color: var(--navy);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

/* --- Custom Cursor --- */
#cursor {
  width: 8px;
  height: 8px;
  background: var(--tan);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
}

#cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(194, 163, 125, 0.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease-out;
}

/* --- 3D Hub Background --- */
.viewport-3d {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  background: var(--navy);
  perspective: 1500px;
  pointer-events: none;
  opacity: 0;
}

.hub-bg-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hub-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hub-bg.active {
  opacity: 1;
  visibility: visible;
}

.bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2) contrast(1.1) grayscale(0.5);
  transform: scale(1.1);
  transition: transform 15s linear;
}

.hub-bg.active .bg-image {
  transform: scale(1);
}

/* --- Hero Gateway --- */
#hero-gateway {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

#logo-container-box {
  background: var(--cream);
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

#hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 9vw, 6rem);
  color: var(--navy);
  line-height: 1;
  text-align: center;
}

#logo-mark {
  opacity: 0;
  position: absolute;
  text-align: center;
  transform: scale(3);
  width: 100%;
}

.logo-txt-artind {
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1;
}

.logo-txt-intl {
  font-weight: 400;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--tan-deep);
  margin-top: 5px;
}

/* --- Navigation Pillar --- */
.nav-wrapper {
  position: fixed;
  width: 100%;
  bottom: 8%;
  left: 0;
  z-index: 1500;
  display: flex;
  justify-content: center;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-wrapper.is-sticky {
  bottom: auto;
  top: 100px;
}

.navigator-stage {
  display: flex;
  gap: 8px;
  padding: 3px 15px; /* Side padding di hai taaki last pill chipke nahi */
  width: 100%;
  justify-content: flex-start;
  border-radius: 100px;
  background: rgba(13, 22, 39, 0.85);
  border: 1px solid rgba(194, 163, 125, 0.3);
  backdrop-filter: blur(25px);
  opacity: 0;
  pointer-events: auto;
  max-width: 92vw;
  margin: 0 auto;   
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
 
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-pill {
  height: 34px;
  padding: 0 18px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  color: rgba(244, 241, 234, 0.4);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-pill.active,
.nav-pill:hover {
  background: var(--tan);
  color: var(--navy);
}

/* --- Content Layer --- */
.content-layer {
  position: relative;
  z-index: 50;
  background: var(--white);
  border-radius: 40px 40px 0 0;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 768px) {
  .nav-pill {
    height: 25px;
    padding: 0px 7px;
    font-size: 7px;
    letter-spacing: 0.03em;
  }
  .navigator-stage {
    padding: 2px 5px;
    max-width: 98vw;
  }
}
@media (min-width: 768px) {
  .content-layer {
    border-radius: 80px 80px 0 0;
  }
}

/* --- Section Container --- */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .section-container {
    padding: 0 40px;
  }
}

/* --- Uniform Card Layouts --- */
.catalog-section {
  padding: 80px 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.img-box {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1/1;
  margin-bottom: 12px;
  background: var(--cream);
  position: relative;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.swiper-slide:hover .img-box img {
  transform: scale(1.1);
}

/* Style: Overlap (Refined to prevent page break) */
.card-overlap {
  background: var(--white);
  border: 1px solid rgba(5, 10, 21, 0.05);
  border-radius: 16px;
  padding: 10px;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.swiper-overlap .swiper-slide {
  margin-left: 0;
}

@media (min-width: 1024px) {
  .swiper-overlap .swiper-slide {
    margin-left: -90px;
  }

  .swiper-overlap .swiper-slide:first-child {
    margin-left: 0;
  }
}

.swiper-overlap .swiper-slide:hover {
  z-index: 10;
}

.swiper-overlap .swiper-slide:hover .card-overlap {
  transform: translateY(-8px);
  border-color: var(--tan);
  box-shadow: 0 20px 40px rgba(5, 10, 21, 0.1);
}

/* Style: Accordion (Responsive Widths) */
.card-accordion {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--navy);
  position: relative;
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.swiper-accordion .swiper-slide {
  width: 160px !important;
  transition: width 0.7s ease;
}

@media (min-width: 1024px) {
  .swiper-accordion .swiper-slide {
    width: 200px !important;
  }

  .swiper-accordion .swiper-slide:hover {
    width: 400px !important;
  }
}

.acc-info {
  opacity: 0;
  transition: 0.4s;
  transform: translateY(10px);
}

.swiper-slide:hover .acc-info {
  opacity: 1;
  transform: translateY(0);
}

/* Style: Glass */
.card-glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 12px;
  transition: 0.5s;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.swiper-slide:hover .card-glass {
  background: #fff;
  border-color: var(--tan);
  box-shadow: 0 15px 30px rgba(5, 10, 21, 0.08);
}

/* Style: Full Bleed */
.card-full {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: var(--card-aspect);
  position: relative;
  background: #000;
}

.card-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: 1.2s;
}

.card-full .overlay {
  position: absolute;
  inset: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: linear-gradient(to top, rgba(5, 10, 21, 0.9), transparent);
}

.card-full:hover img {
  opacity: 1;
  transform: scale(1.08);
}

/* Typo Wrap Logic */
.tag {
  font-size: 7px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--tan-deep);
  display: block;
  margin-bottom: 4px;
}

.title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.1;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Enquiry Button */
.btn-enquire {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px;
  border-radius: 10px;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--navy);
  color: var(--tan);
  transition: 0.3s;
  border: none;
}

.btn-enquire:hover {
  background: var(--tan);
  color: var(--navy);
}

/* Modal Node */
#enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 10, 21, 0.85);
  backdrop-filter: blur(15px);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
}

#enquiry-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--cream);

  width: 92%;
  max-width: 450px;
  border-radius: 32px;
  padding: 20px;
  transform: translateY(30px);
  transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

#enquiry-modal.active .modal-card {
  transform: translateY(0);
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.swiper {
  width: 100%;
  height: 100%;
  overflow: visible !important;
}

.swiper-container-wrapper {
  position: relative;
  width: 100%;
}

.footer-reveal {
  position: relative;
  /* FIX */
  width: 100%;
  min-height: 100vh;
  background: var(--navy);
  color: var(--cream);
  z-index: 10;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 80px 0 40px;
  overflow: hidden;
}

.footer-spacer {
  height: 100vh;
}

.footer-brand-bg {
  z-index: 0;
  /* background me rahe */
}

.footer-reveal .section-container {
  position: relative;
  z-index: 2;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(5, 10, 21, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Responsive Card */
.modal-card {
  background: var(--cream);
  width: 95%;
  max-width: 1000px;
  height: 90vh;
  max-height: 700px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(40px);
  transition: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 768px) {
  .modal-card {
    flex-direction: row;
    height: 600px;
  }
}
.modal-overlay.active .modal-card {
  transform: translateY(0);
}

/* Input Styles */
.sync-input {
  width: 100%;
  background: white;
  border: 1px solid rgba(5, 10, 21, 0.1);
  padding: 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
  outline: none;
}
.sync-input:focus {
  border-color: var(--tan);
  box-shadow: 0 0 0 4px rgba(194, 163, 125, 0.1);
}

/* Stages Animation */
.form-stage {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}
.form-stage.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tag {
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--tan);
  margin-bottom: 8px;
  display: block;
}
@media (max-width: 765px) {
  .swiper-overlap .swiper-slide {
    margin-right: -40px !important;
  }
  .section-container {
    padding: 0px 12px;
  }
  .card-accordion {
    height: 200px;
  }
}

/* Default State (Top par) */
.nav-default {
  background: transparent;
}

/* Scrolled State (Scroll karne ke baad) */
.nav-scrolled {
  background: var(--cream) !important; /* Aapka dark navy background */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Scroll hone par text aur button white karne ke liye */
.nav-scrolled .nav-text,
.nav-scrolled .nav-text p {
  color: var(--navy-light) !important;
}

.nav-scrolled #nav-btn {
  color: var(--tan) !important;
  background: var(--navy-light) !important; /* Button background change */
  border-color: var(--tan) !important;
}
.card-accordion {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--navy);
}

/* 1. Image Layer */
.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1; /* Sabse niche image */
}

/* 2. Gradient Layer (Sirf Image ke upar) */
.card-accordion::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%; /* Niche se aadhe card tak dark color */
  background: linear-gradient(to top, var(--navy) 0%, transparent 100%);
  z-index: 2; /* Image ke upar lekin text ke niche */
  pointer-events: none;
}

/* 3. Text Layer (Sabse upar) */
.card-accordion .text-container {
  /* Aapke text ka class name */
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 3; /* Ye gradient ke bhi upar rahega */
  color: #ffffff; /* White text dark background par best dikhta hai */
}

