:root {
  --drish-bg-light: #f8fafc;
  --drish-surface: #ffffff;
  --drish-accent-primary: #1d4ed8;
  --drish-accent-soft: #eff6ff;
  --drish-accent-warm: #ea580c;
  --drish-dark-text: #0f172a;
  --drish-muted-text: #475569;
  --drish-border-color: #cbd5e1;
  --drish-font-display: 'Montserrat', sans-serif;
  --drish-font-body: 'Poppins', sans-serif;
  --drish-radius: 16px;
  --drish-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --drish-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --drish-padding-scale: 10dvh;
}

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

body {
  font-family: var(--drish-font-body);
  background-color: var(--drish-bg-light);
  color: var(--drish-dark-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--drish-font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--drish-dark-text);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Header & Navigation */
.drish-main-header {
  background-color: var(--drish-surface);
  border-bottom: 1px solid var(--drish-border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.drish-main-header:focus-within {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.drish-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drish-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--drish-accent-primary);
  font-family: var(--drish-font-display);
}

.drish-brand-logo svg {
  width: 2rem;
  height: 2rem;
  fill: currentColor;
}

.drish-nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.drish-nav-link {
  font-weight: 500;
  color: var(--drish-muted-text);
}

.drish-nav-link:hover,
.drish-nav-link.active {
  color: var(--drish-accent-primary);
}

.drish-nav-btn {
  background-color: var(--drish-accent-primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--drish-radius);
  font-weight: 600;
  box-shadow: var(--drish-shadow);
}

.drish-nav-btn:hover {
  background-color: #1e40af;
  transform: translateY(-2px);
}

/* Hamburger Menu (CSS only) */
.drish-menu-toggle {
  display: none;
}

.drish-hamburger-label {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.drish-hamburger-label span {
  width: 25px;
  height: 3px;
  background-color: var(--drish-dark-text);
  border-radius: 3px;
  transition: 0.3s;
}

/* Announcement Strip */
.drish-announcement-strip {
  background-color: var(--drish-accent-warm);
  color: #fff;
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.drish-announcement-strip a {
  text-decoration: underline;
  margin-left: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* Hero Section (Split Screen) */
.drish-hero-split {
  display: flex;
  min-height: calc(85vh - 70px);
  background-color: var(--drish-accent-soft);
  overflow: hidden;
}

.drish-hero-text-side {
  flex: 1 1 55%;
  padding: var(--drish-padding-scale) 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.drish-hero-tag {
  color: var(--drish-accent-warm);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.drish-hero-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--drish-dark-text);
}

.drish-hero-subtext {
  font-size: 1.15rem;
  color: var(--drish-muted-text);
  max-width: 600px;
}

.drish-hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.drish-hero-img-side {
  flex: 1 1 45%;
  position: relative;
}

.drish-hero-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Common Section Layout */
.drish-section-wrapper {
  padding: var(--drish-padding-scale) 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Content Columns (Journal Style) */
.drish-journal-banner {
  width: 100%;
  height: 45vh;
  object-fit: cover;
}

.drish-journal-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: -3rem;
  background: var(--drish-surface);
  padding: 3rem;
  border-radius: var(--drish-radius);
  box-shadow: var(--drish-shadow);
  position: relative;
  z-index: 10;
}

.drish-journal-col {
  border-top: 3px solid var(--drish-accent-primary);
  padding-top: 1.5rem;
}

.drish-journal-col h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: var(--drish-accent-primary);
}

/* Features Section (Masonry) */
.drish-features-masonry {
  columns: 3 300px;
  column-gap: 1.5rem;
  margin-top: 3rem;
}

.drish-feat-card {
  break-inside: avoid;
  background-color: var(--drish-surface);
  border-radius: var(--drish-radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--drish-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.drish-feat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--drish-shadow-hover);
}

.drish-feat-card.has-img {
  padding: 0;
  overflow: hidden;
}

.drish-feat-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.drish-feat-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.drish-feat-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--drish-accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--drish-accent-primary);
}

.drish-feat-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

/* How It Works (Progress Track) */
.drish-progress-track {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}

.drish-progress-step {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.drish-progress-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 2rem;
  left: 60%;
  width: 80%;
  border-top: 2px dashed var(--drish-border-color);
  z-index: 1;
}

.drish-step-num {
  width: 4rem;
  height: 4rem;
  background-color: var(--drish-surface);
  border: 3px solid var(--drish-border-color);
  color: var(--drish-muted-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 2;
  position: relative;
  transition: all 0.3s ease;
}

.drish-progress-step.active .drish-step-num {
  background-color: var(--drish-accent-primary);
  border-color: var(--drish-accent-primary);
  color: #fff;
  box-shadow: 0 0 15px rgba(29, 78, 216, 0.4);
}

.drish-step-title {
  font-size: 1.2rem;
  color: var(--drish-dark-text);
  font-weight: 600;
}

.drish-step-desc {
  font-size: 0.95rem;
  color: var(--drish-muted-text);
  max-width: 250px;
}

/* CTA Strip */
.drish-cta-strip {
  background-color: var(--drish-accent-primary);
  color: #fff;
  padding: var(--drish-padding-scale) 2rem;
  text-align: center;
}

.drish-cta-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.drish-cta-content h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.drish-btn {
  display: inline-block;
  padding: 1rem 2.25rem;
  font-weight: 600;
  border-radius: var(--drish-radius);
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.drish-btn-primary {
  background-color: var(--drish-accent-primary);
  color: #fff;
}

.drish-btn-primary:hover {
  background-color: #1e40af;
  transform: translateY(-2px);
}

.drish-btn-accent {
  background-color: var(--drish-accent-warm);
  color: #fff;
}

.drish-btn-accent:hover {
  background-color: #ea580c;
  transform: translateY(-2px);
}

.drish-btn-light {
  background-color: var(--drish-surface);
  color: var(--drish-accent-primary);
}

.drish-btn-light:hover {
  background-color: var(--drish-accent-soft);
  transform: translateY(-2px);
}

/* Expert Page Layout */
.drish-expert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.drish-expert-img {
  width: 100%;
  border-radius: var(--drish-radius);
  box-shadow: var(--drish-shadow);
  object-fit: cover;
  height: 550px;
}

.drish-expert-bio {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.drish-stats-horizontal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 4rem 0;
}

.drish-stat-box {
  background-color: var(--drish-surface);
  border-radius: var(--drish-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--drish-shadow);
  border-top: 3px solid var(--drish-accent-warm);
}

.drish-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--drish-accent-warm);
  font-family: var(--drish-font-display);
}

.drish-stat-label {
  font-size: 0.9rem;
  color: var(--drish-muted-text);
  font-weight: 600;
}

/* Accordion Component */
.drish-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
}

.drish-accordion-item {
  background-color: var(--drish-surface);
  border-radius: var(--drish-radius);
  padding: 1.5rem 2rem;
  box-shadow: var(--drish-shadow);
}

.drish-accordion-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--drish-dark-text);
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--drish-border-color);
  padding-bottom: 0.5rem;
}

.drish-accordion-body {
  color: var(--drish-muted-text);
}

/* Reserve Page Split */
.drish-reserve-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.drish-reserve-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.drish-info-card {
  background-color: var(--drish-surface);
  border-radius: var(--drish-radius);
  padding: 2rem;
  box-shadow: var(--drish-shadow);
  border-left: 4px solid var(--drish-accent-primary);
}

.drish-info-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.drish-info-card-header h3 {
  font-size: 1.25rem;
}

.drish-info-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.drish-info-bullets li {
  position: relative;
  padding-left: 1.75rem;
}

.drish-info-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--drish-accent-warm);
  font-weight: 700;
}

/* Contact Form */
.drish-form-container {
  background-color: var(--drish-surface);
  border-radius: var(--drish-radius);
  padding: 3rem;
  box-shadow: var(--drish-shadow);
}

.drish-form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.drish-form-group label {
  font-weight: 500;
  color: var(--drish-dark-text);
  font-size: 0.95rem;
}

.drish-form-input,
.drish-form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--drish-border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.drish-form-input:focus,
.drish-form-textarea:focus {
  outline: none;
  border-color: var(--drish-accent-primary);
}

.drish-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.drish-checkbox-group input {
  margin-top: 0.25rem;
}

.drish-checkbox-group label {
  font-size: 0.85rem;
  color: var(--drish-muted-text);
}

/* FAQ Bottom Section */
.drish-faq-section {
  margin-top: 5rem;
}

/* Policy Content */
.drish-text-content {
  background-color: var(--drish-surface);
  border-radius: var(--drish-radius);
  padding: 3rem;
  box-shadow: var(--drish-shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.drish-text-content h1 {
  margin-bottom: 1rem;
}

.drish-text-content h2 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
}

/* Footer style */
.drish-main-footer {
  background-color: var(--drish-dark-text);
  color: #fff;
  padding: 4rem 2rem 2rem 2rem;
}

.drish-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
}

.drish-footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.drish-footer-col h4 {
  color: #fff;
}

.drish-footer-logo {
  color: #fff;
  font-size: 1.5rem;
}

.drish-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.drish-footer-links a:hover {
  color: var(--drish-accent-primary);
}

.drish-footer-disclaimer {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.6;
}

.drish-footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #94a3b8;
}

/* Cookie Banner */
.drish-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--drish-dark-text);
  color: #fff;
  padding: 1.5rem 2rem;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.15);
  animation: slide-up-cookie 0.5s ease;
}

.drish-cookie-banner.hidden {
  display: none;
}

.drish-cookie-text {
  font-size: 0.95rem;
}

.drish-cookie-buttons {
  display: flex;
  gap: 1rem;
}

/* Responsive Grid / Flex adjustments */
@media (max-width: 992px) {
  .drish-hamburger-label {
    display: flex;
  }

  .drish-nav-list {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--drish-surface);
    flex-direction: column;
    padding: 3rem 2rem;
    transition: 0.4s ease;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    z-index: 999;
  }

  .drish-menu-toggle:checked ~ .drish-nav-list {
    left: 0;
  }

  .drish-menu-toggle:checked ~ .drish-hamburger-label span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .drish-menu-toggle:checked ~ .drish-hamburger-label span:nth-child(2) {
    opacity: 0;
  }

  .drish-menu-toggle:checked ~ .drish-hamburger-label span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .drish-hero-split {
    flex-direction: column;
  }

  .drish-hero-text-side {
    padding: 4rem 2rem;
  }

  .drish-hero-img-side {
    height: 350px;
  }

  .drish-journal-columns {
    grid-template-columns: 1fr;
    margin-top: 2rem;
    padding: 2rem;
  }

  .drish-progress-track {
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
  }

  .drish-progress-step {
    flex-direction: row;
    text-align: left;
    width: 100%;
  }

  .drish-progress-step:not(:last-child)::after {
    top: 4rem;
    left: 2rem;
    width: 2px;
    height: 100%;
  }

  .drish-expert-grid {
    grid-template-columns: 1fr;
  }

  .drish-stats-horizontal {
    grid-template-columns: repeat(2, 1fr);
  }

  .drish-reserve-split {
    grid-template-columns: 1fr;
  }

  .drish-footer-grid {
    grid-template-columns: 1fr;
  }

  .drish-cookie-banner {
    flex-direction: column;
    text-align: center;
  }
}

/* Animations Scroll Reveal (Pure CSS) */
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-section {
  animation: slide-up 0.8s ease forwards;
}

@keyframes slide-up-cookie {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}