  :root {
      --primary: #0f0663;
      --secondary: #034a66;
      --accent: #ffb800;
      --dark: #0C1763;
      --light: #ffffff;
      --cream: #fff8f0;
      --sage: #8fbc8f;
      --navy: #16213e;
      --peach: #ffd4b8;
    }

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

    body {
      font-family: "Outfit", sans-serif;
    
      color: var(--dark);
      overflow-x: hidden;
      min-height: 200vh; /* just to show scroll effect */
    }

    /* ───────────────────────────────────────────────
       TOP NAV (shared base)
    ─────────────────────────────────────────────── */
    .top-nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      padding: 0 50px;
      height: 70px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      box-shadow: 0 4px 30px rgba(0,0,0,0.12);
      transition: all 0.3s;
    }

    .top-nav.scrolled {
      box-shadow: 0 4px 30px rgba(0,0,0,0.22);
    }

    .logo {
      font-family: "Crimson Pro", serif;
      font-size: 30px;
      font-weight: 800;
      color: var(--light);
      letter-spacing: -1.5px;
      flex-shrink: 0;
    }

    /* ───────────────────────────────────────────────
       DESKTOP NAV LINKS (hidden on mobile)
    ─────────────────────────────────────────────── */
    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .desktop-nav a {
      font-family: "Outfit", sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: rgba(255,255,255,0.82);
      text-decoration: none;
      padding: 8px 14px;
      border-radius: 30px;
      position: relative;
      transition: color 0.25s, background 0.25s;
      letter-spacing: 0.3px;
    }

    .desktop-nav a::after {
      content: "";
      position: absolute;
      bottom: 4px; left: 50%; right: 50%;
      height: 2px;
      background: var(--accent);
      border-radius: 2px;
      transition: left 0.3s, right 0.3s;
    }

    .desktop-nav a:hover {
      color: var(--light);
      background: rgba(255,255,255,0.08);
    }

    .desktop-nav a:hover::after {
      left: 14px; right: 14px;
    }

    /* ───────────────────────────────────────────────
       DESKTOP RIGHT ACTIONS (hidden on mobile)
    ─────────────────────────────────────────────── */
    .desktop-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }

    .btn-outline-custom {
      padding: 9px 22px;
      border: 2px solid rgba(255,255,255,0.7);
      background: transparent;
      color: var(--light);
      border-radius: 50px;
      font-weight: 600;
      font-size: 13px;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
      display: inline-block;
      letter-spacing: 0.2px;
    }

    .btn-outline-custom:hover {
      background: var(--light);
      border-color: var(--light);
      color: var(--primary);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255,255,255,0.2);
    }

    .btn-filled-custom {
      padding: 9px 22px;
      border: 2px solid var(--accent);
      background: var(--accent);
      color: var(--navy);
      border-radius: 50px;
      font-weight: 700;
      font-size: 13px;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
      display: inline-block;
      letter-spacing: 0.2px;
    }

    .btn-filled-custom:hover {
      background: transparent;
      color: var(--accent);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255,184,0,0.3);
    }

    /* ───────────────────────────────────────────────
       MOBILE NAV ACTIONS (hidden on desktop)
    ─────────────────────────────────────────────── */
    .mobile-actions {
      display: none;
      align-items: center;
      gap: 14px;
    }

    /* Register Now – visible on mobile too */
    .mobile-actions .btn-outline-custom {
      font-size: 13px;
      padding: 8px 18px;
    }

    /* Hamburger */
    .menu-toggle {
      width: 46px;
      height: 46px;
      background: rgba(255,255,255,0.12);
      border: 1.5px solid rgba(255,255,255,0.25);
      border-radius: 12px;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .menu-toggle:hover {
      background: rgba(255,255,255,0.22);
      transform: scale(1.05);
    }

    .menu-line {
      width: 20px;
      height: 2px;
      background: white;
      border-radius: 2px;
      transition: all 0.35s cubic-bezier(0.68,-0.55,0.265,1.55);
    }

    /* Animated X on open */
    .menu-toggle.open .menu-line:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .menu-toggle.open .menu-line:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }
    .menu-toggle.open .menu-line:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* ───────────────────────────────────────────────
       OFFCANVAS OVERLAY
    ─────────────────────────────────────────────── */
    .offcanvas-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(15, 6, 99, 0.55);
      z-index: 9998;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.5s;
      backdrop-filter: blur(6px);
    }

    .offcanvas-overlay.active {
      opacity: 1;
      pointer-events: all;
    }

    /* ───────────────────────────────────────────────
       OFFCANVAS PANEL
    ─────────────────────────────────────────────── */
    .offcanvas-custom {
      position: fixed;
      top: 0;
      right: -110%;
      width: min(400px, 92vw);
      height: 100vh;
          background: #d7d7f9a6;
      z-index: 9999;
      transition: right 0.55s cubic-bezier(0.68,-0.55,0.265,1.55);
      padding: 80px 44px 50px;
      overflow-y: auto;
      box-shadow: -20px 0 60px rgba(15,6,99,0.18);
      display: flex;
      flex-direction: column;
    }

    .offcanvas-custom.active {
      right: 0;
    }

    /* Decorative top stripe */
    .offcanvas-custom::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
    }

    .offcanvas-close {
      position: absolute;
      top: 22px; right: 22px;
      width: 42px; height: 42px;
      background: var(--navy);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 17px;
      transition: all 0.3s;
    }

    .offcanvas-close:hover {
      background: var(--primary);
      transform: rotate(90deg) scale(1.1);
    }

    .offcanvas-header {
    
      opacity: 0;
      transform: translateX(40px);
      transition: all 0.5s 0.1s;
    }

    .offcanvas-custom.active .offcanvas-header {
      opacity: 1;
      transform: translateX(0);
    }

    .offcanvas-logo {
      font-family: "Crimson Pro", serif;
      font-size: 34px;
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -1px;
      line-height: 1;
      margin-bottom: 6px;
    }

    .offcanvas-tagline {
      font-size: 12px;
      font-weight: 600;
      color: var(--secondary);
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    /* Divider */
    .offcanvas-divider {
      height: 1px;
      background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
      margin-bottom: 28px;
      opacity: 0;
      transition: opacity 0.4s 0.25s;
    }

    .offcanvas-custom.active .offcanvas-divider {
      opacity: 0.2;
    }

    .offcanvas-menu {
      list-style: none;
      margin-bottom: 36px;
      flex: 1;
    }

    .offcanvas-menu li {
      margin-bottom: 2px;
      opacity: 0;
      transform: translateX(40px);
      transition: all 0.45s;
    }

    .offcanvas-custom.active .offcanvas-menu li { opacity: 1; transform: translateX(0); }
    .offcanvas-custom.active .offcanvas-menu li:nth-child(1) { transition-delay: 0.15s; }
    .offcanvas-custom.active .offcanvas-menu li:nth-child(2) { transition-delay: 0.22s; }
    .offcanvas-custom.active .offcanvas-menu li:nth-child(3) { transition-delay: 0.29s; }
    .offcanvas-custom.active .offcanvas-menu li:nth-child(4) { transition-delay: 0.36s; }
    .offcanvas-custom.active .offcanvas-menu li:nth-child(5) { transition-delay: 0.43s; }
    .offcanvas-custom.active .offcanvas-menu li:nth-child(6) { transition-delay: 0.50s; }

    .offcanvas-menu a {
      font-family: "Crimson Pro", serif;
      font-size: 34px;
      font-weight: 600;
      color: var(--navy);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 0;
      position: relative;
      transition: all 0.3s;
    }

    .offcanvas-menu a .link-num {
      font-family: "Outfit", sans-serif;
      font-size: 11px;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: 1px;
      margin-top: 4px;
      min-width: 22px;
    }

    .offcanvas-menu a::after {
      content: "";
      position: absolute;
      bottom: 4px; left: 0;
      width: 0; height: 2px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      transition: width 0.3s;
    }

    .offcanvas-menu a:hover::after { width: 100%; }
    .offcanvas-menu a:hover { color: var(--primary); padding-left: 6px; }

    /* CTA block */
    .offcanvas-cta {
      padding-top: 28px;
      border-top: 1px solid rgba(0,0,0,0.08);
      display: flex;
      flex-direction: column;
      gap: 10px;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.5s 0.55s;
    }

    .offcanvas-custom.active .offcanvas-cta {
      opacity: 1;
      transform: translateY(0);
    }

    .offcanvas-btn {
      display: block;
      width: 100%;
      padding: 15px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border: none;
      border-radius: 50px;
      color: white;
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s;
      letter-spacing: 0.3px;
    }

    .offcanvas-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(15,6,99,0.3);
    }

    .offcanvas-btn-outline {
      background: transparent;
      border: 2px solid var(--navy);
      color: var(--navy);
    }

    .offcanvas-btn-outline:hover {
      background: var(--navy);
      color: white;
      box-shadow: 0 12px 30px rgba(26,26,46,0.2);
    }

    /* ───────────────────────────────────────────────
       RESPONSIVE BREAKPOINTS
    ─────────────────────────────────────────────── */

    /* Desktop: show desktop nav + actions, hide mobile */
    @media (min-width: 1025px) {
      .mobile-actions { display: none !important; }
      .desktop-nav { display: flex; }
      .desktop-actions { display: flex; }
    }

    /* Tablet: hide desktop links, show mobile hamburger */
    @media (max-width: 1024px) {
      .desktop-nav { display: none !important; }
      .desktop-actions { display: none !important; }
      .mobile-actions { display: flex !important; }

      .top-nav { padding: 0 20px; }
    }

    /* Small mobile tweaks */
    @media (max-width: 480px) {
      .logo { font-size: 24px; }
      .mobile-actions .btn-outline-custom { display: none; } /* hide register btn on very small, keep hamburger */
    }

    /* Demo page spacer */
    .demo-content {
      padding-top: 100px;
      text-align: center;
      color: var(--navy);
      font-family: "Crimson Pro", serif;
      font-size: 24px;
      padding-bottom: 60px;
      opacity: 0.35;
    }
/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: white;
  padding: 10px 25px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  /* font-family: "Courier Prime", monospace; */
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 30px;
  animation: slideInFromLeft 0.8s ease-out;
  box-shadow: 0 4px 20px rgba(45, 91, 255, 0.1);
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}

.hero-title {
  font-family: "Crimson Pro", serif;
  font-size: clamp(70px, 11vw, 140px);
  font-weight: 800;
  line-height: 0.9;
  margin-bottom: 25px;
  color: var(--navy);
  animation: slideInFromLeft 0.8s ease-out 0.2s both;
}

.hero-title .gradient-text {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--secondary) 50%,
    var(--accent) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 32px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
  animation: slideInFromLeft 0.8s ease-out 0.4s both;
}

.hero-description {
  font-size: 20px;
  color: #666;
  margin-bottom: 40px;
  max-width: 550px;
  line-height: 1.6;
  animation: slideInFromLeft 0.8s ease-out 0.6s both;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 50px;
  animation: slideInFromLeft 0.8s ease-out 0.8s both;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--navy);
  font-weight: 500;
}

.meta-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

/* Countdown - Card Style */
.countdown-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 600px;
  margin: 50px 0;
  animation: fadeInUp 0.8s ease-out 1s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.countdown-card {
  background: white;
  border: 2px solid #e8e8e8;
  border-radius: 20px;
  padding: 25px 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.countdown-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.countdown-card:hover::before {
  transform: scaleX(1);
}

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

.countdown-value {
  font-family: "Courier Prime", monospace;
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 8px;
}

.countdown-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #999;
  font-weight: 700;
}

/* Hero Visual - Collage */
.hero-visual {
  position: relative;
  height: 650px;
  animation: fadeInUp 0.8s ease-out 1.2s both;
}

.visual-card {
  position: absolute;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  background: white;
  border: 3px solid white;
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.visual-card:hover img {
  transform: scale(1.1);
}

.visual-card:hover {
  transform: translateY(-15px) rotate(0deg) !important;
  z-index: 10;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.card-1 {
  width: 320px;
  height: 400px;
  top: 0;
  right: 15%;
  transform: rotate(3deg);
  z-index: 3;
}

.card-2 {
  width: 280px;
  height: 320px;
  bottom: 80px;
  right: 0;
  transform: rotate(-4deg);
  z-index: 2;
}

.card-3 {
  width: 240px;
  height: 280px;
  top: 45%;
  left: 5%;
  transform: rotate(2deg);
  z-index: 4;
}

.card-4 {
  width: 200px;
  height: 240px;
  bottom: 0;
  left: 30%;
  transform: rotate(-3deg);
  z-index: 1;
}

.card-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Content Section */
.content-section {
  padding: 30px 0;
  position: relative;
}

.section-eyebrow {
  font-family: "Courier Prime", monospace;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-eyebrow::before {
  content: "";
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.section-title {
  font-family: "Crimson Pro", serif;
  font-size: clamp(45px, 7vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 10px;
  color: var(--navy);
}

.section-intro {
  font-size: 20px;
  line-height: 1.8;
  color: #555;
 
  margin-bottom: 30px;
}

/* Feature Grid - Masonry */
.feature-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.feature-box {
  background: white;
  border: 2px solid #e8e8e8;
  border-radius: 30px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.feature-box::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: linear-gradient(
    135deg,
    rgb(45 91 255 / 20%),
    rgba(255, 107, 157, 0.05)
  );
  border-radius: 50%;
  transform: translate(50%, -50%);
  transition: all 0.4s;
}

.feature-box:hover::after {
  width: 300px;
  height: 300px;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.feature-num {
  font-family: "Courier Prime", monospace;
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.feature-icon-wrap {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.feature-heading {
  font-family: "Crimson Pro", serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--navy);
  position: relative;
  z-index: 2;
}

.feature-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  position: relative;
  z-index: 2;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 80px;
}

.team-member {
  background: white;
  border: 2px solid #e8e8e8;
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s;
  position: relative;
}

.team-member::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.4s;
}

.team-member:hover::before {
  transform: scaleX(1);
}

.team-member:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

.team-photo {
  width: 100%;
  height: 380px;
  object-fit: cover;
  background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
  transition: transform 0.4s;
}

.team-member:hover .team-photo {
  transform: scale(1.05);
}

.team-details {
  padding: 30px;
}

.team-name {
  font-family: "Crimson Pro", serif;
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.team-position {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
}

/* CTA Banner */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 35px,
    rgba(255, 255, 255, 0.05) 35px,
    rgba(255, 255, 255, 0.05) 70px
  );
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.cta-heading {
  font-family: "Crimson Pro", serif;
  font-size: clamp(42px, 6vw, 20px);
  font-weight: 800;
  margin-bottom: 25px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-subheading {
  font-size: 22px;
  margin-bottom: 50px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-light-custom {
  padding: 18px 45px;
  background: white;
  color: var(--navy);
  border: none;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-light-custom:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-ghost-custom {
  padding: 18px 45px;
  background: transparent;
  color: white;
  border: 3px solid white;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-ghost-custom:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05) translateY(-3px);
}

/* Footer */
.footer {
  background: var(--navy);
  color: white;
  padding: 50px 0 0px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 3fr 3fr 3fr;
  gap: 30px;
  /* justify-content: center; */
}

.footer-brand-section h3 {
  font-family: "Crimson Pro", serif;
  font-size: 38px;
  font-weight: 800;
  
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
 
}

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

.social-btn {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

.social-btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-5px);
}

.footer-heading {
  font-family: "Crimson Pro", serif;
  font-size: 24px;
  font-weight: 700;
}
.footer-heading-h4 {
  font-family: "Crimson Pro", serif;
  font-size: 18px;
  font-weight: 700;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 12px;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.footer-list a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 50px 0 40px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}
@media (max-width: 992px) {
  .feature-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .feature-masonry {
    grid-template-columns: 1fr;
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-nav {
    padding: 20px 25px;
  }

  .offcanvas-custom {
    width: 100%;
    padding: 60px 35px;
  }

  .offcanvas-menu a {
    font-size: 32px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 55px;
  }

  .countdown-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual {
    height: auto;
    margin-top: 50px;
  }

  .visual-card {
    position: relative !important;
    width: 100% !important;
    height: 300px !important;
    margin-bottom: 20px;
    transform: none !important;
  }

  .card-1,
  .card-2,
  .card-3,
  .card-4 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }

  .feature-masonry {
    grid-template-columns: 1fr;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .nav-actions {
    display: none;
  }
}
