/* 
  SHIVA GEMS - LUXURY JEWELLERY WEBSITE BLUEPRINT
  Premium CSS Design System & Layout Engine
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- CUSTOM VARIABLES --- */
:root {
  --color-black: #0B0B0B;
  --color-black-light: #121212;
  --color-black-lighter: #1E1E1E;
  --color-gold: #D4AF37;
  --color-gold-hover: #C59F2D;
  --color-gold-light: rgba(212, 175, 55, 0.1);
  --color-gold-border: rgba(212, 175, 55, 0.3);
  --color-white: #FFFFFF;
  --color-light-grey: #F8F8F8;
  --color-grey-text: #A0A0A0;
  --color-dark-grey: #2A2A2A;
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease-in-out;
  
  --max-width: 1360px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  background-color: var(--color-white);
  color: var(--color-black);
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.text-gold {
  color: var(--color-gold) !important;
}

.bg-dark-section {
  background-color: var(--color-black);
  color: var(--color-white);
}

.bg-light-section {
  background-color: var(--color-white);
  color: var(--color-black);
}

.bg-grey-section {
  background-color: var(--color-light-grey);
  color: var(--color-black);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* Section Containers */
section {
  padding: 120px 8% 120px 8%;
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: 70px 5% 70px 5%;
  }
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

/* Section Header Styles */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header.dark h2 {
  color: var(--color-white);
}

.section-header.light h2 {
  color: var(--color-black);
}

.section-header .accent-line {
  width: 60px;
  height: 2px;
  background-color: var(--color-gold);
  margin: 0 auto;
  margin-top: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-filled-gold {
  background-color: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
}

.btn-filled-gold:hover {
  background-color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn-outline-gold:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* --- SECTION 1 - HEADER --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 24px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Scrolled State */
.site-header.scrolled {
  padding: 16px 8%;
  background-color: rgba(11, 11, 11, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-white);
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--color-gold);
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--color-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-cta .btn-dealer {
  padding: 10px 20px;
  font-size: 0.75rem;
  background-color: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
}

.header-cta .btn-dealer:hover {
  background-color: transparent;
  color: var(--color-gold);
}

/* Hamburger & Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.mobile-nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--color-white);
  margin-bottom: 6px;
  transition: var(--transition-smooth);
}

.mobile-nav-toggle span:last-child {
  margin-bottom: 0;
}

/* Active hamburger icon */
.mobile-nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Side Menu */
.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--color-black);
  z-index: 1050;
  padding: 100px 40px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  border-left: 1px solid var(--color-gold-border);
}

.mobile-menu-panel.open {
  right: 0;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-white);
  display: block;
  padding: 8px 0;
}

.mobile-nav-link:hover {
  color: var(--color-gold);
  padding-left: 8px;
}

.mobile-dealer-cta {
  margin-top: auto;
}

@media (max-width: 1024px) {
  .nav-menu, .header-cta {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
}

/* --- SECTION 2 - HERO SECTION --- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
  background-image: radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.08) 0%, rgba(11, 11, 11, 1) 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background-color: var(--color-gold-light);
  border: 1px solid var(--color-gold-border);
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 24px;
}

.hero-content h1 span {
  display: block;
  color: var(--color-gold);
  font-style: italic;
  font-weight: 400;
}

.hero-subtext {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-grey-text);
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.slider-dots {
  display: flex;
  gap: 12px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-dark-grey);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background-color: var(--color-gold);
  transform: scale(1.3);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.diamond-glow-bg {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(11, 11, 11, 0) 70%);
  border-radius: 50%;
  z-index: 1;
}

.hero-image {
  max-width: 100%;
  height: auto;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.7));
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Responsive Hero */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 3.2rem;
  }
  .hero-subtext {
    margin: 0 auto 32px auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .slider-dots {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
  }
  .diamond-glow-bg {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
  }
}

/* --- SECTION 3 - TRUST STRIP --- */
.trust-strip {
  padding: 48px 8%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.trust-icon-box {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--color-black);
  transition: var(--transition-smooth);
}

.trust-item:hover .trust-icon-box {
  color: var(--color-gold);
  transform: translateY(-4px);
}

.trust-item h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.trust-item p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* --- SECTION 4 - COLLECTION GRID --- */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.collection-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background-color: var(--color-black);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.collection-img-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  filter: brightness(0.85);
}

.collection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 11, 11, 0.95) 0%, rgba(11, 11, 11, 0.4) 50%, rgba(11, 11, 11, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  z-index: 2;
  transition: var(--transition-smooth);
}

.collection-card h3 {
  font-size: 1.6rem;
  color: var(--color-white);
  margin-bottom: 4px;
  transition: var(--transition-smooth);
}

.collection-card p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.85;
  transition: var(--transition-smooth);
}

.collection-card::after {
  content: '';
  position: absolute;
  top: 16px;
  right: 16px;
  bottom: 16px;
  left: 16px;
  border: 1px solid var(--color-gold);
  opacity: 0;
  transition: var(--transition-smooth);
  pointer-events: none;
  z-index: 3;
}

/* Hover Interactions */
.collection-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.7);
}

.collection-card:hover .collection-overlay {
  background: linear-gradient(to top, rgba(11, 11, 11, 0.98) 0%, rgba(11, 11, 11, 0.5) 50%, rgba(11, 11, 11, 0.2) 100%);
}

.collection-card:hover h3 {
  color: var(--color-gold);
  transform: translateY(-4px);
}

.collection-card:hover::after {
  opacity: 1;
}

@media (max-width: 1024px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .collections-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .collection-card {
    aspect-ratio: 1/1;
  }
}

/* --- SECTION 5 - WHY CHOOSE US (SPLIT) --- */
.why-choose-section {
  padding: 0;
  display: flex;
}

.why-split-img {
  width: 50%;
  position: relative;
  background-color: var(--color-black-light);
}

.why-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-split-content {
  width: 50%;
  padding: 120px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-split-content h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.promise-list {
  list-style: none;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.promise-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.promise-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-gold-light);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.promise-item h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--color-black);
}

.promise-item p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .why-choose-section {
    flex-direction: column;
  }
  .why-split-img {
    width: 100%;
    height: 400px;
  }
  .why-split-content {
    width: 100%;
    padding: 70px 5%;
  }
}

/* --- SECTION 6 - CUSTOM PROCESS TIMELINE --- */
.timeline-container {
  position: relative;
  margin: 80px auto 40px auto;
  max-width: 1100px;
}

.timeline-line-bg {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-light-grey);
  z-index: 1;
}

.timeline-line-progress {
  position: absolute;
  top: 40px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-gold);
  z-index: 2;
  transition: width 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.timeline-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}

.timeline-step {
  width: 18%;
  text-align: center;
  cursor: pointer;
}

.timeline-node {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 2px solid var(--color-light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-dark-grey);
  transition: var(--transition-smooth);
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.timeline-step:hover .timeline-node {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
}

.timeline-step.active .timeline-node {
  border-color: var(--color-gold);
  background-color: var(--color-black);
  color: var(--color-gold);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
  transform: scale(1.1);
}

.timeline-step h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  transition: var(--transition-fast);
}

.timeline-step.active h3 {
  color: var(--color-gold);
}

.timeline-step p {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.4;
  padding: 0 10px;
}

/* Mobile Timeline Layout */
@media (max-width: 900px) {
  .timeline-container {
    margin: 40px auto;
  }
  .timeline-line-bg {
    left: 40px;
    top: 0;
    width: 2px;
    height: 100%;
  }
  .timeline-line-progress {
    left: 40px;
    top: 0;
    width: 2px;
    height: 0%;
  }
  .timeline-steps {
    flex-direction: column;
    gap: 48px;
  }
  .timeline-step {
    width: 100%;
    display: flex;
    align-items: flex-start;
    text-align: left;
  }
  .timeline-node {
    margin: 0 32px 0 0;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
  }
  .timeline-step-content {
    padding-top: 10px;
  }
  .timeline-step p {
    padding: 0;
  }
}

/* --- SECTION 7 - FEATURED COLLECTION --- */
.featured-section {
  background-color: var(--color-black);
  padding: 120px 8%;
  overflow: hidden;
}

.carousel-outer-wrapper {
  position: relative;
  width: 100%;
}

.featured-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
  padding: 20px 0;
  cursor: grab;
}

.featured-carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.featured-carousel:active {
  cursor: grabbing;
}

.product-card {
  flex: 0 0 calc(20% - 20px);
  min-width: 280px;
  scroll-snap-align: start;
  background-color: var(--color-black-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold-border);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.product-img-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  background-color: var(--color-black-lighter);
  margin-bottom: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-img-wrapper img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.06);
}

.product-shape {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.product-title {
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 16px;
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}

.spec-label {
  color: var(--color-grey-text);
}

.spec-val {
  color: var(--color-white);
  font-weight: 500;
}

.product-card .btn-enquire {
  margin-top: auto;
  font-size: 0.75rem;
  padding: 12px;
  background-color: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
}

.product-card .btn-enquire:hover {
  background-color: transparent;
  color: var(--color-gold);
}

/* Carousel controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-gold-border);
  background: transparent;
  color: var(--color-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.carousel-btn:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
}

@media (max-width: 1200px) {
  .product-card {
    flex: 0 0 calc(33.33% - 16px);
  }
}

@media (max-width: 768px) {
  .featured-section {
    padding-right: 0; /* Bleed off screen edge on mobile scroll */
  }
  .product-card {
    flex: 0 0 80%;
  }
}

/* --- SECTION 8 - PRIVATE DEALER ACCESS (CRITICAL) --- */
.dealer-access-section {
  background-color: var(--color-black-light);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
  overflow: hidden;
}

.dealer-access-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, rgba(0,0,0,0) 50%);
  pointer-events: none;
}

.dealer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.dealer-info h2 {
  font-size: 2.8rem;
  color: var(--color-white);
  margin-bottom: 24px;
}

.dealer-info h2 span {
  color: var(--color-gold);
}

.dealer-info p {
  color: var(--color-grey-text);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 300;
}

.dealer-benefits-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dealer-benefit-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
  font-size: 0.9rem;
}

.dealer-benefit-bullet svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

.dealer-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.dealer-card {
  background-color: var(--color-black);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-smooth);
}

.dealer-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  transform: translateY(-5px);
}

.dealer-card.primary {
  border-color: var(--color-gold-border);
}

.dealer-card.primary:hover {
  border-color: var(--color-gold);
}

.dealer-card-icon {
  width: 48px;
  height: 48px;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.dealer-card h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 12px;
}

.dealer-card p {
  color: var(--color-grey-text);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 32px;
}

.dealer-card .btn {
  margin-top: auto;
  font-size: 0.75rem;
  padding: 12px 20px;
}

@media (max-width: 1024px) {
  .dealer-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 600px) {
  .dealer-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .dealer-info h2 {
    font-size: 2.2rem;
  }
}

/* --- SECTION 9 - TESTIMONIAL, INSTAGRAM & CONTACT --- */
.three-col-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.col-header {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-black);
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Column 1: Testimonials */
.testimonial-slider {
  position: relative;
  overflow: hidden;
  min-height: 250px;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.6s ease;
}

.testimonial-slide.active {
  display: block;
}

.quote-icon {
  color: var(--color-gold-border);
  font-size: 3.5rem;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 16px;
  height: 30px;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--color-black);
  margin-bottom: 24px;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-dark-grey);
}

.testimonial-author span {
  font-weight: 400;
  color: #888;
  display: block;
  margin-top: 4px;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
  margin-top: 32px;
}

/* Column 2: Instagram Preview */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.insta-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: var(--color-light-grey);
  position: relative;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.insta-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 11, 11, 0.85);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  color: var(--color-white);
}

.insta-item:hover img {
  transform: scale(1.08);
}

.insta-item:hover .insta-hover {
  opacity: 1;
}

/* Column 3: Contact Form & Info */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.form-group {
  position: relative;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background-color: transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-black);
  outline: none;
  transition: var(--transition-fast);
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.05);
}

.contact-form label {
  display: none; /* Accessible placeholder styling used instead */
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 24px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
}

.contact-info-icon {
  width: 24px;
  height: 24px;
  color: var(--color-gold);
  flex-shrink: 0;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 1100px) {
  .three-col-section {
    grid-template-columns: 1fr 1fr;
  }
  .three-col-section > div:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .three-col-section {
    grid-template-columns: 1fr;
  }
  .three-col-section > div:last-child {
    grid-column: span 1;
  }
}

/* --- SECTION 10 - FOOTER --- */
.site-footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 96px 8% 40px 8%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 28px;
}

.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-brand .footer-logo span {
  color: var(--color-gold);
}

.footer-brand p {
  color: var(--color-grey-text);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-social-icons {
  display: flex;
  gap: 16px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: var(--transition-smooth);
}

.footer-social-icon:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-3px);
  background-color: var(--color-gold-light);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-link a {
  font-size: 0.85rem;
  color: var(--color-grey-text);
}

.footer-link a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 32px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #666;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* --- PERSISTENT FLOATING WHATSAPP BUTTON --- */
.whatsapp-float-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: var(--transition-smooth);
}

.whatsapp-float-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
  background-color: #20BA5A;
}

/* Pulsing outer circle */
.whatsapp-float-btn::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 1px solid #25D366;
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
  opacity: 0.8;
  pointer-events: none;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 0.4; }
  100% { transform: scale(1.2); opacity: 0; }
}

@media (max-width: 768px) {
  .whatsapp-float-btn {
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
  }
  .site-footer {
    padding-bottom: 100px; /* Leave space for floating CTA */
  }
}

/* --- MODAL POPUP & OVERLAYS --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 11, 11, 0.9);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  padding: 24px;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-container {
  background-color: var(--color-black-light);
  border: 1px solid var(--color-gold-border);
  width: 100%;
  max-width: 550px;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: var(--transition-smooth);
}

.modal-overlay.open .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--color-gold);
  transform: rotate(90deg);
}

.modal-header {
  padding: 32px 40px 20px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.modal-header h2 {
  font-size: 1.8rem;
  color: var(--color-white);
}

.modal-header h2 span {
  color: var(--color-gold);
}

.modal-header p {
  color: var(--color-grey-text);
  font-size: 0.85rem;
  margin-top: 8px;
}

.modal-body {
  padding: 40px;
}

/* Modal Form Styles */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-form label {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
}

.modal-form input,
.modal-form select,
.modal-form textarea {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--color-black);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  border-color: var(--color-gold);
}

.modal-form textarea {
  height: 100px;
  resize: none;
}

.modal-form select option {
  background-color: var(--color-black-light);
  color: var(--color-white);
}

.modal-form .btn {
  margin-top: 10px;
}

@media (max-width: 480px) {
  .modal-header, .modal-body {
    padding: 24px;
  }
  .modal-header h2 {
    font-size: 1.5rem;
  }
}

/* B2B Application Specific Tabs */
.portal-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 24px;
}

.portal-tab {
  flex: 1;
  padding: 16px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-grey-text);
  cursor: pointer;
  transition: var(--transition-fast);
  border-bottom: 2px solid transparent;
}

.portal-tab.active {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

.portal-pane {
  display: none;
}

.portal-pane.active {
  display: block;
}

/* Success State Box */
.success-box {
  text-align: center;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.success-box h3 {
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 12px;
}

.success-box p {
  color: var(--color-grey-text);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* --- SCROLL ANIMATION SYSTEM --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
