/* ============================================================
   DineDigit — Complete Styles  |  complete.css
   Includes: Navbar + Hero Section
   ============================================================ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Brand */
  --orange: #ff5f1f;
  --orange-dark: #d44a1a;
  --orange-dim: rgba(240, 90, 40, 0.14);

  /* Backgrounds */
  --bg: #0e0b0b;
  --bg-card: #141110;
  --bg-card-2: #1a1714;

  /* Borders */
  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.12);

  /* Text */
  --text: #e8e0d8;
  --text-muted: #9a8f87;
  --text-dim: #5a524d;

  /* Radii */
  --pill: 999px;
  --card-r: 14px;

  /* Font */
  --font: "Inter", system-ui, sans-serif;

  /* Transition */
  --ease: 0.2s ease;
}

/* ── Reset & base ───────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

/* ── Shared buttons ─────────────────────────────────────────── */
.dd-btn-primary {
  background: var(--orange);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 28px;
  border-radius: var(--pill);
  border: none;
  text-decoration: none;
  display: inline-block;
  transition:
    background var(--ease),
    transform var(--ease),
    box-shadow var(--ease);
}
.dd-btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 90, 40, 0.35);
}

.dd-btn-ghost {
  background: transparent;
  color: var(--text) !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 12px 28px;
  border-radius: var(--pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  display: inline-block;
  transition:
    border-color var(--ease),
    color var(--ease),
    transform var(--ease);
}
.dd-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff !important;
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════ */
/* .dd-navbar {
  background: rgba(14,11,11,0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
  z-index: 1050;
} */
.dd-navbar {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;

  z-index: 999;

  background: transparent;
  padding: 0;
}
.dd-navbar.scrolled {
  background: rgba(14, 11, 11, 0.97);
  border-bottom-color: var(--border);
}
.dd-navbar::before {
  content: "";

  position: absolute;

  width: 300px;
  height: 180px;

  top: -80px;
  left: -120px;

  background: rgba(240, 90, 40, 0.22);

  filter: blur(100px);

  z-index: -1;
}

/* Pill container */
/* .dd-nav-container {
  background: var(--bg-card-2);
  border-radius: var(--pill);
  border: 1px solid var(--border);
  padding: 10px 20px;
  max-width: 1080px;
  width: calc(100% - 40px);
  margin: 0 auto;
} */
.dd-nav-container {
  max-width: 1080px;
  width: calc(100% - 80px);

  padding: 6px 26px;

  border-radius: 999px;

  background: rgb(255, 255, 255, 0.1);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 20px 60px rgba(0, 0, 0, 0.35);
}

/* Brand */
.dd-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.dd-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.dd-logo-icon {
  width: 28px;
  height: 28px;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.dd-brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.02em;
}

/* Nav links */
.dd-nav-link {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 12px !important;
  border-radius: 6px;
  transition: color var(--ease);
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}
.dd-nav-link:hover {
  color: #fff !important;
}
.dd-nav-link.dd-active {
  color: #f05a28 !important;
  font-weight: 600;
}

/* Active dot */
.dd-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* Sign-in button */
.dd-signin-btn {
  background: var(--orange);
  color: #fff !important;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--pill);
  border: none;
  transition:
    background var(--ease),
    transform 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
}
.dd-signin-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  color: #fff !important;
}
.dd-signin-btn:active {
  transform: translateY(0);
}

/* Hamburger toggler */
.dd-toggler {
  background: transparent;
  border: none;
  padding: 4px 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.toggler-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: background var(--ease);
}
.dd-toggler:hover .toggler-bar {
  background: var(--orange);
}

/* Navbar — mobile */
@media (max-width: 991px) {
  .dd-navbar {
    top: 15px;
  }

  .dd-nav-container {
    width: calc(100% - 30px);
  }

  .dd-hero {
    padding-top: 130px;
  }
  #ddNavMenu {
    padding: 12px 4px 6px;
    border-top: 1px solid var(--border);
    margin-top: 10px;
  }
  .dd-nav-link {
    padding: 10px 8px !important;
  }
  .dd-signin-btn {
    display: inline-block;
    margin-bottom: 6px;
  }
}

/* ══════════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════════ */
.dd-hero {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

/* ── Background layers ──────────────────────────────────────── */
.dd-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/*
  Grid image — swap 'grid-bg.png' with your file.
  Adjust opacity (0–1) to control how visible the grid is.
*/
.dd-grid-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.35;
  mix-blend-mode: lighten;
}

/* Radial orange glows */
.dd-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.dd-glow-tl {
  width: 700px;
  height: 700px;
  background: rgba(200, 55, 20, 0.28);
  top: -260px;
  left: -200px;
}
.dd-glow-tr {
  width: 500px;
  height: 500px;
  background: rgba(200, 55, 20, 0.14);
  top: -160px;
  right: -180px;
}
.dd-glow-bottom {
  width: 900px;
  height: 400px;
  background: rgba(120, 30, 10, 0.18);
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
}

/* Edge vignette — fades grid into dark bg */
.dd-vignette {
  position: absolute;
  inset: 0;
  /* background:
    radial-gradient(ellipse 80% 60% at 50% 0%, transparent 20%, var(--bg) 75%),
    linear-gradient(
      to bottom,
      rgba(14, 11, 11, 0.4) 0%,
      rgba(14, 11, 11, 0) 30%,
      rgba(14, 11, 11, 0.6) 75%,
      var(--bg) 100%
    ),
    linear-gradient(
      to right,
      var(--bg) 0%,
      transparent 12%,
      transparent 88%,
      var(--bg) 100%
    ); */
}

/* ── Hero content ───────────────────────────────────────────── */
.dd-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 2rem;
}

.dd-headline {
  font-size: 3.6rem !important;
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  /* font-weight: 600; */
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 22px;
}
.dd-subtext {
  font-size: clamp(0.88rem, 1.8vw, 1rem);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto 36px;
}
.dd-cta-row {
  margin-bottom: 4px;
}

/* ── Dashboard card ─────────────────────────────────────────── */
.dd-dashboard-wrap {
  position: relative;
  margin-top: 52px;
}
.dd-dashboard-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 120px;
  background: radial-gradient(
    ellipse,
    rgba(240, 90, 40, 0.22) 0%,
    transparent 70%
  );
  filter: blur(30px);
  z-index: 0;
  pointer-events: none;
}
.dd-dashboard-img {
  display: block;
  width: 100%;
  border-radius: var(--card-r) var(--card-r) 0 0;
  border: 1px solid var(--border-light);
  border-bottom: none;
  box-shadow:
    0 -8px 40px rgba(240, 90, 40, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 60px 100px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 1;
  transform: perspective(1200px) rotateX(2deg);
  transform-origin: bottom center;
  transition: transform 0.5s ease;
}
.dd-dashboard-img:hover {
  transform: perspective(1200px) rotateX(0deg);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */

/* ≤ 991px — tablet */
@media (max-width: 991.98px) {

  .dd-navbar {
    top: 15px;
  }

  .dd-nav-container {
    width: calc(100% - 24px);
    padding: 6px 18px;

    /* Change from pill to box */
    border-radius: 18px;

    display: block;
  }

  #ddNavMenu {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .navbar-nav {
    align-items: flex-start !important;
    gap: 0 !important;
  }

  .dd-nav-link {
    display: block;
    width: 100%;
    padding: 14px 0 !important;
  }

  .dd-signin-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 12px;
  }
}

/* ≤ 767px — large mobile */
@media (max-width: 767.98px) {
  .dd-hero {
    padding-top: 60px;
    min-height: auto;
  }
  .dd-hero-content {
    padding-top: 28px;
  }
  .dd-headline {
    font-size: 1.85rem;
    letter-spacing: -0.03em;
  }
  .dd-subtext {
    font-size: 0.9rem;
    max-width: 100%;
  }
  .dd-dashboard-wrap {
    margin-top: 40px;
  }
  .dd-dashboard-img {
    transform: none;
    border-radius: 12px 12px 0 0;
  }
}

/* ≤ 575px — small mobile */
@media (max-width: 575.98px) {
  .dd-hero {
    padding-top: 52px;
  }
  .dd-headline {
    font-size: 1.6rem;
  }
  .dd-subtext {
    font-size: 0.86rem;
  }
  .dd-cta-row {
    flex-direction: column !important;
    align-items: center;
  }
  .dd-btn-primary,
  .dd-btn-ghost {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  .dd-dashboard-wrap {
    margin-top: 32px;
  }
  .dd-glow-tl {
    width: 340px;
    height: 340px;
    top: -160px;
    left: -140px;
  }
  .dd-glow-tr {
    display: none;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  .dd-dashboard-img {
    transform: none !important;
  }
}

/* ==================================================
   TRUSTED BRANDS MARQUEE
================================================== */

.dd-trusted-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}

.dd-trusted-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: radial-gradient(
    circle at left center,
    rgba(240, 90, 40, 0.18),
    transparent 35%
  ); */
  pointer-events: none;
}

.dd-trusted-title {
  text-align: center;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 500;
  color: #fff;
  margin-bottom: 60px;
  letter-spacing: -0.03em;
}

.dd-logo-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.dd-logo-track {
  display: flex;
  align-items: center;
  gap: 90px;
  width: max-content;
  animation: ddMarquee 28s linear infinite;
}

.dd-logo-marquee:hover .dd-logo-track {
  animation-play-state: paused;
}

.dd-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dd-logo-item img {
  height: 70px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.75;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.dd-logo-item img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

@keyframes ddMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Fade edges */
.dd-logo-marquee::before,
.dd-logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.dd-logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.dd-logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

/* Tablet */
@media (max-width: 991px) {
  .dd-logo-track {
    gap: 60px;
  }

  .dd-logo-item img {
    height: 55px;
    max-width: 110px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .dd-trusted-section {
    padding: 70px 0;
  }

  .dd-trusted-title {
    margin-bottom: 40px;
    font-size: 1.5rem;
  }

  .dd-logo-track {
    gap: 40px;
    animation-duration: 18s;
  }

  .dd-logo-item img {
    height: 45px;
    max-width: 90px;
  }

  .dd-logo-marquee::before,
  .dd-logo-marquee::after {
    width: 50px;
  }
}

/* ======================================
   ABOUT SECTION
====================================== */

.dd-about {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}

.dd-about::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: radial-gradient(
    circle at left center,
    rgba(240, 90, 40, 0.18),
    transparent 35%
  ); */
  pointer-events: none;
}

.dd-about-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  /* border: 1px solid rgba(255, 255, 255, 0.12); */
  /* background: rgba(255, 255, 255, 0.03); */
  color: var(--text);
  font-size: 0.75rem;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.dd-about-badge i {
  color: var(--orange);
}

.dd-about-title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 22px;
}

.dd-about-title span {
  width: 48px;
  height: 3px;
  background: var(--orange);
  border-radius: 10px;
}

.dd-about-text {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.5;
  margin-bottom: 18px;
  max-width: 620px;
}

.dd-about-image-wrap {
  position: relative;
}

.dd-about-image {
  width: 100%;
  border-radius: 24px;
  /* border: 5px solid var(--orange); */
  display: block;
  position: relative;
  z-index: 2;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(240, 90, 40, 0.15);
}

.dd-about-pattern {
  position: absolute;
  top: -20px;
  right: -40px;
  width: 180px;
  height: 180px;
  z-index: 1;
}

.dd-about-pattern::before,
.dd-about-pattern::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.dd-about-pattern::before {
  width: 140px;
  height: 140px;
  top: 0;
  right: 0;
}

.dd-about-pattern::after {
  width: 180px;
  height: 180px;
  top: 20px;
  right: 20px;
}

/* Tablet */
@media (max-width: 991px) {
  .dd-about {
    padding: 90px 0;
  }

  .dd-about-image-wrap {
    max-width: 700px;
    margin: auto;
  }

  .dd-about-title {
    margin-bottom: 20px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .dd-about {
    padding: 70px 0;
  }

  .dd-about-badge {
    font-size: 0.85rem;
    padding: 10px 18px;
  }

  .dd-about-title {
    font-size: 1.8rem;
  }

  .dd-about-text {
    font-size: 1rem;
    line-height: 1.8;
  }

  .dd-about-pattern {
    width: 120px;
    height: 120px;
    right: -10px;
  }

  .dd-about-pattern::before {
    width: 90px;
    height: 90px;
  }

  .dd-about-pattern::after {
    width: 120px;
    height: 120px;
  }
}

/* ==================================
   PRICING
================================== */

.dd-pricing {
  position: relative;
  padding: 90px 0;
}

.dd-pricing-title {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 500;
  color: var(--text);
}

.dd-pricing-title span {
  display: inline-block;
  width: 45px;
  height: 3px;
  background: var(--orange);
  margin-left: 10px;
  vertical-align: middle;
}

.dd-pricing-subtitle {
  max-width: 770px;
  margin: 15px auto 30px;
  color: var(--text-muted);
}

.dd-price-toggle {
  display: inline-flex;
  background: #1b1412;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 4px;
}

.dd-price-toggle button {
  border: none;
  background: transparent;
  color: var(--text-muted);
  padding: 8px 24px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.3s;
}

.dd-price-toggle button.active {
  background: #fff;
  color: var(--orange);
  font-weight: 600;
}

.dd-discount-text {
  color: var(--orange);
  font-size: 0.9rem;
  margin-top: 10px;
}

.dd-price-card {
  background: linear-gradient(180deg, #1d1d21 0%, #17171a 100%);
  border-radius: 20px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  height: 100%;
  transition: 0.3s;
}

.dd-price-card:hover {
  transform: translateY(-5px);
}

.dd-price-card h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 2px;
}

.dd-price-card small {
  color: var(--text-muted);
}

.dd-price {
  margin: 14px 0 16px;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}

.dd-price span:last-child {
  font-size: 1rem;
  font-weight: 400;
}

.dd-price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.dd-price-card ul li {
  color: var(--text-muted);
  margin-bottom: 6px;
  position: relative;
  padding-left: 22px;
  font-size: 0.92rem;
}

.dd-price-card ul li::before {
  content: url("../img/svg/check-w.svg");
  color: var(--orange);
  position: absolute;
  left: 0;
  padding-top: 3px;
}
.dd-price-card ul li:first-child::before {
    content: url("../img/svg/check-o.svg");
}
.dd-price-card .special li:first-child::before {
    content: url("../img/svg/check-b.svg");
}

.dd-price-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 999px;
  background: #e6e6e6;
  color: #111;
  text-decoration: none;
  font-weight: 600;
}

.featured {
  border: 2px solid var(--orange);
  background: linear-gradient(
    180deg,
    rgba(240, 90, 40, 0.12),
    rgba(20, 20, 20, 1)
  );
  position: relative;
}

.dd-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--orange);
  color: #000;
  text-align: center;
  padding: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 18px 18px 0 0;
}

.featured h5,
.featured small {
  margin-top: 25px;
}


.featured-btn {
  background: var(--orange);
  color: #fff;
}

/* SELCT PLAN GLASS  */
.select-plan-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(
        180deg,
        #a24618 0%,
        #8b3813 100%
    );

    color: #fff;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.12),
        inset 0 -1px 0 rgba(0,0,0,.15),
        0 8px 24px rgba(255,107,53,.18);

    transition: all .35s ease;
}

.select-plan-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(
        180deg,
        #b34c1c 0%,
        #974015 100%
    );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.18),
        0 12px 30px rgba(255,107,53,.28);
}



@media (max-width: 991px) {
  .dd-pricing {
    padding: 90px 0;
  }
}

@media (max-width: 767px) {
  .dd-pricing {
    padding: 70px 0;
  }

  .dd-price-card {
    padding: 25px;
  }

  .dd-price {
    font-size: 1.7rem;
  }
}
/* =====================================
   CONTACT SECTION
===================================== */

.dd-contact {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}

.dd-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at left center,
      rgba(240, 90, 40, 0.15),
      transparent 35%
    ),
    radial-gradient(
      circle at right center,
      rgba(240, 90, 40, 0.12),
      transparent 40%
    );
}

.dd-contact-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 90px 90px;
  pointer-events: none;
}

.dd-contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  /* background: rgba(255, 255, 255, 0.03); */
  color: var(--text);
  font-size: 0.75rem;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.dd-contact-badge i {
  color: var(--orange);
}

.dd-contact-title {
      font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.dd-contact-title span {
  display: inline-block;
  width: 45px;
  height: 3px;
  background: var(--orange);
  margin-left: 10px;
}

.dd-contact-subtitle {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 35px;
  line-height: 1.8;
}

.dd-input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  height: 52px;
  border-radius: 8px;
}

.dd-input:focus {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--orange);
  box-shadow: 0 0 0 0.2rem rgba(240, 90, 40, 0.15);
  color: #fff;
}

.dd-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

textarea.dd-input {
  height: auto;
  resize: none;
}

.dd-contact-btn {
  width: 100%;
  border: none;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  padding: 14px;
  border-radius: 999px;
  transition: 0.3s;
}

.dd-contact-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .dd-contact {
    padding: 80px 0;
  }
}
/* =====================================
   FOOTER
===================================== */

.dd-footer {
  position: relative;
  padding: 80px 0 30px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(
      circle at left center,
      rgba(240, 90, 40, 0.18),
      transparent 35%
    ),
    linear-gradient(180deg, rgba(240, 90, 40, 0.04), transparent);
}

.dd-footer-logo {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.dd-footer-desc {
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 340px;
  margin-bottom: 25px;
}

.dd-social-links {
  display: flex;
  gap: 15px;
}

.dd-social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
}

.dd-social-links a:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-3px);
}

.dd-footer-heading {
  color: #fff;
  font-weight: 600;
  margin-bottom: 18px;
}

.dd-footer-links,
.dd-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dd-footer-links li,
.dd-footer-contact li {
  margin-bottom: 12px;
}

.dd-footer-links a,
.dd-footer-contact a {
  color: var(--text-muted);
  text-decoration: none;
  transition: 0.3s;
}

.dd-footer-links a:hover,
.dd-footer-contact a:hover {
  color: var(--orange);
}

.dd-footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dd-footer-contact i {
  color: var(--orange);
  width: 18px;
}

.dd-footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.dd-footer-copy {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.dd-footer-bottom-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.dd-footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.dd-footer-bottom-links a:hover {
  color: var(--orange);
}

/* Mobile */
@media (max-width: 991px) {
  .dd-footer {
    padding-top: 70px;
  }

  .dd-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .dd-footer-logo {
    font-size: 1.7rem;
  }

  .dd-footer-bottom-links {
    justify-content: center;
    gap: 15px;
  }
}

/* ==================================================
   HERO SECTION V2 (REFERENCE STYLE)
   Paste below your existing CSS
================================================== */
.dd-hero-v2 {
  position: relative;
  padding: 120px 0 90px 0;
  overflow: hidden;
}

.dd-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #050505;
  padding-top: 170px;
  padding-bottom: 40px;
}

/* Grid Background */
.dd-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);

  background-size: 65px 65px;
  z-index: 0;
}
.dd-hero::after {
  content: "";

  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  height: 250px;

  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent);

  pointer-events: none;
}

/* Hide image grid */
.dd-grid-img {
  display: none !important;
}

/* Background Layer */
.dd-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Left Orange Glow */
.dd-glow-tl {
  width: 290px;
  height: 290px;
  background: rgba(240, 90, 40, 0.32);
  top: -50px;
  left: 20px;
  filter: blur(140px);
  border-radius: 50%;
}

/* Right Glow */
.dd-glow-tr {
  width: 450px;
  height: 450px;
  background: rgba(240, 90, 40, 0.18);
  top: 320px;
  right: -10px;
  filter: blur(120px);
  border-radius: 50%;
}

/* Bottom Glow */
.dd-glow-bottom {
  width: 420px;
  height: 350px;
  background: rgba(240, 90, 40, 0.2);
  left: 0;
  top: 950px;
  bottom: -120px;
  transform: translateX(-50%);
  filter: blur(120px);
  border-radius: 50%;
}

/* Vignette */
.dd-vignette {
  position: absolute;
  inset: 0;

  /* background:
    radial-gradient(
      circle at center,
      transparent 40%,
      rgba(0, 0, 0, 0.45) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.4),
      transparent 20%,
      rgba(0, 0, 0, 0.55)
    ); */

  z-index: 2;
}

/* Content */
.dd-hero-content {
  position: relative;
  z-index: 5;
}

/* Heading */
/* .dd-headline {
  max-width: 900px;
  margin: 0 auto 22px;

  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;

  letter-spacing: -2px;
  color: #fff;
} */
.dd-headline {
  font-size: clamp(3.5rem, 5vw, 4.6rem);
  max-width: 820px;
  margin: 0 auto 20px;
}

/* Description */
.dd-subtext {
  max-width: 620px;
  margin: 0 auto 36px;

  font-size: 1rem;
  line-height: 1.8;

  color: rgba(255, 255, 255, 0.65);
}

/* CTA */
.dd-cta-row {
  margin-top: 20px;
}

/* Primary Button */
.dd-btn-primary {
  background: #f05a28;
  color: #fff !important;

  border-radius: 999px;
  padding: 14px 32px;

  font-size: 0.95rem;
  font-weight: 600;

  transition: all 0.3s ease;
}

.dd-btn-primary:hover {
  background: #ff6f3c;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(240, 90, 40, 0.35);
}

/* Ghost Button */
.dd-btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff !important;

  border-radius: 999px;
  padding: 14px 32px;

  font-size: 0.95rem;
  font-weight: 500;

  transition: all 0.3s ease;
}

.dd-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.03);
}

/* Dashboard Wrapper */
.dd-dashboard-wrap {
  position: relative;
  margin-top: 90px;
}

/* Dashboard Image */
.dd-dashboard-img {
  display: block;
  width: 100%;

  border-radius: 14px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  position: relative;
  z-index: 3;

  transform: perspective(1200px) rotateX(2deg);

  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 25px 80px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(240, 90, 40, 0.06);

  transition: 0.4s ease;
}

.dd-dashboard-img:hover {
  transform: perspective(1200px) rotateX(0deg);
}

/* Orange Glow Under Dashboard */
.dd-dashboard-glow {
  position: absolute;

  left: 50%;
  bottom: -60px;

  transform: translateX(-50%);

  width: 75%;
  height: 150px;

  background: radial-gradient(ellipse, rgba(240, 90, 40, 0.4), transparent 70%);

  filter: blur(55px);

  z-index: 1;
}

/* Fade Animation */
.dd-headline,
.dd-subtext,
.dd-cta-row,
.dd-dashboard-wrap {
  opacity: 0;
  animation: ddFadeUp 0.8s ease forwards;
}

.dd-subtext {
  animation-delay: 0.1s;
}

.dd-cta-row {
  animation-delay: 0.2s;
}

.dd-dashboard-wrap {
  animation-delay: 0.35s;
}

/* Sub Heading Badge  */
.glass-badge {
    background: rgba(82, 38, 16, 0.28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,0.12),
        inset 0 -1px 1px rgba(0,0,0,0.15),
        0 8px 24px rgba(255, 106, 0, 0.12);
    letter-spacing: 0.2px;
    position: relative;
    overflow: hidden;
}

/* Glass shine */
.glass-badge::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.12) 0%,
        rgba(255,255,255,0.02) 55%,
        rgba(0,0,0,0.08) 100%
    );
    pointer-events: none;
}




@keyframes ddFadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet */
@media (max-width: 991px) {
  .dd-hero {
    padding-top: 120px;
  }

  .dd-headline {
    font-size: 3rem;
  }

  .dd-dashboard-wrap {
    margin-top: 70px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .dd-hero {
    min-height: auto;
    padding-top: 90px;
  }

  .dd-headline {
    font-size: 2.2rem;
    letter-spacing: -1px;
  }

  .dd-subtext {
    font-size: 0.95rem;
  }

  .dd-dashboard-wrap {
    margin-top: 50px;
  }

  .dd-dashboard-img {
    transform: none;
  }

  .dd-glow-tr {
    display: none;
  }

  .dd-glow-tl {
    width: 420px;
    height: 420px;
  }
}

/* Small Mobile */
@media (max-width: 575px) {
  .dd-btn-primary,
  .dd-btn-ghost {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .dd-cta-row {
    flex-direction: column;
    align-items: center;
  }

  .dd-headline {
    font-size: 1.9rem;
  }
}
