:root {
  /* ================================
     PRIMARY BRAND COLORS
     ================================ */

  --primary-gold: #6A0F1D;        /* Deep Burgundy - Primary */
  --primary-gold-hover: #E86A17;  /* Burnt Orange - Primary Hover */

  --accent-orange: #E86A17;       /* Burnt Orange - CTA / Highlights */

  /* ================================
     DARK / NAVIGATION COLORS
     ================================ */

  --dark-navy: #4B0814;           /* Deep Burgundy - Footer/Header */
  --navy-card: #8C1D24;           /* Rich Maroon - Cards / Accents */

  /* ================================
     TYPOGRAPHY
     ================================ */

  --text-dark: #4D0E1A;           /* Heading */
  --text-muted: #6E6A67;          /* Warm Gray - Paragraphs */

  /* ================================
     BACKGROUNDS
     ================================ */

  --bg-light: #FAF7F2;            /* Light Cream - Main Background */

  --footer-bg: #4B0814;           /* Deep Burgundy - Footer */

  /* ================================
     SECONDARY BRAND COLORS
     ================================ */

  --rich-maroon: #8C1D24;
  --warm-orange: #F28C28;
  --sun-gold: #F4B942;
  --champagne-gold: #E8C26A;

  /* ================================
     CONTENT / CARD COLORS
     ================================ */

  --ivory-white: #FFFDF9;
  --warm-gray: #6E6A67;
  --light-gray: #E9E3DB;

  /* ================================
     MINIMAL BLUE
     ================================ */

  --deep-navy: #153B73;

  /* ================================
     STATUS COLORS
     ================================ */

  --success: #3A8F5E;
  --error: #C0392B;

  /* ================================
     TYPOGRAPHY COLORS
     ================================ */

  --heading-color: #4D0E1A;
  --body-color: #555555;
  --small-text-color: #888888;

  /* ================================
     BUTTON COLORS
     ================================ */

  --primary-button-bg: #6A0F1D;
  --primary-button-text: #FFFFFF;
  --primary-button-hover: #E86A17;

  --secondary-button-border: #E86A17;
  --secondary-button-text: #6A0F1D;
  --secondary-button-hover-bg: #FFF5EA;

  /* ================================
     GRADIENTS
     ================================ */

  --hero-gradient: linear-gradient(
    135deg,
    #6A0F1D 0%,
    #B63A1D 50%,
    #F28C28 100%
  );

  --cta-gradient: linear-gradient(
    135deg,
    #8C1D24 0%,
    #E86A17 100%
  );

  --gold-gradient: linear-gradient(
    135deg,
    #D89A2B 0%,
    #F4C64A 100%
  );
}

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: var(--text-dark);
      background-color: #ffffff;
      overflow-x: hidden;
    }

    /* Custom Buttons with Gradients & Color Effects */
    .btn-gold {
      background: linear-gradient(135deg, #8C1D24 0%, #6A0F1D 100%);
      color: #fff;
      font-weight: 600;
      border-radius: 8px;
      padding: 12px 24px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 15px rgba(122, 10, 10, 0.25);
    }
    .btn-gold:hover {
      background: linear-gradient(135deg, #A01010 0%, #7A0000 100%);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(122, 10, 10, 0.4);
    }

    .btn-outline-gold {
      border: 1px solid var(--accent-orange);
      color: var(--accent-orange);
      font-weight: 600;
      border-radius: 8px;
      padding: 12px 24px;
      background: #fff;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 2px 10px rgba(240, 80, 35, 0.08);
    }
    .btn-outline-gold:hover {
      background: var(--accent-orange);
      color: #fff !important;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(240, 80, 35, 0.3);
    }
    .btn-outline-gold:hover i {
      color: #fff !important;
    }

    /* Vibrant Orange Gradient Button for CTA Banner */
    .btn-orange-gradient {
      background: linear-gradient(135deg, #FFB020 0%, #F05023 100%);
      color: #1A0505;
      font-weight: 700;
      border-radius: 8px;
      padding: 14px 28px;
      border: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 6px 20px rgba(240, 80, 35, 0.35);
    }
    .btn-orange-gradient:hover {
      background: linear-gradient(135deg, #FFC107 0%, #FF5722 100%);
      color: #1A0505;
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(240, 80, 35, 0.5);
    }

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: var(--text-dark);
      background-color: #ffffff;
      overflow-x: hidden;
    }

    /* Custom Buttons */
    .btn-gold {
      background-color: var(--primary-gold);
      color: #fff;
      font-weight: 600;
      border-radius: 8px;
      padding: 12px 24px;
      border: none;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-gold:hover {
      background-color: var(--primary-gold-hover);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(197, 147, 69, 0.25);
    }

    .btn-outline-gold {
      border: 1px solid #E2E8F0;
      color: var(--text-dark);
      font-weight: 600;
      border-radius: 8px;
      padding: 12px 24px;
      background: #fff;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-outline-gold:hover {
      border-color: var(--primary-gold);
      color: var(--primary-gold);
      transform: translateY(-2px);
    }

    /* Header Nav */
    .navbar-brand img {
      height: 42px;
    }
    .nav-link {
      font-weight: 500;
      color: var(--text-dark) !important;
      margin: 0 10px;
      font-size: 0.95rem;
    }
    .nav-link:hover {
      color: var(--primary-gold) !important;
    }

    /* Hero Section */
    .hero-title {
      font-size: 2.8rem;
      font-weight: 800;
      line-height: 1.25;
      color: var(--dark-navy);
    }
    .hero-title span {
      color: var(--primary-gold);
    }
    .hero-subtitle {
      color: var(--text-muted);
      font-size: 1.1rem;
      line-height: 1.6;
    }

    /* Interactive Wheel Design */
    .wheel-container {
      position: relative;
      width: 100%;
      max-width: 480px;
      height: 480px;
      margin: 0 auto;
    }

    .center-logo {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100px;
      height: 100px;
      /* background: var(--dark-navy); */
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      border: 3px solid rgba(197, 147, 69, 0.3);
      box-shadow: 0 0 25px rgba(11, 17, 32, 0.15);
    }
    .center-logo span {
      color: var(--primary-gold);
      font-weight: 800;
      font-size: 1.8rem;
      font-family: serif;
    }

    /* Radial Nodes */
    .node-card {
      position: absolute;
      background: #ffffff;
      border: 1px solid #E2E8F0;
      border-radius: 12px;
      padding: 8px 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.04);
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--dark-navy);
      transition: all 0.3s ease;
      z-index: 5;
    }
    .node-card:hover {
      transform: scale(1.08);
      border-color: var(--primary-gold);
      box-shadow: 0 8px 25px rgba(197, 147, 69, 0.2);
    }
    .node-card i {
      color: var(--primary-gold);
      font-size: 1rem;
    }

    /* Positioning Cards around Center Node */
    .node-1 { top: 3%; left: 50%; transform: translateX(-50%); }
    .node-2 { top: 15%; right: 5%; }
    .node-3 { top: 38%; right: -2%; }
    .node-4 { bottom: 20%; right: 2%; }
    .node-5 { bottom: 3%; left: 50%; transform: translateX(-50%); }
    .node-6 { bottom: 20%; left: 2%; }
    .node-7 { top: 38%; left: -2%; }
    .node-8 { top: 15%; left: 5%; }

    .svg-connecting-lines {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      pointer-events: none;
    }

    /* SECTION 2: CATEGORY STRIP */
    .category-badge-strip {
      background-color: #FAFBFD;
      border-top: 1px solid #E2E8F0;
      border-bottom: 1px solid #E2E8F0;
      padding: 24px 0;
    }
    .strip-label {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      color: var(--primary-gold);
      text-transform: uppercase;
    }
    .category-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--dark-navy);
      padding: 6px 14px;
      border-radius: 8px;
      transition: transform 0.25s ease, color 0.25s ease;
    }
    .category-badge i {
      font-size: 1.25rem;
      color: #334155;
      transition: color 0.25s ease;
    }
    .category-badge:hover {
      transform: translateY(-2px);
      color: var(--primary-gold);
    }
    .category-badge:hover i {
      color: var(--primary-gold);
    }

    /* SECTION 3: DOES THIS SOUND FAMILIAR? */
    /* .section-heading-sm {
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: 1px;
      color: var(--dark-navy);
    }

    .problem-card {
      background: #ffffff;
      border: 1px solid #E2E8F0;
      border-radius: 12px;
      padding: 32px 24px;
      text-align: center;
      height: 100%;
      transition: all 0.3s ease;
      position: relative;
    }

    .problem-card:hover {
      transform: translateY(-5px);
      border-color: #CBD5E1;
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    }

    .icon-badge-gold {
      width: 36px;
      height: 36px;
      background-color: var(--primary-gold);
      color: #ffffff;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.9rem;
      margin-bottom: 20px;
    }

    .problem-card p {
      font-size: 1rem;
      font-weight: 600;
      color: var(--dark-navy);
      line-height: 1.5;
      margin: 0;
    } */

        .section-heading-sm {
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: 1px;
      color: var(--dark-navy);
    }

    .problem-card {
      background: #ffffff;
      border: 1px solid #E2E8F0;
      border-radius: 12px;
      padding: 32px 24px;
      text-align: center;
      height: 100%;
      transition: all 0.3s ease;
      position: relative;
    }

    .problem-card:hover {
      transform: translateY(-5px);
      border-color: #CBD5E1;
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    }

    .icon-badge-gold {
      width: 36px;
      height: 36px;
      background-color: var(--primary-gold);
      color: #ffffff;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.9rem;
      margin-bottom: 20px;
    }

    .problem-card p {
      font-size: 1rem;
      font-weight: 600;
      color: var(--dark-navy);
      line-height: 1.5;
      margin: 0;
    }

    /* SECTION 4 & 5 */
    .sub-label-gold {
      color: var(--primary-gold);
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 8px;
      display: block;
    }

    .section-title-lg {
      color: var(--dark-navy);
      font-weight: 800;
      font-size: 2.2rem;
      line-height: 1.3;
    }

    .feature-item {
      transition: transform 0.25s ease;
    }
    .feature-item:hover {
      transform: translateX(4px);
    }

    .feature-icon-wrapper {
      width: 44px;
      height: 44px;
      min-width: 44px;
      border-radius: 10px;
      background-color: #FFFDF9;
      border: 1px solid #F3E8D6;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-gold);
      font-size: 1.2rem;
    }

    .feature-title {
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--dark-navy);
      margin-bottom: 4px;
    }

    .feature-desc {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.5;
      margin: 0;
    }

    .bg-light-section {
      background-color: #FAFBFD;
      border-top: 1px solid #F1F5F9;
      border-bottom: 1px solid #F1F5F9;
    }

    .industry-card {
      background: #ffffff;
      border: 1px solid #E2E8F0;
      border-radius: 12px;
      padding: 24px 16px;
      text-align: center;
      height: 100%;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }

    .industry-card:hover {
      border-color: var(--primary-gold);
      transform: translateY(-4px);
      box-shadow: 0 10px 25px rgba(197, 147, 69, 0.12);
    }

    .industry-icon {
      font-size: 1.6rem;
      color: var(--primary-gold);
      transition: transform 0.3s ease;
    }

    .industry-card:hover .industry-icon {
      transform: scale(1.15);
    }

    .industry-name {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--dark-navy);
      margin: 0;
    }

    /* SECTION 6 & 7 */
    .work-step-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .work-step-icon {
      width: 60px;
      height: 60px;
      background-color: var(--dark-navy);
      color: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      margin-bottom: 12px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(11, 17, 32, 0.15);
    }

    .work-step-item:hover .work-step-icon {
      background-color: var(--primary-gold);
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(197, 147, 69, 0.3);
    }

    .work-step-title {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--dark-navy);
      margin: 0;
      max-width: 100px;
      line-height: 1.3;
    }

    .work-arrow-separator {
      color: #CBD5E1;
      font-size: 1rem;
    }

    .bg-dark-navy {
      background-color: var(--dark-navy);
      color: #ffffff;
    }

    .value-card {
      padding: 20px 15px;
      text-align: center;
      border-right: 1px solid rgba(255, 255, 255, 0.08);
      height: 100%;
      transition: transform 0.3s ease;
    }

    .value-card:hover {
      transform: translateY(-4px);
    }

    .value-card-last {
      border-right: none;
    }

    .value-card-icon {
      font-size: 1.8rem;
      color: var(--primary-gold);
      margin-bottom: 16px;
      display: inline-block;
    }

    .value-card-title {
      color: #ffffff;
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .value-card-desc {
      color: #94A3B8;
      font-size: 0.8rem;
      line-height: 1.5;
      margin: 0;
    }

    /* SECTION 8 & 9 */
    .process-step {
      text-align: center;
      position: relative;
    }

    .process-number {
      width: 42px;
      height: 42px;
      background-color: var(--dark-navy);
      color: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.9rem;
      margin: 0 auto 16px auto;
      position: relative;
      z-index: 2;
      box-shadow: 0 4px 10px rgba(11, 17, 32, 0.15);
      transition: all 0.3s ease;
    }

    .process-step:hover .process-number {
      background-color: var(--primary-gold);
      transform: scale(1.1);
    }

    .process-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--dark-navy);
      margin-bottom: 6px;
    }

    .process-desc {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.4;
      margin: 0;
    }

    .process-line-wrapper {
      position: relative;
    }

    .process-line-wrapper::before {
      content: '';
      position: absolute;
      top: 21px;
      left: 8%;
      right: 8%;
      height: 2px;
      border-top: 2px dashed #CBD5E1;
      z-index: 1;
    }

    .ecosystem-wheel {
      position: relative;
      width: 320px;
      height: 320px;
      margin: 0 auto;
    }

    .ecosystem-center {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 110px;
      height: 110px;
      background-color: var(--dark-navy);
      color: #ffffff;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-weight: 700;
      font-size: 0.85rem;
      line-height: 1.2;
      padding: 10px;
      z-index: 3;
      box-shadow: 0 0 20px rgba(11, 17, 32, 0.15);
    }

    .eco-tag {
      position: absolute;
      background: #ffffff;
      border: 1px solid #E2E8F0;
      border-radius: 6px;
      padding: 4px 10px;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--dark-navy);
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      z-index: 3;
      transition: all 0.3s ease;
    }

    .eco-tag:hover {
      border-color: var(--primary-gold);
      color: var(--primary-gold);
      transform: scale(1.05);
    }

    .eco-1 { top: 0; left: 50%; transform: translateX(-50%); }
    .eco-2 { top: 18%; right: 0; }
    .eco-3 { bottom: 35%; right: -10px; }
    .eco-4 { bottom: 5%; right: 10%; }
    .eco-5 { bottom: 0; left: 50%; transform: translateX(-50%); }
    .eco-6 { bottom: 15%; left: 0; }
    .eco-7 { top: 35%; left: -10px; }
    .eco-8 { top: 15%; left: 5%; }

    .checklist-item {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--dark-navy);
    }

    .checklist-icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: 1.5px solid var(--primary-gold);
      color: var(--primary-gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      flex-shrink: 0;
    }

    /* SECTION 10: TESTIMONIALS */
    .testimonial-card {
      background: #ffffff;
      border: 1px solid #E2E8F0;
      border-radius: 12px;
      padding: 32px 28px;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: all 0.3s ease;
    }
    .testimonial-card:hover {
      border-color: var(--primary-gold);
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    }
    .stars {
      color: #F59E0B;
      font-size: 0.85rem;
      margin-bottom: 16px;
      letter-spacing: 2px;
    }
    .testimonial-text {
      font-size: 0.95rem;
      color: var(--text-dark);
      line-height: 1.6;
      font-weight: 500;
      margin-bottom: 24px;
    }
    .testimonial-author {
      font-size: 0.85rem;
      color: var(--text-muted);
      font-weight: 600;
    }

    /* SECTION 11: INSIGHTS BLOG CARDS */
    .blog-card {
      background: #ffffff;
      border: 1px solid #E2E8F0;
      border-radius: 12px;
      overflow: hidden;
      height: 100%;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }
    .blog-card:hover {
      transform: translateY(-5px);
      border-color: var(--primary-gold);
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    }
    .blog-thumb-wrapper {
      height: 180px;
      overflow: hidden;
      position: relative;
    }
    .blog-thumb {
      height: 100%;
      width: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .blog-card:hover .blog-thumb {
      transform: scale(1.05);
    }
    .blog-content {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      justify-content: space-between;
    }
    .blog-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--dark-navy);
      line-height: 1.4;
      margin-bottom: 12px;
    }
    .blog-meta {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-bottom: 16px;
    }
    .blog-link {
      color: var(--primary-gold);
      font-weight: 700;
      font-size: 0.85rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.2s ease;
    }
    .blog-link:hover {
      color: var(--primary-gold-hover);
      gap: 10px;
    }

    /* SECTION 12: CTA BANNER */
    .cta-banner {
      background: linear-gradient(135deg, #0B1120 0%, #0F172A 100%);
      border-radius: 16px;
      padding: 48px 40px;
      color: #ffffff;
      position: relative;
      overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(197, 147, 69, 0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    /* SECTION 13: FOOTER */
    .footer-section {
      background-color: var(--primary-gold);
      color: #94A3B8;
      font-size: 0.85rem;
      padding-top: 60px;
      padding-bottom: 30px;
      border-top: 1px solid #1E293B;
    }
    .footer-heading {
      color: #ffffff;
      font-size: 0.9rem;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-links li {
      margin-bottom: 10px;
    }
    .footer-links a {
      color: #94A3B8;
      text-decoration: none;
      transition: color 0.2s ease;
    }
    .footer-links a:hover {
      color: var(--primary-gold);
    }
    .footer-social-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      color: #ffffff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      margin-right: 8px;
      transition: all 0.3s ease;
    }
    .footer-social-icon:hover {
      background: var(--primary-gold);
      color: #ffffff;
      transform: translateY(-2px);
    }
    .footer-divider {
      border-color: #1E293B;
      margin: 40px 0 24px 0;
    }

    /* Mobile Responsive Fixes */
    @media (max-width: 991px) {
      .hero-title { font-size: 2rem; }
      .wheel-container {
        height: 380px;
        max-width: 380px;
      }
      .node-card {
        padding: 6px 10px;
        font-size: 0.7rem;
      }
      .value-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }
      .cta-banner {
        padding: 32px 24px;
        text-align: center;
      }
    }

    /* =========================================================
   DISCOVERY CALL MODAL
   ========================================================= */

.discovery-modal {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 20px;
}

.discovery-modal.is-open {
    display: flex;
}


/* Overlay */

.discovery-modal-overlay {
    position: absolute;

    inset: 0;

    background: rgba(30, 0, 0, 0.65);

    backdrop-filter: blur(3px);
}


/* Dialog */

.discovery-modal-dialog {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 520px;

    max-height: 90vh;

    overflow-y: auto;

    padding: 35px;

    background: #ffffff;

    border-radius: 14px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.25);

    animation: discoveryModalIn 0.25s ease;
}


@keyframes discoveryModalIn {

    from {
        opacity: 0;

        transform: translateY(20px) scale(0.98);
    }

    to {
        opacity: 1;

        transform: translateY(0) scale(1);
    }

}


/* Close */

.discovery-modal-close {
    position: absolute;

    top: 15px;

    right: 15px;

    width: 34px;

    height: 34px;

    border: 0;

    border-radius: 50%;

    background: #f8f8f8;

    color: var(--dark-maroon);

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;
}

.discovery-modal-close:hover {
    background: var(--dark-maroon);

    color: #ffffff;
}


/* Header */

.discovery-modal-header {
    margin-bottom: 25px;

    padding-right: 30px;
}

.discovery-modal-eyebrow {
    display: block;

    margin-bottom: 7px;

    color: var(--accent-orange);

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.discovery-modal-header h2 {
    margin: 0 0 10px;

    color: var(--dark-maroon);

    font-size: 1.8rem;

    font-weight: 800;
}

.discovery-modal-header p {
    margin: 0;

    color: var(--text-muted);

    font-size: 0.85rem;

    line-height: 1.6;
}


/* Form */

.discovery-booking-form .form-group {
    margin-bottom: 17px;
}

.discovery-booking-form label {
    display: block;

    margin-bottom: 6px;

    color: var(--dark-maroon);

    font-size: 0.78rem;

    font-weight: 700;
}

.discovery-booking-form .form-control {
    width: 100%;

    min-height: 42px;

    border: 1px solid #e5e7eb;

    border-radius: 7px;

    padding: 9px 12px;

    font-size: 0.82rem;

    box-shadow: none;
}

.discovery-booking-form .form-control:focus {
    border-color: var(--accent-orange);

    box-shadow:
        0 0 0 3px rgba(197, 147, 69, 0.12);
}

.available-date-note {
    display: block;

    margin-top: 5px;

    color: #94a3b8;

    font-size: 0.68rem;
}


/* Submit */

.discovery-submit-btn {
    width: 100%;

    margin-top: 5px;

    border: 0;

    border-radius: 7px;

    padding: 11px 16px;

    background: var(--accent-orange);

    color: #ffffff;

    font-weight: 700;

    cursor: pointer;
}

.discovery-submit-btn:hover {
    background: var(--dark-maroon);

}


/* Messages */

.discovery-booking-message {
    display: none;

    padding: 10px 12px;

    margin-bottom: 15px;

    border-radius: 6px;

    font-size: 0.78rem;
}

.discovery-booking-message.success {
    display: block;

    background: #ecfdf5;

    color: #047857;
}

.discovery-booking-message.error {
    display: block;

    background: #fef2f2;

    color: #b91c1c;
}


/* Mobile */

@media (max-width: 575px) {

    .discovery-modal-dialog {
        padding: 25px 20px;

        max-height: 94vh;
    }

    .discovery-modal-header h2 {
        font-size: 1.5rem;
    }

}


.custom-logo {
    width: 155px;
    height: auto;
    max-height: 55px;
    object-fit: contain;
    display: block;
}

.custom-logo-link {
    display: flex;
    align-items: center;
}

@media (max-width: 576px) {

   .custom-logo {
        width: 130px;
        max-height: 45px;
    }

}
