﻿/**
/*====================================
# Datalani Technology - General css
====================================*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');
:root {
  scroll-behavior: smooth;
  /* Datalani Technology – Brand Palette */
  --dt-blue: #1565C0;
  --dt-blue-dark: #0D47A1;
  --dt-blue-darker: #0a3880;
  --dt-blue-light: #42A5F5;
  --dt-blue-xlight: #BBDEFB;
  --dt-cyan: #1976D2;
  --dt-navy: #041028;
  --dt-navy-mid: #071d42;
  --dt-navy-light: #0d2d5e;
  --dt-grey: #64748b;
  --dt-grey-light: #94a3b8;
  --dt-grey-xlight: #e2e8f0;
  --dt-white: #f8fafc;
  --dt-black: #020617;
  /* Aliases – mapped to Datalani brand colors */
  --dt-accent: var(--dt-blue);
  --dt-accent-dark: var(--dt-blue-dark);
  --dt-accent-light: var(--dt-blue-xlight);
  --dt-text-mid: var(--dt-navy-light);
  --dt-text: var(--dt-grey);
  --dt-text-dark: var(--dt-navy);
  --dt-border: rgba(21, 101, 192, 0.18);
  --dt-shadow: 0 16px 40px rgba(4, 16, 40, 0.12);
  --dt-ink: var(--dt-black);
  /* Legacy variable aliases — map old coaching-template names to tech palette */
  --dt-rose: #1565C0;
  --dt-rose-dark: #0D47A1;
  --dt-rose-light: #BBDEFB;
  --dt-taupe: #0d2d5e;
  --dt-grey-dark: #041028;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--dt-grey);
  overflow-x: hidden;
}

a {
  color: var(--dt-rose);
  text-decoration: none;
}

a:hover {
  color: var(--dt-rose-dark);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  color: var(--dt-grey-dark);
}

/*====================================
# Sections
====================================*/
section {
  padding: 50px 0;
  overflow: hidden;
}
.section-title {
  text-align: center;
  padding-bottom: 42px;
}
.section-title p {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 37px;
  line-height: 40px;
  font-weight: 600;
  color: var(--dt-grey-dark);
}
@media (max-width: 768px) {
  .section-title p {
    font-size: 26px;
    line-height: 30px;
  }
}

/*====================================
# Back to top button
====================================*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--dt-blue);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.3s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: var(--dt-blue-dark);
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Let's Chat sticky button */
.lets-chat-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9998;
  background: var(--dt-grey-dark);
  color: #fff !important;
  padding: 12px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s;
}
.lets-chat-btn:hover {
  background: var(--dt-black);
  color: #fff !important;
  transform: translateY(-2px);
}
.lets-chat-icon {
  font-size: 18px;
}

/* WhatsApp floating button (bottom-left) */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9998;
  width: 52px;
  height: 52px;
  background: #25d366;
  color: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
}
.whatsapp-float:hover {
  background: #20bd5a;
  color: #fff !important;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Contact page map */
.contact-map {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(122, 107, 93, 0.1);
  border: 1px solid rgba(184, 149, 143, 0.15);
}
.contact-map iframe {
  border-radius: 12px !important;
}
.btn-map-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--dt-rose), var(--dt-rose-dark));
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(184, 149, 143, 0.3);
}
.btn-map-directions:hover {
  background: linear-gradient(135deg, var(--dt-rose-dark), var(--dt-taupe));
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 149, 143, 0.4);
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*====================================
# Header Top Bar
====================================*/
.header-topbar {
  background: rgba(2, 8, 22, 0.95);
  padding: 7px 0;
  border-bottom: 1px solid rgba(21, 101, 192, 0.2);
  font-size: 13px;
}
.header-topbar .topbar-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-topbar .topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}
.header-topbar .topbar-item:hover { color: #fff; }
.header-topbar .topbar-item i {
  color: #1565C0;
  font-size: 14px;
  flex-shrink: 0;
}
.header-topbar .topbar-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-topbar .topbar-social a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  transition: color 0.3s;
  text-decoration: none;
  line-height: 1;
}
.header-topbar .topbar-social a:hover { color: #fff; }
@media (max-width: 768px) { .header-topbar { display: none; } }

/*====================================
# Header Logo
====================================*/
.header {
  background: var(--dt-navy);
  transition: all 0.3s;
  z-index: 999;
  padding: 16px 0;
  padding-left: max(0px, env(safe-area-inset-left));
  padding-right: max(0px, env(safe-area-inset-right));
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  border-bottom: 1px solid rgba(21, 101, 192, 0.25);
}
.header.header-scrolled {
  background: var(--dt-navy);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(4, 16, 40, 0.5);
}
.header .logo {
  line-height: 0;
}
.header .logo img,
.header .logo .logo-img {
  max-height: 30px;
  width: auto;
  margin-right: 10px;
  object-fit: contain;
}
.header .logo span {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  margin-top: 3px;
  letter-spacing: 0.5px;
}
.header .logo .logo-text {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Datalani Technology logo */
.Datalani Technology-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dt-grey-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.Datalani Technology-logo-sm {
  width: 30px;
  height: 30px;
  margin-right: 8px;
}
.Datalani Technology-logo .logo-monogram {
  font-size: 14px;
  font-weight: 700;
  color: var(--dt-rose-light);
  letter-spacing: -0.5px;
}
.Datalani Technology-logo-sm .logo-monogram {
  font-size: 11px;
}

/*====================================
# Navigation Menu
======================================*/
/* Desktop Navigation */
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 18px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  transition: 0.2s;
}
.navbar .nav-cart {
  padding-left: 12px;
  position: relative;
}
.navbar .nav-cart .cart-count {
  display: inline-block;
  background: var(--dt-rose);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 4px;
  min-width: 18px;
  text-align: center;
  line-height: 1.4;
}
.navbar .nav-icon-link {
  position: relative;
  padding-left: 12px !important;
  padding-right: 12px !important;
  font-size: 18px !important;
}
.navbar .nav-icon-link i {
  font-size: 18px !important;
  margin: 0 !important;
}
.navbar .nav-icon-link .cart-badge {
  position: absolute;
  top: 5px;
  right: 4px;
  background: var(--dt-blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
  line-height: 1.2;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: var(--dt-blue-light);
}
.navbar .signup-btn, .navbar .signup-btn:focus,
.navbar .nav-cta-btn, .navbar .nav-cta-btn:focus {
  background: var(--dt-blue);
  padding: 9px 22px;
  margin-left: 20px;
  border-radius: 6px;
  color: #fff !important;
  font-weight: 600;
  border: 2px solid var(--dt-blue);
  transition: all 0.3s;
}
.navbar .signup-btn:hover, .navbar .signup-btn:focus:hover,
.navbar .nav-cta-btn:hover {
  color: #fff !important;
  background: var(--dt-blue-dark);
  border-color: var(--dt-blue-dark);
  transform: translateY(-1px);
}
.mobile-nav-toggle {\n  color: #ffffff;\n}\n@media (max-width: 1366px) {\n  .navbar .dropdown .dropdown ul {\n    left: -90%;\n  }\n  .navbar .dropdown .dropdown:hover > ul {\n    left: -100%;\n  }\n}\n\n/* Mobile Navigation */\n.mobile-nav-toggle {
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  transition: 0.4s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 1199px) {
  .navbar a, .navbar a:focus {
    padding: 10px 0 10px 12px;
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(3, 25, 66, 0.8);
  transition: 0.3s;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #012970;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--dt-rose);
}
.navbar-mobile .signup-btn, .navbar-mobile .signup-btn:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: var(--dt-rose);
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*====================================
# Desktop Dropdown Navigation
====================================*/
.dt-dropdown {
  position: relative;
}
.dt-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.dt-dropdown > a .bi-chevron-down {
  font-size: 10px;
  margin-left: 2px;
  transition: transform 0.25s ease;
}
.dt-dropdown:hover > a .bi-chevron-down {
  transform: rotate(180deg);
  color: var(--dt-blue-light);
}
.dt-dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(4,16,40,0.18), 0 0 0 1px rgba(21,101,192,0.08);
  min-width: 580px;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 9999;
  pointer-events: none;
}
/* Invisible hover bridge — prevents dropdown from closing when mouse crosses the gap */
.dt-dropdown-panel::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}
.dt-dropdown-panel--sm {
  min-width: 260px;
  padding: 10px 8px;
}
.dt-dropdown:hover .dt-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}
.dt-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.dt-dd-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: #041028;
  transition: background 0.18s, color 0.18s;
}
.dt-dd-item:hover {
  background: #f0f7ff;
  color: #1565C0;
}
.dt-dd-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1565C0, #42A5F5);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  flex-shrink: 0;
}
.dt-dd-item > div strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: #041028;
  margin-bottom: 2px;
  transition: color 0.18s;
}
.dt-dd-item > div span {
  display: block;
  font-size: 12px;
  color: #64748b;
}
.dt-dd-item:hover > div strong { color: #1565C0; }
.dt-dropdown-footer {
  border-top: 1px solid #e2e8f0;
  padding: 12px 14px 4px;
  margin-top: 8px;
}
.dt-dropdown-footer a {
  font-size: 13.5px;
  font-weight: 600;
  color: #1565C0;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: gap 0.2s;
}
.dt-dropdown-footer a:hover { gap: 12px; }
.dt-dd-item--list {
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 500;
  gap: 10px;
  color: #334155;
}
.dt-dd-item--list i {
  color: #1565C0;
  font-size: 15px;
  width: 18px;
  flex-shrink: 0;
}
.dt-dd-item--list:hover { color: #1565C0; }

/* Override navbar's white link color inside dropdown panels */
.dt-dropdown-panel a,
.dt-dropdown-panel a:focus,
.navbar .dt-dropdown-panel a,
.navbar .dt-dropdown-panel a:focus {
  color: #041028;
  white-space: normal;
}
.navbar .dt-dropdown-panel .dt-dd-item--list,
.navbar .dt-dropdown-panel .dt-dd-item--list:focus {
  color: #334155;
}
.navbar .dt-dropdown-panel a:hover,
.navbar li:hover > .dt-dropdown-panel a {
  color: #1565C0;
  background: transparent;
}
.navbar .dt-dropdown-panel .dt-dd-item:hover,
.navbar .dt-dropdown-panel .dt-dd-item--list:hover {
  color: #1565C0;
  background: #f0f7ff;
}

@media (max-width: 1100px) {
  .dt-dropdown-panel { min-width: 480px; }
}
@media (max-width: 991px) {
  .dt-dropdown-panel { display: none !important; }
}

/*====================================
# Mobile Side Navigation Drawer
====================================*/
.side-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 16, 40, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.side-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.side-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 90vw);
  height: 100%;
  height: 100dvh;
  background: #041028;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.side-nav-drawer.open {
  transform: translateX(0);
}
/* Drawer header */
.side-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(21, 101, 192, 0.25);
  flex-shrink: 0;
}
.side-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}
.logo-monogram-sm {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #1565C0, #42A5F5);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.side-nav-close {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.side-nav-close:hover { background: rgba(255, 255, 255, 0.16); }
/* Drawer body */
.side-nav-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(21, 101, 192, 0.4) transparent;
}
.side-nav-body::-webkit-scrollbar { width: 4px; }
.side-nav-body::-webkit-scrollbar-thumb { background: rgba(21, 101, 192, 0.4); border-radius: 2px; }
.side-nav-menu { list-style: none; padding: 0; margin: 0; }
.side-nav-item { border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.side-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
}
.side-nav-link > span {
  display: flex;
  align-items: center;
  gap: 12px;
}
.side-nav-link.active,
.side-nav-link:hover {
  color: #42A5F5;
  background: rgba(21, 101, 192, 0.1);
}
.side-nav-link > span i:not(.side-nav-arrow) {
  font-size: 16px;
  color: #1565C0;
  width: 20px;
  flex-shrink: 0;
}
.side-nav-arrow {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  transition: transform 0.25s ease, color 0.25s;
}
.side-nav-accordion-toggle.open .side-nav-arrow {
  transform: rotate(180deg);
  color: #42A5F5;
}
/* Sub menu */
.side-nav-sub {
  list-style: none;
  padding: 0;
  margin: 0;
  background: rgba(21, 101, 192, 0.06);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.side-nav-sub.open { max-height: 500px; }
.side-nav-sub li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 40px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s, padding-left 0.2s;
}
.side-nav-sub li a:hover {
  color: #42A5F5;
  padding-left: 48px;
}
.side-nav-sub li a i { color: rgba(21, 101, 192, 0.7); font-size: 11px; }
/* Drawer footer */
.side-nav-footer {
  padding: 18px 20px;
  border-top: 1px solid rgba(21, 101, 192, 0.25);
  flex-shrink: 0;
}
.side-nav-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(135deg, #1565C0, #1976D2);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(21, 101, 192, 0.4);
}
.side-nav-cta-btn:hover {
  background: linear-gradient(135deg, #0D47A1, #1565C0);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(21, 101, 192, 0.5);
}
.side-nav-contact-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.side-nav-contact-row a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.side-nav-contact-row a:hover { color: #42A5F5; }
.side-nav-contact-row a i { color: #1565C0; }
/* Hamburger button */
.mobile-nav-toggle {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
}
.mobile-nav-toggle:hover { color: #42A5F5; }
@media (max-width: 991px) {
  .mobile-nav-toggle { display: flex; align-items: center; }
  .navbar ul { display: none !important; }
}
/* Body scroll lock when drawer is open */
body.side-nav-open { overflow: hidden; }

/*====================================
# Datalani Technology Hero Section
====================================*/
.hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 70px;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #041028 0%, #071d42 40%, #0d2d5e 70%, #041028 100%);
  z-index: 0;
}
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: heroFloat 20s ease-in-out infinite;
}
.hero-shape-1 {
  width: 500px;
  height: 500px;
  background: var(--dt-rose-light);
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}
.hero-shape-2 {
  width: 350px;
  height: 350px;
  background: var(--dt-taupe);
  bottom: -50px;
  left: -80px;
  opacity: 0.35;
  animation-delay: -7s;
}
.hero-shape-3 {
  width: 200px;
  height: 200px;
  background: var(--dt-rose);
  top: 50%;
  left: 40%;
  opacity: 0.2;
  animation-delay: -14s;
}
.hero-shape-4 {
  width: 280px;
  height: 280px;
  background: rgba(122,107,93,0.15);
  bottom: 10%;
  right: 10%;
  animation-delay: -10s;
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,149,143,0.15) 0%, transparent 70%);
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
}
@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.98); }
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dt-taupe);
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid rgba(122,107,93,0.3);
  border-radius: 2px;
}
.hero-headline {
  margin: 0 0 24px 0;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dt-grey-dark);
  letter-spacing: -0.02em;
}
.hero-line1 {
  display: block;
  font-weight: 400;
  color: var(--dt-grey);
  font-size: 0.55em;
  letter-spacing: 0.02em;
  margin-bottom: 0.15em;
}
.hero-line2 {
  display: block;
  color: var(--dt-grey-dark);
}
.hero-accent {
  font-style: normal;
  font-weight: 600;
  color: var(--dt-rose);
  position: relative;
}
.hero-accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, rgba(184,149,143,0.35), rgba(184,149,143,0.15));
  z-index: -1;
}
.hero-subheadline {
  font-size: 17px;
  line-height: 1.7;
  color: var(--dt-grey);
  margin: 0 0 36px 0;
  max-width: 420px;
}
.hero-trust-indicators {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dt-grey-dark);
}
.trust-item i {
  color: var(--dt-rose);
  font-size: 20px;
}
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hero-stat-item {
  display: flex;
  flex-direction: column;
}
.hero-stat-number {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--dt-rose);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--dt-grey-light);
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px;
  height: 45px;
  background: rgba(0,0,0,0.12);
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--dt-grey-dark);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.3s;
  border: 2px solid var(--dt-grey-dark);
}
.btn-hero-primary:hover {
  background: var(--dt-taupe);
  border-color: var(--dt-taupe);
  color: #fff;
  transform: translateY(-2px);
}
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 28px;
  background: transparent;
  color: var(--dt-grey-dark);
  font-weight: 500;
  font-size: 15px;
  border: 2px solid var(--dt-grey);
  border-radius: 4px;
  transition: all 0.3s;
}
.btn-hero-secondary:hover {
  border-color: var(--dt-rose);
  color: var(--dt-rose);
}
.hero-visual {
  justify-content: center;
  align-items: center;
}
.hero-visual-inner {
  position: relative;
  width: 280px;
  height: 280px;
}
.hero-badge-accent {
  position: absolute;
  bottom: 20px;
  right: -15px;
  background: linear-gradient(135deg, var(--dt-grey-dark) 0%, var(--dt-taupe) 100%);
  color: #fff;
  padding: 10px 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  z-index: 3;
}
.hero-badge-accent i {
  font-size: 16px;
}
.hero-logo-large {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
.hero-logo-monogram {
  display: block;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--dt-grey-dark);
  letter-spacing: -2px;
  line-height: 1;
}
.hero-logo-text {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--dt-taupe);
  margin-top: 8px;
}
.hero-visual-ring {
  position: absolute;
  inset: -20px;
  border: 2px solid rgba(122,107,93,0.2);
  border-radius: 50%;
  animation: heroRingPulse 4s ease-in-out infinite;
}
.hero-visual-ring::before {
  content: '';
  position: absolute;
  inset: -30px;
  border: 1px solid rgba(184,149,143,0.15);
  border-radius: 50%;
}
@keyframes heroRingPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.02); opacity: 0.7; }
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--dt-grey);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  text-decoration: none;
  transition: color 0.3s;
}
.hero-scroll-indicator:hover {
  color: var(--dt-taupe);
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--dt-grey), transparent);
  animation: heroScrollLine 2s ease-in-out infinite;
}
@keyframes heroScrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}
.btn-book-now {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 2px solid var(--dt-grey);
  background: #fff;
  color: var(--dt-black);
  font-weight: 500;
  font-size: 16px;
  border-radius: 4px;
  transition: all 0.3s;
}
.btn-book-now:hover {
  background: var(--dt-grey);
  color: #fff;
  border-color: var(--dt-grey);
}
.btn-book-now.btn-cta {
  background: var(--dt-rose);
  border-color: var(--dt-rose);
  color: #fff;
}
.btn-book-now.btn-cta:hover {
  background: var(--dt-rose-dark);
  border-color: var(--dt-rose-dark);
  color: #fff;
}
@media (max-width: 991px) {
  .hero {
    min-height: 65vh;
    padding: 110px 0 60px;
  }
  .hero .row {
    flex-direction: column;
  }
  .hero-visual {
    order: 2;
  }
  .hero-visual-inner {
    width: 200px;
    height: 200px;
  }
  .hero-logo-monogram {
    font-size: 52px;
  }
  .hero-logo-text {
    font-size: 10px;
    letter-spacing: 3px;
  }
  .hero-visual-ring {
    inset: -15px;
  }
  .hero-visual-ring::before {
    inset: -22px;
  }
  .hero-headline {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }
  .hero-subheadline {
    font-size: 16px;
    max-width: 100%;
  }
  .hero-cta-group {
    flex-direction: column;
  }
  .btn-hero-primary, .btn-hero-secondary {
    justify-content: center;
  }
  .hero-trust-indicators {
    gap: 16px;
    justify-content: center;
  }
  .trust-item {
    font-size: 13px;
  }
  .hero-stats-row {
    gap: 16px;
    justify-content: center;
  }
  .hero-stat-number {
    font-size: 28px;
  }
  .hero-stat-label {
    font-size: 11px;
  }
  .hero-stat-divider {
    height: 38px;
  }
  .hero-badge-accent {
    font-size: 11px;
    padding: 8px 14px;
    right: -10px;
    bottom: 15px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 120px 0 50px;
  }
  .hero-badge {
    font-size: 10px;
    letter-spacing: 2px;
  }
  .hero-headline {
    font-size: 2rem;
  }
  .hero-line1 {
    font-size: 0.6em;
  }
  .hero-trust-indicators {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-stats-row {
    flex-wrap: wrap;
    gap: 12px;
  }
  .hero-stat-number {
    font-size: 24px;
  }
  .hero-stat-divider {
    display: none;
  }
  .hero-badge-accent {
    position: static;
    margin: 12px auto 0;
  }
}

/* Section headers (shared) */
.section-header {
  margin-bottom: 48px;
  text-align: center;
}
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dt-taupe);
  margin-bottom: 12px;
}
.section-headline {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--dt-grey-dark);
  line-height: 1.25;
  margin: 0;
}
.section-headline em {
  font-style: italic;
  color: var(--dt-rose);
}

/* Intro section */
#intro.intro {
  padding: 100px 0 90px;
  background: #fff;
  position: relative;
  overflow: visible;
  scroll-margin-top: 20px;
}
.intro-bg-accent {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--dt-rose), transparent);
  border-radius: 2px;
}
.intro .row {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.intro-blockquote {
  margin: 0;
  padding: 24px 0 0 48px;
  border: none;
  position: relative;
  overflow: visible;
}
.intro-quote-mark {
  position: absolute;
  left: 0;
  top: -8px;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--dt-rose-light);
  line-height: 1;
}
.intro-text {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--dt-grey);
  margin: 0;
  font-style: italic;
}
@media (max-width: 768px) {
  .intro {
    padding: 60px 0;
  }
  .intro-blockquote {
    padding-left: 36px;
  }
  .intro-quote-mark {
    font-size: 48px;
  }
  .intro-text {
    font-size: 20px;
  }
}

/* About preview */
.about-preview {
  padding: 90px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}
.about-preview-shape {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184,149,143,0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}
.about-preview-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--dt-grey);
  margin: 0 0 28px 0;
}
.about-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-features-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  font-size: 16px;
  color: var(--dt-grey-dark);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.about-features-list li:last-child {
  border-bottom: none;
}
.about-features-list li:hover {
  padding-left: 8px;
}
.about-feature-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--dt-rose);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.btn-learn-more {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 2px solid var(--dt-rose);
  color: var(--dt-rose);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.3s;
}
.btn-learn-more:hover {
  background: var(--dt-rose);
  color: #fff;
  text-decoration: none;
}

/* Services page - category tabs (override Bootstrap blue) */
.services-detail {
  padding: 60px 0 80px;
}
.services-tabs .nav-tabs {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.services-tabs .nav-link {
  color: var(--dt-grey) !important;
  border: 2px solid transparent !important;
  border-radius: 0 !important;
  padding: 12px 24px !important;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  background: transparent !important;
  margin-bottom: -1px;
  transition: all 0.3s;
}
.services-tabs .nav-link:hover {
  color: var(--dt-taupe) !important;
}
.services-tabs .nav-link.active {
  color: var(--dt-grey-dark) !important;
  border-color: var(--dt-grey-dark) !important;
  border-bottom-color: #fff !important;
  background: #fff !important;
}
.service-listing h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-listing .service-actions a {
  color: var(--dt-rose);
}
.service-listing .service-actions a:hover {
  color: var(--dt-rose-dark);
}
.service-empty-state .btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

/* Service listing cards (premium card layout) */
.service-listing-grid {
  max-width: 1100px;
  margin: 0 auto;
}
.service-listing-card {
  background: #fff;
  border: 1px solid #1a1a1a;
  border-radius: 0;
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.service-listing-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.service-listing-title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dt-grey-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-listing-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--dt-grey);
  margin-bottom: 12px;
  flex: 1;
}
.service-listing-read-more {
  font-size: 14px;
  color: var(--dt-grey-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 12px;
  display: inline-block;
}
.service-listing-read-more:hover {
  color: var(--dt-rose);
}
.service-listing-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.service-listing-badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--dt-grey);
  background: #f0f0f0;
  padding: 4px 10px;
}
.service-listing-duration {
  font-size: 14px;
  color: var(--dt-grey-dark);
}
.service-listing-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--dt-grey-dark);
}
.service-listing-quote {
  font-size: 14px;
  color: var(--dt-rose);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.service-listing-quote:hover {
  color: var(--dt-rose-dark);
}
.service-listing-divider {
  height: 1px;
  background: #1a1a1a;
  margin-bottom: 20px;
}
.btn-service-primary {
  display: block;
  text-align: center;
  padding: 14px 24px;
  background: var(--dt-grey-dark);
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--dt-grey-dark);
  border-radius: 0;
  transition: all 0.3s;
}
.btn-service-primary:hover {
  background: var(--dt-taupe);
  border-color: var(--dt-taupe);
  color: #fff !important;
}
.service-listing-explore {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  color: var(--dt-grey-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.service-listing-explore:hover {
  color: var(--dt-rose);
}

/* Service cards (homepage) */
.service-card {
  padding: 40px 32px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
  height: 100%;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--dt-rose), var(--dt-rose-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover {
  border-color: transparent;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transform: translateY(-6px);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(184,149,143,0.15);
  line-height: 1;
}
.service-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(184,149,143,0.12), rgba(184,149,143,0.06));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--dt-rose);
  margin-bottom: 24px;
  transition: all 0.3s;
}
.service-card:hover .service-card-icon {
  background: var(--dt-rose);
  color: #fff;
}
.service-card h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--dt-grey-dark);
}
.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--dt-grey);
  margin: 0 0 20px 0;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dt-taupe);
  transition: all 0.3s;
}
.service-card-link:hover {
  color: var(--dt-rose);
  gap: 10px;
}
.service-card-link i {
  font-size: 12px;
  transition: transform 0.3s;
}
.service-card-link:hover i {
  transform: translateX(4px);
}

/* Legacy service-box (other pages) */
.service-box {
  padding: 40px 30px;
  text-align: center;
  border: 1px solid #eee;
  border-radius: 8px;
  height: 100%;
  transition: all 0.3s;
}
.service-box:hover {
  border-color: var(--dt-rose-light);
  box-shadow: 0 8px 25px rgba(184, 149, 143, 0.15);
}
.service-box .service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(184, 149, 143, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--dt-rose);
}
.service-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--dt-grey-dark);
}
.service-box p {
  color: var(--dt-grey);
  margin: 0;
  line-height: 1.6;
}
.service-box-full {
  text-align: left;
}
.service-box-full .service-icon {
  margin: 0 0 20px 0;
}

/* CTA section */
.cta {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dt-grey-dark) 0%, #3d3835 50%, var(--dt-taupe-dark) 100%);
  z-index: 0;
}
.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.cta .container {
  position: relative;
  z-index: 1;
}
.cta-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.cta-headline {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px 0;
  line-height: 1.2;
}
.cta-text {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin: 0 0 32px 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #fff;
  color: var(--dt-grey-dark);
  font-weight: 600;
  font-size: 15px;
  border-radius: 4px;
  transition: all 0.3s;
  border: 2px solid #fff;
}
.btn-cta-primary:hover {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

/* Contact cards (homepage) */
.contact-card {
  display: block;
  padding: 36px 32px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
  height: 100%;
  transition: all 0.4s;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.contact-card:hover {
  border-color: var(--dt-rose-light);
  box-shadow: 0 16px 40px rgba(184,149,143,0.12);
  transform: translateY(-4px);
}
.contact-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(184,149,143,0.12), rgba(184,149,143,0.06));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--dt-rose);
  margin-bottom: 20px;
  transition: all 0.3s;
}
.contact-card:hover .contact-card-icon {
  background: var(--dt-rose);
  color: #fff;
}
.contact-card h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dt-grey-dark);
}
.contact-card p {
  font-size: 15px;
  color: var(--dt-grey);
  margin: 0;
  line-height: 1.5;
}
.contact-card-arrow {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 18px;
  color: var(--dt-rose);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s;
}
.contact-card:hover .contact-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Homepage section spacing */
#services-preview {
  padding: 90px 0;
  background: #fff;
}
#contact {
  padding: 90px 0;
  background: #f8fafc;
}

/* Page hero (inner pages) */
.dt-page-hero {
  padding: 130px 0 60px;
  background: var(--dt-white);
  text-align: center;
}
.page-hero {
  padding: 130px 0 60px;
  background: var(--dt-white);
  text-align: center;
}
.page-hero-contact {
  background: linear-gradient(135deg, rgba(248, 246, 245, 0.9) 0%, rgba(250, 250, 250, 1) 50%, rgba(248, 246, 245, 0.6) 100%);
  padding: 130px 0 70px;
}
.page-hero-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dt-taupe);
  margin-bottom: 10px;
  text-align: center;
}
/* About page - Hero (innovative) */
.about-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background: #f8fafc;
  z-index: 0;
}
.about-hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.about-hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.about-hero-shape-1 {
  width: 450px;
  height: 450px;
  background: var(--dt-rose-light);
  top: -100px;
  right: -80px;
  animation: about-hero-float 18s ease-in-out infinite;
}
.about-hero-shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(122,107,93,0.15);
  bottom: 10%;
  left: -60px;
  animation: about-hero-float 22s ease-in-out infinite reverse;
}
.about-hero-shape-3 {
  width: 180px;
  height: 180px;
  background: var(--dt-rose);
  top: 40%;
  right: 15%;
  opacity: 0.35;
  animation: about-hero-float 15s ease-in-out infinite 2s;
}
.about-hero-shape-4 {
  width: 220px;
  height: 220px;
  background: rgba(184,149,143,0.12);
  bottom: -50px;
  right: 25%;
  animation: about-hero-float 20s ease-in-out infinite 1s;
}
@keyframes about-hero-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(15px, -20px) scale(1.02); }
  66% { transform: translate(-10px, 15px) scale(0.98); }
}
.about-hero .container {
  position: relative;
  z-index: 2;
}
.about-hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dt-taupe);
  margin-bottom: 16px;
}
.about-hero-headline {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 18px 0;
  color: var(--dt-grey-dark);
}
.about-hero-line1 {
  display: block;
  font-weight: 400;
  color: var(--dt-grey);
}
.about-hero-line2 {
  display: block;
}
.about-hero-headline em {
  font-style: italic;
  font-weight: 600;
  color: var(--dt-rose);
  position: relative;
}
.about-hero-headline em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(184,149,143,0.3);
  z-index: -1;
}
.about-hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--dt-grey);
  max-width: 480px;
  margin: 0 0 28px 0;
}
.about-hero-values {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.hero-value-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(184,149,143,0.2);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dt-grey-dark);
  transition: all 0.3s;
}
.hero-value-item:hover {
  background: #fff;
  border-color: var(--dt-rose);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.hero-value-item i {
  color: var(--dt-rose);
  font-size: 16px;
}
.about-hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.about-hero-stat {
  display: flex;
  flex-direction: column;
}
.about-hero-stat-num {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--dt-rose);
  line-height: 1;
}
.about-hero-stat-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dt-grey-light);
  margin-top: 4px;
}
.about-hero-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(0,0,0,0.12);
}
.about-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-hero-primary,
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-hero-primary {
  background: var(--dt-grey-dark);
  color: #fff;
  border: 2px solid var(--dt-grey-dark);
}
.btn-hero-primary:hover {
  background: var(--dt-taupe);
  border-color: var(--dt-taupe);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.btn-hero-secondary {
  background: transparent;
  color: var(--dt-grey-dark);
  border: 2px solid var(--dt-grey);
}
.btn-hero-secondary:hover {
  background: var(--dt-grey-dark);
  border-color: var(--dt-grey-dark);
  color: #fff;
}
.about-hero-visual {
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.about-hero-visual-inner {
  position: relative;
  max-width: 320px;
  padding: 40px 36px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 25px 60px rgba(0,0,0,0.06);
}
.about-hero-quote-mark {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  color: var(--dt-rose);
  opacity: 0.4;
  margin-bottom: -20px;
}
.about-hero-quote {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
  color: var(--dt-grey-dark);
  margin: 0 0 12px 0;
}
.about-hero-quote-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--dt-taupe);
  margin: 0;
  text-align: right;
}
.hero-accent-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: linear-gradient(135deg, var(--dt-rose) 0%, var(--dt-taupe) 100%);
  color: #fff;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(184,149,143,0.3);
}
.hero-accent-badge i {
  font-size: 18px;
}
.about-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dt-grey-light);
  text-decoration: none;
  z-index: 2;
  transition: color 0.3s;
}
.about-hero-scroll:hover {
  color: var(--dt-taupe);
}
.about-hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--dt-grey-light), transparent);
  opacity: 0.6;
}
.min-vh-75 {
  min-height: 55vh;
}
@media (max-width: 991px) {
  .about-hero {
    min-height: auto;
    padding: 80px 0 50px;
  }
  .about-hero-visual-inner {
    margin-top: 40px;
  }
  .about-hero-stats {
    gap: 18px;
    margin-bottom: 25px;
  }
  .about-hero-stat-num {
    font-size: 32px;
  }
  .about-hero-stat-divider {
    height: 40px;
  }
  .about-hero-values {
    gap: 12px;
    margin-bottom: 24px;
  }
  .hero-value-item {
    font-size: 13px;
    padding: 8px 14px;
  }
  .about-hero-cta {
    gap: 12px;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
  .hero-accent-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .about-hero-stats {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-hero-stat-divider {
    width: 40px;
    height: 1px;
  }
}
.page-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}
.page-hero p {
  font-size: 18px;
  color: var(--dt-grey);
  margin: 0;
}

/* About page - Vision, Mission, Values */
.about-vmv {
  padding: 60px 0;
  background: #fff;
}
.vmv-box {
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 35px 30px;
  height: 100%;
  transition: all 0.3s;
}
.vmv-box:hover {
  border-color: var(--dt-rose-light);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.vmv-box h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dt-grey-dark);
}
.vmv-box p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--dt-grey);
  margin-bottom: 12px;
}
.vmv-box p:last-child {
  margin-bottom: 0;
}
.vmv-values p {
  margin-bottom: 16px;
}

/* About page - Our Story */
.about-story {
  padding: 70px 0;
  background: var(--dt-white);
}
.about-section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--dt-grey-dark);
  text-align: center;
  margin-bottom: 40px;
}
.about-story-content {
  max-width: 900px;
  margin: 0 auto;
}
.about-story-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--dt-grey);
  text-align: justify;
  margin-bottom: 24px;
}
.about-story-content p:last-child {
  margin-bottom: 0;
}

/* About page - Service Vehicles */
.about-vehicles {
  padding: 70px 0 80px;
  background: #fff;
}
.vehicle-block {
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}
.vehicle-block:last-child {
  margin-bottom: 0;
}
.vehicle-brand {
  background: var(--dt-taupe);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.vehicle-brand-inner {
  text-align: center;
  padding: 40px 30px;
}
.vehicle-logo {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.vehicle-logo sup {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.9;
}
.vehicle-tagline {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.vehicle-content {
  background: #fff;
}
.vehicle-content-inner {
  padding: 45px 50px;
  height: 100%;
}
.vehicle-content-inner p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--dt-grey);
  margin-bottom: 25px;
}
.vehicle-content-inner .btn-learn-more {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid var(--dt-grey-dark);
  color: var(--dt-grey-dark);
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s;
}
.vehicle-content-inner .btn-learn-more:hover {
  background: var(--dt-grey-dark);
  color: #fff;
}
@media (max-width: 991px) {
  .vehicle-brand {
    min-height: 180px;
    padding: 30px 20px;
  }
  .vehicle-logo {
    font-size: 28px;
  }
  .vehicle-content-inner {
    padding: 35px 30px;
  }
}

/* About page - Founder */
.about-founder {
  padding: 80px 0;
  background: #fff;
}
.founder-content-inner {
  padding-right: 0;
}
.founder-accent {
  width: 60px;
  height: 3px;
  background: var(--dt-grey-dark);
  margin-bottom: 16px;
}
.founder-title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--dt-grey-dark);
  margin-bottom: 28px;
}
.founder-content-inner p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--dt-grey);
  margin-bottom: 20px;
}
.founder-content-inner p:last-of-type {
  margin-bottom: 28px;
}
.btn-founder-read {
  display: inline-block;
  padding: 12px 30px;
  background: var(--dt-grey-dark);
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0;
  transition: all 0.3s;
}
.btn-founder-read:hover {
  background: var(--dt-taupe);
  color: #fff !important;
}
.founder-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.founder-image-frame {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f0efed;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
@media (max-width: 991px) {
  .about-founder {
    padding: 60px 0;
  }
  .founder-content-inner {
    padding-right: 0;
  }
  .founder-image-wrap {
    order: -1;
  }
  .founder-image-frame {
    max-width: 100%;
    aspect-ratio: 4 / 5;
  }
}

/* About page - Testimonials */
.about-testimonials {
  padding: 80px 0;
  background: var(--dt-white);
}
.testimonials-title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--dt-grey-light);
  text-align: center;
  margin-bottom: 50px;
}
.testimonials-list {
  max-width: 800px;
  margin: 0 auto;
}
.testimonial-item {
  margin-bottom: 50px;
}
.testimonial-item:last-child {
  margin-bottom: 0;
}
.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--dt-grey);
  text-align: center;
  margin-bottom: 16px;
}
.testimonial-attribution {
  font-size: 14px;
  color: var(--dt-grey-light);
  text-align: right;
  margin-bottom: 0;
}
.btn-back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--dt-grey-dark);
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0;
  transition: all 0.3s;
}
.btn-back-to-top:hover {
  background: var(--dt-taupe);
  color: #fff !important;
}
.btn-back-to-top i {
  font-size: 18px;
}

/* Events list */
.page-hero-events .page-hero-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dt-taupe);
  margin-bottom: 8px;
}
.page-hero-events h1 {
  font-family: "Space Grotesk", "Inter", sans-serif;
}

.events-list {
  padding: 60px 0 80px;
}
.events-list .event-card {
  display: flex;
  flex-direction: row;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.events-list .event-card-link:hover {
  border-color: var(--dt-rose-light);
  box-shadow: 0 12px 40px rgba(184,149,143,0.12);
  transform: translateY(-4px);
}
.events-list .event-card-with-poster {
  flex-direction: column;
  padding: 0;
}
.events-list .event-card-poster {
  flex: none;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--dt-taupe);
}
.events-list .event-card-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.events-list .event-card-date-sm {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--dt-taupe);
  margin-bottom: 6px;
}
.events-list .event-card-left {
  flex: 0 0 140px;
  background: var(--dt-taupe);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.events-list .event-card-date {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.2;
}
.events-list .event-card-location {
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
}
.events-list .event-card-right {
  flex: 1;
  padding: 28px 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.events-list .event-card-right h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dt-grey-dark);
}
.events-list .event-card-right p {
  font-size: 14px;
  color: var(--dt-grey);
  margin-bottom: 16px;
  flex: 1;
  line-height: 1.5;
}
.events-list .event-card-tagline {
  font-style: italic;
  color: var(--dt-taupe) !important;
}
.events-list .event-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dt-rose);
  transition: gap 0.3s;
}
.events-list .event-card-link:hover .event-card-cta {
  gap: 10px;
}
.events-list .event-card-cta i {
  font-size: 12px;
  transition: transform 0.3s;
}
.events-list .event-card-link:hover .event-card-cta i {
  transform: translateX(4px);
}
.events-empty {
  text-align: center;
  padding: 80px 24px;
}
.events-empty-icon {
  font-size: 48px;
  color: var(--dt-rose-light);
  margin-bottom: 24px;
}
.events-empty h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 28px;
  margin-bottom: 12px;
}
.events-empty p {
  color: var(--dt-grey);
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .events-list .event-card {
    flex-direction: column;
  }
  .events-list .event-card-left {
    flex: none;
    min-height: 80px;
  }
}

/* Event poster (uploaded Canva design) */
.event-poster-wrap {
  max-width: 900px;
  margin: 0 auto 40px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.event-poster-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}
.event-hero-with-poster .event-hero-content {
  padding-top: 20px;
}
.event-banner-poster {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-banner-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Event hero - Celebration style (centered, light) */
.event-hero-celebration {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, #f8f6f4 0%, #fff 100%);
  position: relative;
}
.event-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(184,149,143,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.event-hero-content {
  position: relative;
  z-index: 1;
}
.event-hero-title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--dt-grey-dark);
  margin: 0 0 16px 0;
  line-height: 1.2;
}
.event-hero-meta {
  font-size: 16px;
  color: var(--dt-grey);
  margin: 0 0 12px 0;
}
.event-hero-tagline {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 20px;
  font-style: italic;
  color: var(--dt-taupe);
  margin: 0 0 32px 0;
}
.event-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.btn-event-tickets-off {
  padding: 14px 32px;
  background: var(--dt-grey);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  cursor: default;
  opacity: 0.9;
}
.event-see-other {
  font-size: 14px;
  color: var(--dt-rose);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}
.event-see-other:hover {
  color: var(--dt-rose-dark);
}

/* Event promo banner - Celebration (pink) */
.event-promo-banner {
  padding: 0;
  overflow: hidden;
}
.event-promo-celebration {
  background: linear-gradient(135deg, var(--dt-rose) 0%, var(--dt-rose-dark) 100%);
  padding: 60px 0;
  position: relative;
}
.event-promo-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.event-promo-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.event-promo-title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  font-style: italic;
  letter-spacing: -0.02em;
}
.event-promo-subtitle {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
}
.event-promo-price {
  background: rgba(255,255,255,0.2);
  padding: 16px 24px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
}
.event-promo-price span {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}
.event-promo-deco {
  position: absolute;
  bottom: -30px;
  left: 5%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Event info sections (Time & Location, About) */
.event-info-sections {
  padding: 70px 0 80px;
  background: #fff;
}
.event-info-block {
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.event-info-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.event-info-block h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dt-grey-dark);
  margin-bottom: 16px;
}
.event-info-block p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--dt-grey);
  margin: 0 0 8px 0;
}
.event-info-block p:last-child {
  margin-bottom: 0;
}

/* Event details page - Summit style (split layout) */
.event-details-page {
  padding: 60px 0 80px;
  min-height: 60vh;
}
.event-details-layout {
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0 4px 25px rgba(0,0,0,0.1);
  border-radius: 4px;
  overflow: hidden;
}
.event-details-panel {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
  background: #f5f5f5;
  border-right: 1px solid #e0e0e0;
}
.event-details-inner {
  padding: 50px 45px;
  height: 100%;
}
.event-details-inner h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dt-grey-dark);
  margin-bottom: 35px;
  line-height: 1.3;
}
.event-meta-item {
  margin-bottom: 28px;
}
.event-meta-item strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dt-grey);
  margin-bottom: 8px;
}
.event-meta-item p {
  font-size: 16px;
  color: var(--dt-grey-dark);
  margin: 0;
  line-height: 1.6;
}
.btn-event-details, .btn-event-register {
  display: inline-block;
  padding: 12px 28px;
  background: var(--dt-grey-dark);
  color: #fff;
  font-weight: 500;
  border-radius: 4px;
  margin-top: 10px;
  transition: all 0.3s;
}
.btn-event-details:hover, .btn-event-register:hover {
  background: var(--dt-taupe);
  color: #fff;
}
.event-banner {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
  background: #2c2c2c;
  position: relative;
  min-height: 400px;
}
.event-banner-inner {
  position: relative;
  height: 100%;
  min-height: 400px;
  padding: 50px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event-banner-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #f5d547;
  line-height: 1.3;
  margin-bottom: 20px;
}
.event-banner-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 25px;
  max-width: 400px;
}
.btn-event-register-alt {
  display: inline-block;
  padding: 12px 28px;
  background: #f5d547;
  color: #1a1a1a;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s;
}
.btn-event-register-alt:hover {
  background: #fff;
  color: #1a1a1a;
}
.event-banner-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  background: linear-gradient(135deg, rgba(245,213,71,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.event-description-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--dt-grey);
}
@media (max-width: 991px) {
  .event-details-panel, .event-banner {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .event-details-panel {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }
  .event-details-inner, .event-banner-inner {
    padding: 35px 25px;
  }
  .event-details-inner h1 {
    font-size: 24px;
  }
  .event-banner-content h2 {
    font-size: 22px;
  }
}

/* Coaching Services Pricing Cards */
.coaching-pricing-section {
  padding: 60px 0 80px;
}
.coaching-services-grid {
  max-width: 1100px;
  margin: 0 auto;
}
.coaching-service-card {
  background: #fff;
  border: 1px solid #1a1a1a;
  border-radius: 0;
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.coaching-service-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.coaching-service-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--dt-grey-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.coaching-service-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--dt-grey);
  margin-bottom: 12px;
  flex: 1;
}
.coaching-service-read-more {
  font-size: 14px;
  color: var(--dt-grey-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 20px;
  display: inline-block;
}
.coaching-service-read-more:hover {
  color: var(--dt-rose);
}
.coaching-service-divider {
  height: 1px;
  background: #1a1a1a;
  margin-bottom: 20px;
}
.coaching-service-schedule {
  font-size: 14px;
  color: var(--dt-grey);
  margin-bottom: 6px;
}
.coaching-service-duration {
  font-size: 14px;
  color: var(--dt-grey-dark);
  margin-bottom: 8px;
}
.coaching-service-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--dt-grey-dark);
  margin-bottom: 20px;
}
.btn-coaching-book {
  display: block;
  text-align: center;
  padding: 14px 24px;
  background: var(--dt-grey-dark);
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--dt-grey-dark);
  border-radius: 0;
  margin-bottom: 16px;
  transition: all 0.3s;
}
.btn-coaching-book:hover {
  background: var(--dt-taupe);
  border-color: var(--dt-taupe);
  color: #fff !important;
}
.coaching-service-explore {
  font-size: 14px;
  color: var(--dt-grey-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-block;
}
.coaching-service-explore:hover {
  color: var(--dt-rose);
}

/* Pricing - Datalani Technology style (white/black minimalist) */
.pricing-section {
  padding: 60px 0 80px;
}
.pricing-category-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--dt-grey-dark);
  text-align: center;
  margin: 60px 0 30px 0;
}
.pricing-category-title:first-of-type {
  margin-top: 0;
}
.pricing-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  border-color: #ccc;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.pricing-card.pricing-featured {
  border-color: var(--dt-grey-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.pricing-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #f0f0f0;
  color: var(--dt-grey-dark);
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.5px;
  border-radius: 4px 4px 0 0;
  margin: -40px -30px 20px -30px;
}
.pricing-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dt-grey-dark);
  margin-bottom: 20px;
  text-transform: capitalize;
}
.pricing-amount {
  margin-bottom: 15px;
}
.price-value {
  display: block;
  font-size: 42px;
  font-weight: 700;
  color: var(--dt-black);
  line-height: 1.1;
}
.price-period {
  font-size: 14px;
  color: var(--dt-grey);
  font-weight: 400;
}
.pricing-desc {
  font-size: 15px;
  color: var(--dt-grey);
  margin-bottom: 12px;
  line-height: 1.5;
}
.pricing-validity {
  font-size: 14px;
  color: var(--dt-grey);
  margin-bottom: 25px;
}
.btn-select {
  display: block;
  text-align: center;
  padding: 14px 32px;
  background: var(--dt-black);
  color: #fff !important;
  font-weight: 500;
  font-size: 16px;
  border-radius: 4px;
  transition: all 0.3s;
  margin-bottom: 20px;
}
.btn-select:hover {
  background: var(--dt-grey-dark);
  color: #fff !important;
}
.pricing-detail {
  font-size: 14px;
  color: var(--dt-grey);
  margin-bottom: 4px;
}
.pricing-discount {
  font-size: 14px;
  color: var(--dt-grey);
  margin-bottom: 0;
}
.pricing-category-tag {
  font-size: 13px;
  color: var(--dt-grey);
  margin-top: 10px;
  margin-bottom: 0;
}

/* Legacy pricing box (admin/fallback) */
.pricing-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
}
.pricing-box .badge { position: absolute; top: -10px; right: 20px; background: var(--dt-rose); color: #fff; padding: 4px 12px; font-size: 12px; }
.pricing-box h3 { font-size: 22px; margin-bottom: 20px; }
.pricing-box .price { font-size: 36px; font-weight: 700; margin-bottom: 5px; }
.pricing-box .price-desc { font-size: 14px; color: var(--dt-grey); margin-bottom: 25px; }
.btn-pricing { display: block; text-align: center; padding: 12px 24px; border: 2px solid var(--dt-grey); color: var(--dt-grey-dark); font-weight: 500; border-radius: 4px; }
.btn-pricing:hover { background: var(--dt-grey); color: #fff; }
.btn-pricing-featured { background: var(--dt-rose); border-color: var(--dt-rose); color: #fff; }

/* Contact section (inner page) - enhanced design */
.contact-section {
  background: linear-gradient(180deg, rgba(248, 246, 245, 0.6) 0%, rgba(250, 250, 250, 1) 100%);
  padding: 60px 0 80px;
}
.contact-section .contact-box,
.contact .contact-box {
  background: #fff;
  padding: 28px 24px;
  border-radius: 12px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(122, 107, 93, 0.08);
  border: 1px solid rgba(184, 149, 143, 0.15);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.contact-section .contact-box::before,
.contact .contact-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--dt-rose), var(--dt-taupe));
  border-radius: 4px 0 0 4px;
}
.contact-section .contact-box:hover,
.contact .contact-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(122, 107, 93, 0.12);
  border-color: rgba(184, 149, 143, 0.25);
}
.contact-section .contact-box i,
.contact .contact-box i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--dt-rose-light), var(--dt-rose));
  color: #fff;
  font-size: 22px;
  margin-bottom: 16px;
}
.contact-section .contact-box h3,
.contact .contact-box h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dt-grey-dark);
  margin: 0 0 10px 0;
}
.contact-section .contact-box p,
.contact .contact-box p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--dt-grey);
  margin: 0;
}
.contact-section .contact-box a,
.contact .contact-box a {
  color: var(--dt-rose);
  font-weight: 500;
  transition: color 0.2s;
}
.contact-section .contact-box a:hover,
.contact .contact-box a:hover {
  color: var(--dt-rose-dark);
}
.contact-form-header {
  margin-bottom: 24px;
}
.contact-form-title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--dt-grey-dark);
  margin: 0 0 8px 0;
}
.contact-form-subtitle {
  font-size: 15px;
  color: var(--dt-grey);
  margin: 0;
}
.contact-section .contact-form,
.contact .contact-form {
  background: #fff;
  padding: 40px 36px;
  border-radius: 12px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(122, 107, 93, 0.08);
  border: 1px solid rgba(184, 149, 143, 0.15);
}
.contact-section .contact-form .form-control,
.contact .contact-form .form-control {
  border-radius: 8px;
  border: 1px solid rgba(122, 107, 93, 0.2);
  padding: 14px 18px;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-section .contact-form .form-control:focus,
.contact .contact-form .form-control:focus {
  border-color: var(--dt-rose);
  box-shadow: 0 0 0 3px rgba(184, 149, 143, 0.15);
  outline: none;
}
.contact-section .contact-form button[type=submit],
.contact .contact-form button[type=submit] {
  background: linear-gradient(135deg, var(--dt-rose), var(--dt-rose-dark));
  border: 0;
  padding: 16px 36px;
  color: #fff !important;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(184, 149, 143, 0.35);
}
.contact-section .contact-form button[type=submit]:hover,
.contact .contact-form button[type=submit]:hover {
  background: linear-gradient(135deg, var(--dt-rose-dark), var(--dt-taupe));
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(184, 149, 143, 0.4);
}
.contact-section .contact-map-section h4 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--dt-grey-dark);
  margin-bottom: 20px;
}

/* Booking section */
.booking-section {
  padding: 60px 0 80px;
}
.booking-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.booking-card h3 {
  margin-bottom: 15px;
}
.booking-card .contact-form {
  margin-top: 30px;
}

/*====================================
# About Us
====================================*/
.about{
  background: #fff;
}
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-left: 28px;
  position: relative;
}
.about .content ul li + li {
  margin-top: 10px;
}
.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: var(--dt-rose);
  line-height: 1;
}
.about .content p:last-child {
  margin-bottom: 0;
}
.btn-learn-more {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: var(--dt-rose);
  margin-top: 6px;
  border: 2px solid var(--dt-rose);
}
.btn-learn-more:hover {
  background: var(--dt-rose);
  color: #fff;
  text-decoration: none;
}
.about .content .btn-learn-more {
  animation-delay: 0.7s;
}

.about-details{
  background: var(--dt-white);
}
.about-details .content {
  padding: 60px 100px 0 100px;
}
.about-details .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: var(--dt-grey-dark);
}
.about-details .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}
.about-details .content p {
  font-size: 15px;
  color: #807e7e;
}
.about-details .accordion-list {
  padding: 0 100px 60px 100px;
}
.about-details .accordion-list ul {
  padding: 0;
  list-style: none;
}
.about-details .accordion-list li + li {
  margin-top: 15px;
}
.about-details .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}
.about-details .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.about-details .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.about-details .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}
.about-details .accordion-list .icon-show {
  display: none;
}
.about-details .accordion-list a.collapsed {
  color: #343a40;
}
.about-details .accordion-list a.collapsed:hover {
  color: var(--dt-rose);
}

.about-details .accordion-list a.collapsed .icon-show {
  display: inline-block;
}
.about-details .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {
  .about-details .content, .about-details .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 992px) {
  .about-details .img {
    min-height: 400px;
  }
  .about-details .content {
    padding-top: 30px;
  }
  .about-details .accordion-list {
    padding-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .about-details .img {
    min-height: 200px;
  }
}

/*====================================
# Products
====================================*/
.products .box {
  padding: 30px;
  box-shadow: 0px 0 5px rgba(2, 28, 73, 0.08);
  border: 1px solid #faf9f9;
  text-align: center;
  transition: 0.3s;
  height: 100%;
}
.products .box img {
  padding: 30px 50px;
  transition: 0.5s;
  transform: scale(1.1);
}
.products .box h3 {
  font-size: 24px;
  color: var(--dt-grey-dark);
  font-weight: 700;
  margin-bottom: 18px;
}
.products .box:hover {
  box-shadow: 0px 0 30px rgba(0, 8, 20, 0.08);
}
.products .box:hover img {
  transform: scale(1);
}

/*====================================
# Features
====================================*/
.features{
  background: #faf9f9;
}
.features .image img {
  max-width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .features .content-wrapper {
    margin-bottom: 100px;
  }
}
.features .content-wrapper .single {
  display: flex;
  margin-bottom: 28px;
}

.features .content-wrapper .single .content h4 {
  margin-bottom: 8px;
}
.features .icon {
  max-width: 65px;
  width: 100%;
  height: 65px;
  font-size: 48px;
  margin-right: 20px;
  margin-bottom: 20px;
}
.features .icon-style {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.features .icon-style::after {
  content: '';
  position: absolute;
  background: #d9d7f8;
  opacity: .24;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 120px 8px;
}
.features .icon-style.-rotate-90::after {
  transform: rotate(-90deg);
}
.features .icon-style.-rotate-180::after {
  transform: rotate(-180deg);
}
.features .icon-style i {
  background: linear-gradient(180deg, var(--dt-rose) 0%, var(--dt-rose-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*====================================
# Contact
====================================*/
.contact .contact-box {
  color: #444444;
  background: #faf9f9;
  padding: 30px;
}
.contact .contact-box i {
  font-size: 38px;
  line-height: 0;
  color: var(--dt-rose);
}
.contact .contact-box h3 {
  font-size: 20px;
  color: var(--dt-grey-dark);
  font-weight: 700;
  margin: 20px 0 10px 0;
}
.contact .contact-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contact .contact-form {
  background: #faf9f9;
  padding: 30px;
  height: 100%;
}
.contact .contact-form input, .contact .contact-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}
.contact .contact-form input:focus, .contact .contact-form textarea:focus {
  border-color: var(--dt-rose);
}
.contact .contact-form input {
  padding: 10px 15px;
}
.contact .contact-form textarea {
  padding: 12px 15px;
}
.contact .contact-form button[type=submit] {
  background: var(--dt-rose);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .contact-form button[type=submit]:hover {
  background: var(--dt-rose-dark);
}

/*====================================
# Shop
====================================*/
.shop-section {
  background: #ffffff;
  padding: 60px 0;
}
.shop-grid {
  max-width: 1200px;
  margin: 0 auto;
}
.shop-product-card {
  display: block;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.shop-product-card:hover {
  border-color: var(--dt-blue);
  box-shadow: 0 8px 30px rgba(21, 101, 192, 0.15);
  transform: translateY(-4px);
}
.shop-product-image-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.shop-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.shop-product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--dt-grey-light);
  background: #f8f9fa;
}
.shop-product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.shop-product-badge.bg-success {
  background: #28a745 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}
.shop-product-info {
  padding: 20px;
}
.shop-product-title {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dt-navy);
  margin-bottom: 8px;
  line-height: 1.4;
}
.shop-product-category {
  font-size: 13px;
  margin-bottom: 10px;
}
.shop-product-category .badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
}
.shop-product-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--dt-blue);
  margin-bottom: 0;
}
.shop-empty {
  padding: 60px 0;
}

/* Shop Responsive */
@media (max-width: 768px) {
  .shop-section {
    padding: 40px 0;
  }
  .shop-product-info {
    padding: 16px;
  }
  .shop-product-title {
    font-size: 16px;
  }
  .shop-product-price {
    font-size: 15px;
  }
  .shop-product-image-wrap {
    aspect-ratio: 16 / 9;
    padding: 15px;
  }
}

/* Shop Product Detail */
.shop-product-section {
  background: #ffffff;
  padding: 40px 0;
}
.product-image-wrap {
  max-width: 450px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.product-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  display: block;
}
.product-placeholder {
  aspect-ratio: 1;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: var(--dt-grey-light);
}
.product-details {
  padding-left: 0;
}
.product-badge {
  display: inline-block;
  background: var(--dt-blue);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-title {
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--dt-navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.product-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--dt-blue);
  margin-bottom: 0;
}
.product-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--dt-grey);
}
.product-back-link {
  font-size: 14px;
  color: var(--dt-grey-dark);
}
.product-back-link:hover {
  color: var(--dt-rose);
}
.product-description h3,
.product-features h3,
.product-demo h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dt-navy);
  margin-bottom: 16px;
}
.product-features .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-features .feature-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--dt-grey-xlight);
  font-size: 15px;
  color: var(--dt-grey);
  display: flex;
  align-items: center;
}
.product-features .feature-list li:last-child {
  border-bottom: none;
}
.product-features .feature-list li i {
  font-size: 18px;
  flex-shrink: 0;
}
.product-demo {
  margin-top: 30px;
}
.product-demo h3 {
  margin-bottom: 20px;
}
.product-demo .ratio {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.product-demo video {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  max-height: 450px;
  object-fit: contain;
  background: #000;
}
.product-demo iframe {
  border: none;
}
.product-category {
  margin-bottom: 8px;
}
.product-category .badge {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
}
@media (max-width: 991px) {
  .product-details {
    padding-left: 0;
  }
}

/*====================================
# Footer
====================================*/
.footer {
  background: var(--dt-navy);
  padding: 0;
  font-size: 14px;
  color: #fff;
}
.footer .footer-headline {
  display: none;
}
.footer .footer-top {
  display: none;
}
.footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: #ffffff;
}
.footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #ffffff;
}

/*====================================
# Footer Redesign – Datalani Technology
====================================*/
/* Wave at top of footer */
.footer-wave {
  line-height: 0;
  overflow: hidden;
  margin-bottom: -2px;
}
.footer-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Main footer columns area */
.footer-main {
  background: var(--dt-navy-mid);
  padding: 70px 0 40px;
}
.footer-col-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(21, 101, 192, 0.35);
}
.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-link-list li {
  margin-bottom: 11px;
}
.footer-link-list a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-link-list a i {
  font-size: 10px;
  color: #1565C0;
  transition: transform 0.25s;
}
.footer-link-list a:hover {
  color: #ffffff;
  padding-left: 4px;
}
.footer-link-list a:hover i { transform: translateX(3px); }

/* About col */
.footer-about-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin: 16px 0 24px;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 4px;
}
.footer-logo-monogram {
  width: 44px;
  height: 44px;
  background: #1565C0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0;
}
.footer-logo-text {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.footer-logo-text small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Social circles */
.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
}
.footer-social-circle:hover {
  background: #1565C0;
  border-color: #1565C0;
  color: #fff;
  transform: translateY(-3px);
}

/* Contact info block */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item .ci-icon {
  width: 36px;
  height: 36px;
  background: rgba(21, 101, 192, 0.2);
  border: 1px solid rgba(21, 101, 192, 0.35);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #42A5F5;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item .ci-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}
.footer-contact-item .ci-text strong {
  display: block;
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.footer-contact-item .ci-text a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact-item .ci-text a:hover { color: #fff; }

/* Newsletter band */
.footer-newsletter {
  background: var(--dt-navy);
  border-top: 1px solid rgba(21, 101, 192, 0.25);
  padding: 40px 0;
}
.footer-newsletter h5 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.footer-newsletter p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 440px;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 12px 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(21, 101, 192, 0.4);
  border-right: none;
  border-radius: 6px 0 0 6px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input[type="email"]:focus { border-color: #1565C0; }
.newsletter-form button {
  padding: 12px 22px;
  background: #1565C0;
  color: #fff;
  border: none;
  border-radius: 0 6px 6px 0;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: #0D47A1; }

/* Footer bottom bar */
.footer-bottom {
  background: rgba(2, 8, 22, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 16px 0;
}
.footer-bottom .copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  padding-top: 0;
}
.footer-bottom .copyright a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.footer-bottom .copyright a:hover { color: #fff; }

@media (max-width: 768px) {
  .footer-main { padding: 50px 0 30px; }
  .newsletter-form { max-width: 100%; }
  .footer-col-title { margin-bottom: 16px; }
}

/*====================================
# Mobile Optimizations (small phones)
====================================*/
@media (max-width: 575px) {
  .container, .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
  .header {
    padding: 12px 0;
  }
  .header .logo .logo-text {
    font-size: 14px;
    letter-spacing: 0.5px;
  }
  .header .logo img,
  .header .logo .logo-img {
    max-height: 26px;
  }
  .Datalani Technology-logo {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }
  .dt-page-hero {
    padding: 90px 0 40px;
  }
  .page-hero {
    padding: 90px 0 40px;
  }
  .page-hero h1 {
    font-size: 28px;
    line-height: 1.2;
  }
  .page-hero p {
    font-size: 16px;
  }
  .hero {
    padding: 90px 0 50px;
    min-height: 65vh;
  }
  .hero-badge {
    font-size: 10px;
    letter-spacing: 1.5px;
  }
  .hero-headline {
    font-size: 1.85rem;
  }
  .hero-line1 {
    font-size: 0.55em;
  }
  .hero-subheadline {
    font-size: 15px;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .btn-hero-primary, .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    min-height: 48px;
  }
  .hero-scroll-indicator {
    bottom: 24px;
    font-size: 10px;
  }
  .intro {
    padding: 50px 0;
  }
  .intro-text {
    font-size: 15px;
    line-height: 1.7;
  }
  .about-hero {
    padding: 100px 0 50px;
  }
  .about-hero-headline {
    font-size: 1.9rem;
  }
  .about-hero-sub {
    font-size: 16px;
  }
  .about-hero-stat-num {
    font-size: 32px;
  }
  .about-hero-visual-inner {
    padding: 28px 24px;
  }
  .about-hero-quote {
    font-size: 18px;
  }
  .about-hero-scroll {
    bottom: 24px;
  }
  .about-section-title {
    font-size: 24px;
    margin-bottom: 28px;
  }
  .about-story-content p {
    font-size: 15px;
  }
  .vehicle-brand-inner {
    padding: 28px 20px;
  }
  .vehicle-logo {
    font-size: 24px;
  }
  .vehicle-content-inner {
    padding: 28px 20px;
  }
  .vehicle-content-inner p {
    font-size: 15px;
  }
  .founder-content-inner {
    padding: 40px 20px;
  }
  .founder-title {
    font-size: 22px;
  }
  .founder-content-inner p {
    font-size: 15px;
  }
  .btn-founder-read {
    width: 100%;
    text-align: center;
    padding: 14px;
    min-height: 48px;
  }
  .testimonials-title {
    font-size: 26px;
    margin-bottom: 36px;
  }
  .testimonial-text {
    font-size: 15px;
  }
  .btn-back-to-top {
    width: 100%;
    justify-content: center;
    padding: 14px;
    min-height: 48px;
  }
  .cta h2 {
    font-size: 24px;
  }
  .cta p {
    font-size: 15px;
  }
  .btn-book-now, .btn-learn-more {
    min-height: 48px;
    padding: 14px 24px;
  }
  .btn-cta {
    width: 100%;
    justify-content: center;
  }
  .footer .footer-headline {
    padding: 36px 0;
  }
  .footer .footer-headline h4 {
    font-size: 20px;
  }
  .footer .footer-headline p {
    font-size: 14px;
  }
  .footer .footer-top {
    padding: 40px 0 24px;
  }
  .footer .footer-top h4 {
    font-size: 15px;
  }
  .footer .footer-top .footer-data p {
    font-size: 13px;
  }
  .footer .copyright {
    padding-top: 24px;
    font-size: 13px;
  }
  .lets-chat-btn {
    bottom: 20px;
    right: max(16px, env(safe-area-inset-right));
    left: auto;
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }
  .lets-chat-btn .lets-chat-text {
    display: none;
  }
  .lets-chat-btn .lets-chat-icon {
    font-size: 24px;
  }
  .whatsapp-float {
    bottom: 20px;
    left: max(16px, env(safe-area-inset-left));
    width: 50px;
    height: 50px;
    font-size: 26px;
  }
  .back-to-top {
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
  }
  .services-tabs .nav-link {
    font-size: 11px;
    padding: 10px 12px;
  }
  .service-listing-card {
    padding: 24px 20px;
  }
  .service-listing-title {
    font-size: 20px;
  }
  .btn-service-primary {
    width: 100%;
    padding: 14px;
    min-height: 48px;
  }
  .coaching-service-card {
    padding: 28px 20px;
  }
  .coaching-service-title {
    font-size: 14px;
  }
  .btn-coaching-book {
    min-height: 48px;
    padding: 16px;
  }
  .pricing-card {
    padding: 28px 20px;
  }
  .pricing-title {
    font-size: 20px;
  }
  .btn-select {
    min-height: 48px;
    padding: 14px;
  }
  .shop-product-info {
    padding: 20px;
  }
  .shop-product-title {
    font-size: 18px;
  }
  .product-title {
    font-size: 24px;
  }
  .btn-add-to-cart {
    width: 100%;
    padding: 16px;
    min-height: 48px;
  }
  .contact .contact-form input,
  .contact .contact-form textarea {
    font-size: 16px;
  }
  .booking-section .form-control,
  .contact-form .form-control {
    font-size: 16px;
    min-height: 48px;
  }
  .contact-box {
    padding: 24px 20px;
  }
  .contact-box h3 {
    font-size: 18px;
  }
  .about-preview {
    padding: 50px 0;
  }
  .section-header {
    margin-bottom: 32px;
  }
  .section-headline {
    font-size: 22px;
    line-height: 1.3;
  }
  .about-preview-text {
    font-size: 15px;
  }
  .events-list .event-card-left {
    min-height: 70px;
    padding: 20px 16px;
  }
  .events-list .event-card-right {
    padding: 24px 20px;
  }
  .events-list .event-card-right h3 {
    font-size: 18px;
  }
  .event-hero-celebration,
  .event-hero-summit {
    padding: 80px 0 50px;
  }
  .event-hero-title {
    font-size: 24px;
  }
}

@media (max-width: 375px) {
  .header .logo .logo-text {
    font-size: 13px;
  }
  .Datalani Technology-logo {
    width: 30px;
    height: 30px;
  }
  .hero-headline {
    font-size: 1.6rem;
  }
  .about-hero-headline {
    font-size: 1.65rem;
  }
  .page-hero h1 {
    font-size: 24px;
  }
  .services-tabs .nav-link {
    font-size: 10px;
    padding: 8px 10px;
  }
}

@media (max-width: 991px) {
  .navbar-mobile ul {
    top: 60px;
    right: 12px;
    left: 12px;
    bottom: 12px;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .navbar-mobile a {
    padding: 14px 20px;
    font-size: 15px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .navbar-mobile .nav-cart {
    padding: 14px 20px;
  }
}

@media (max-width: 575px) {
  .navbar-mobile ul {
    top: 56px;
    right: 8px;
    left: 8px;
    bottom: 8px;
  }
}


/*====================================
# Hero V2 - Enterprise IT Company
====================================*/
.dt-hero-v2 {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #020c1e 0%, #041028 50%, #071d42 100%);
  display: flex;
  align-items: center;
  padding: 130px 0 0;
  overflow: hidden;
}
.dt-hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21,101,192,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,101,192,0.07) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 20%, rgba(0,0,0,0.8) 80%, transparent 100%);
  pointer-events: none;
}
.dt-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.5;
}
.dt-hero-orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(21,101,192,0.55) 0%, transparent 70%);
  top: -150px; right: -100px;
  animation: orbFloat 18s ease-in-out infinite;
}
.dt-hero-orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(66,165,245,0.3) 0%, transparent 70%);
  bottom: 80px; left: -80px;
  animation: orbFloat 24s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0,0); }
  33% { transform: translate(30px, -40px); }
  66% { transform: translate(-20px, 20px); }
}

/* Badge */
.dt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(21,101,192,0.18);
  border: 1px solid rgba(66,165,245,0.35);
  color: #90caf9;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.dt-hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #42A5F5;
  display: inline-block;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

/* Headline */
.dt-hero-v2-headline {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 22px 0;
}
.dt-hero-accent {
  background: linear-gradient(90deg, #42A5F5, #1565C0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

/* Sub */
.dt-hero-v2-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
  margin: 0 0 36px 0;
  max-width: 490px;
}

/* CTAs */
.dt-hero-v2-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.dt-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 32px;
  background: linear-gradient(135deg, #1565C0, #1976D2);
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(21,101,192,0.45);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.dt-hero-btn-primary:hover {
  background: linear-gradient(135deg, #0D47A1, #1565C0);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(21,101,192,0.55);
  color: #fff !important;
}
.dt-hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 28px;
  border: 1.5px solid rgba(66,165,245,0.4);
  color: #90caf9 !important;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}
.dt-hero-btn-ghost:hover {
  border-color: #42A5F5;
  color: #fff !important;
  background: rgba(66,165,245,0.1);
}

/* Trust row */
.dt-hero-v2-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.dt-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.dt-trust-item i { color: #42A5F5; font-size: 14px; }
.dt-trust-sep {
  width: 1px; height: 16px;
  background: rgba(255,255,255,0.18);
  margin: 0 6px;
}

/* Image panel */
.dt-hero-v2-img-panel {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
}
.dt-hero-v2-img {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  border: 1px solid rgba(66,165,245,0.2);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(21,101,192,0.2);
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* Code window placeholder */
.dt-hero-code-window {
  width: 100%;
  max-width: 520px;
  background: #0d1f3c;
  border-radius: 16px;
  border: 1px solid rgba(66,165,245,0.2);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  overflow: hidden;
}
.dt-hero-code-titlebar {
  background: #0a1628;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(66,165,245,0.12);
}
.dt-code-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.dt-code-dot--red    { background: #FF5F56; }
.dt-code-dot--yellow { background: #FFBD2E; }
.dt-code-dot--green  { background: #27C93F; }
.dt-code-filename {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  margin-left: auto;
  font-family: monospace;
}
.dt-hero-code-body {
  padding: 24px;
  margin: 0;
  background: transparent;
  font-size: 13.5px;
  line-height: 1.75;
  font-family: "Fira Code", "Cascadia Code", "Consolas", monospace;
  overflow-x: auto;
  color: #a8b4c8;
}
.dt-hero-code-body code {
  background: none;
  color: inherit;
  font-size: inherit;
}
.c-kw  { color: #c792ea; }
.c-cls { color: #82aaff; }
.c-str { color: #c3e88d; }
.c-fn  { color: #82aaff; }
.c-com { color: #546e7a; font-style: italic; }
.c-caret {
  display: inline-block;
  color: #42A5F5;
  animation: caretBlink 1s step-end infinite;
}
@keyframes caretBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Floating stat cards */
.dt-hero-stat-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(13,31,60,0.95);
  border: 1px solid rgba(66,165,245,0.3);
  border-radius: 14px;
  padding: 14px 18px;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  z-index: 5;
}
.dt-hero-stat-card--tl { top: -20px; left: -20px; }
.dt-hero-stat-card--br { bottom: 20px; right: -20px; }
.dt-hero-stat-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #1565C0, #42A5F5);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.dt-hero-stat-num {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.dt-hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* Bottom stats bar */
.dt-hero-v2-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(66,165,245,0.12);
  margin-top: 70px;
  padding: 30px 0;
}
.dt-hstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 40px;
}
.dt-hstat-num {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.dt-hstat-num sup {
  font-size: 14px;
  font-weight: 700;
  color: #42A5F5;
  vertical-align: top;
  margin-top: 6px;
}
.dt-hstat-label {
  font-size: 11.5px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.dt-hstat-divider {
  width: 1px;
  height: 36px;
  background: rgba(66,165,245,0.2);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .dt-hero-v2 { padding: 100px 0 0; min-height: auto; }
  .dt-hero-v2-img-panel { padding-bottom: 60px; }
  .dt-hero-stat-card--tl { top: -10px; left: 0; }
  .dt-hero-stat-card--br { bottom: 60px; right: 0; }
  .dt-hero-v2-headline { font-size: clamp(2rem, 6vw, 3rem); }
  .dt-hstat { padding: 0 20px; }
  .dt-hstat-num { font-size: 24px; }
}
@media (max-width: 576px) {
  .dt-hero-v2-ctas { flex-direction: column; }
  .dt-hero-btn-primary, .dt-hero-btn-ghost { width: 100%; justify-content: center; }
  .dt-hero-stat-card { display: none; }
  .dt-hstat { padding: 8px 16px; }
  .dt-hstat-divider { width: 30px; height: 1px; }
  .dt-hero-v2-stats-bar { flex-wrap: wrap; gap: 0; }
}
