/*
Theme Name: Drza - Ultra Modern Luxury Theme 2026 (#029394 Brand Teal Header & Footer, Centered Mobile Logo)
Theme URI: https://drza.me
Author: Drza Design Team
Description: Next-gen 2026 luxury tech & fashion-tailoring English WordPress theme for Drza. Features official #029394 brand teal header & footer, prominent centered logo on mobile, Mobile Hamburger Menu, alternating dark/light section rhythm, vector SVG icon badges, high-end modern card layouts, and 100% mobile-fit responsive layout.
Version: 11.0.0
Text Domain: drza
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --brand-teal: #029394;
  --brand-teal-hover: #017c7d;
  --brand-teal-dark: #015c5d;
  --brand-teal-glow: rgba(2, 147, 148, 0.4);
  --brand-teal-light: #e6f7f7;
  
  --cyan-accent: #06B6D4;
  --emerald-accent: #10B981;
  
  --bg-dark-hero: #070C18;
  --bg-dark-section: #091122;
  --bg-light-body: #F8FAFC;
  --bg-white-card: #FFFFFF;
  
  --border-light: #E2E8F0;
  --border-dark: rgba(255, 255, 255, 0.1);
  --border-teal-glow: rgba(2, 147, 148, 0.3);
  
  --text-heading: #0F172A;
  --text-body: #475569;
  --text-muted: #64748B;
  
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px -10px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 40px -15px rgba(2, 147, 148, 0.2);
}

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

html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
  position: relative;
  font-family: var(--font-sans);
  background-color: var(--bg-light-body);
  color: var(--text-body);
  line-height: 1.6;
  direction: ltr;
  text-align: left;
  -webkit-font-smoothing: antialiased;
}

section, header, footer {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

a {
  color: var(--brand-teal);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.container {
  width: 100%;
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 24px;
  box-sizing: border-box;
}

/* ==========================================================================
   1. Header - Official Brand Teal (#029394) Background for Desktop & Mobile
   ========================================================================== */
.header-main {
  background-color: #029394 !important;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  width: 100% !important;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.logo-img {
  height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  background: transparent;
  padding: 0;
  border: none;
}

.nav-links a {
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  padding: 6px 0;
  transition: all 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #070c18;
  background: transparent;
  font-weight: 700;
  box-shadow: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Mobile Hamburger Button */
.mobile-hamburger-btn {
  display: none;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.mobile-hamburger-btn:hover {
  background: rgba(0, 0, 0, 0.35);
}

/* Mobile Menu Overlay Drawer */
.mobile-menu-drawer {
  display: none;
  background: #029394;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  width: 100% !important;
}

.mobile-menu-drawer.open {
  display: block !important;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu-links a {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
}

.mobile-menu-links a:hover, .mobile-menu-links a.active {
  background: #ffffff;
  color: #029394;
}

/* Modern Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  max-width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-teal) 0%, #017c7d 100%);
  color: #ffffff !important;
  box-shadow: 0 8px 25px rgba(2, 147, 148, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(2, 147, 148, 0.6);
}

.btn-dark {
  background: #070c18;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-dark:hover {
  background: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #2dd4bf !important;
  border: 2px solid #029394;
}

.btn-outline:hover {
  background: #029394;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(2, 147, 148, 0.4);
  transform: translateY(-2px);
}

/* ==========================================================================
   2. Dark Hero Section (#070C18)
   ========================================================================== */
.hero-section {
  background: var(--bg-dark-hero);
  color: #ffffff;
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
  width: 100% !important;
}

.hero-glow-1 {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  max-width: 100vw;
  height: 500px;
  background: radial-gradient(circle, rgba(2, 147, 148, 0.25) 0%, rgba(6, 182, 212, 0.08) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 600px;
  max-width: 100vw;
  height: 600px;
  background: radial-gradient(circle, rgba(1, 92, 93, 0.3) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(2, 147, 148, 0.15);
  border: 1px solid var(--border-teal-glow);
  color: #2dd4bf;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  max-width: 100%;
  white-space: normal;
  line-height: 1.4;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #2dd4bf;
  border-radius: 50%;
  box-shadow: 0 0 12px #2dd4bf;
  flex-shrink: 0;
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: #ffffff;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #2dd4bf 0%, #029394 60%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 19px;
  color: #94a3b8;
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-trust-strip {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 55px;
  padding-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 600;
}

.trust-icon-badge {
  width: 24px;
  height: 24px;
  background: rgba(2, 147, 148, 0.25);
  color: #2dd4bf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}

.hero-mockup-wrapper {
  position: relative;
  width: 100%;
}

.hero-glass-card {
  background: linear-gradient(165deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 1px solid rgba(2, 147, 148, 0.35);
  border-radius: 36px;
  padding: 40px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  backdrop-filter: blur(20px);
  text-align: center;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  max-width: 100%;
}

.hero-glass-card:hover {
  transform: translateY(-6px);
}

.hero-brand-logo {
  width: 260px;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  margin-bottom: 24px;
}

.floating-status-pill {
  position: absolute;
  top: -15px;
  right: 10px;
  background: #0f172a;
  border: 1px solid var(--brand-teal);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  max-width: calc(100% - 20px);
  white-space: nowrap;
}

/* ==========================================================================
   3. Section Layouts & Alternating Dark/Light Cards
   ========================================================================== */
.section-padding {
  padding: 100px 0;
  width: 100% !important;
  overflow: hidden !important;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}

.section-tag, .section-badge {
  display: inline-block;
  color: #2dd4bf;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(2, 147, 148, 0.15);
  border: 1px solid rgba(2, 147, 148, 0.3);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
  max-width: 100%;
}

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* --- LIGHT SECTIONS --- */
.section-light {
  background: #ffffff;
  color: #0F172A;
}

.section-light .section-title {
  color: #0F172A;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.section-light .section-desc {
  color: #64748B;
  font-size: 18px;
}

.section-light .card-modern, .section-light .card {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05) !important;
  border-radius: 28px !important;
  padding: 36px 30px !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.section-light .card-modern:hover, .section-light .card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 25px 50px -15px rgba(2, 147, 148, 0.18) !important;
  border-color: rgba(2, 147, 148, 0.35) !important;
}

.section-light .card-title {
  color: #0F172A !important;
  font-size: 22px !important;
  font-weight: 800 !important;
}

.section-light .card-text {
  color: #475569 !important;
  font-size: 15px !important;
}

.section-light .card-icon {
  background: #e6f7f7 !important;
  border: 1px solid rgba(2, 147, 148, 0.25) !important;
  width: 62px !important;
  height: 62px !important;
  border-radius: 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 24px !important;
}

.section-light .card-icon svg {
  stroke: #029394 !important;
  width: 28px !important;
  height: 28px !important;
}

/* --- DARK SECTIONS --- */
.section-dark {
  background: #091122;
  color: #ffffff;
}

.section-dark .section-title {
  color: #ffffff;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.section-dark .section-desc {
  color: #94A3B8;
  font-size: 18px;
}

.section-dark .card-modern, .section-dark .card {
  background: linear-gradient(165deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.9) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
  border-radius: 28px !important;
  padding: 36px 30px !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.section-dark .card-modern:hover, .section-dark .card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 25px 50px rgba(2, 147, 148, 0.25) !important;
  border-color: rgba(2, 147, 148, 0.5) !important;
}

.section-dark .card-title {
  color: #ffffff !important;
  font-size: 22px !important;
  font-weight: 800 !important;
}

.section-dark .card-text {
  color: #cbd5e1 !important;
  font-size: 15px !important;
}

.section-dark .card-icon {
  background: linear-gradient(135deg, rgba(2, 147, 148, 0.25) 0%, rgba(6, 182, 212, 0.15) 100%) !important;
  border: 1px solid rgba(2, 147, 148, 0.35) !important;
  width: 62px !important;
  height: 62px !important;
  border-radius: 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 24px !important;
}

.section-dark .card-icon svg {
  stroke: #2dd4bf !important;
  width: 28px !important;
  height: 28px !important;
}

.card-num-badge {
  width: 54px !important;
  height: 54px !important;
  background: linear-gradient(135deg, #029394 0%, #015c5d 100%) !important;
  color: #ffffff !important;
  border-radius: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  margin-bottom: 24px !important;
  box-shadow: 0 8px 20px rgba(2, 147, 148, 0.3) !important;
}

/* ==========================================================================
   4. App Banner Section
   ========================================================================== */
.app-banner-section {
  background: linear-gradient(135deg, #070c18 0%, #014344 100%);
  color: #ffffff;
  border-radius: 36px;
  padding: 80px 70px;
  margin: 70px 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(2, 147, 148, 0.3);
  box-shadow: 0 35px 80px -20px rgba(2, 147, 148, 0.25);
  width: 100% !important;
}

.app-banner-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.app-banner-title {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.app-banner-desc {
  font-size: 18px;
  color: #cbd5e1;
  margin-bottom: 32px;
  line-height: 1.7;
}

.app-badges-flex {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.app-badge-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff !important;
  padding: 14px 26px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 15px;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.app-badge-link:hover {
  background: #029394;
  border-color: #029394;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(2, 147, 148, 0.4);
}

.app-badge-link svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.app-logo-display-card {
  background: #0f172a;
  border: 1px solid rgba(2, 147, 148, 0.3);
  padding: 28px;
  border-radius: 28px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  max-width: 100%;
}

.app-logo-img {
  width: 180px;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

.app-logo-caption {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   5. Clean Light Tables & Legal Containers
   ========================================================================== */
.custom-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid #E2E8F0;
}

.custom-table th,
.custom-table td {
  padding: 20px 28px;
  text-align: left;
  border-bottom: 1px solid #F1F5F9;
}

.custom-table th {
  background-color: #029394;
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
}

.custom-table td {
  color: #334155;
}

.custom-table tr:hover {
  background-color: #F8FAFC;
}

.legal-box {
  background: #FFFFFF !important;
  border-radius: 32px !important;
  padding: 50px !important;
  border: 1px solid #E2E8F0 !important;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04) !important;
  margin-bottom: 60px !important;
  color: #0F172A !important;
  width: 100% !important;
}

.legal-box h1 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 14px;
  color: #0F172A;
}

.legal-box h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 35px 0 18px;
  color: #015c5d;
  border-bottom: 2px solid #e6f7f7;
  padding-bottom: 12px;
}

.legal-box p, .legal-box ul {
  margin-bottom: 18px;
  color: #334155;
  font-size: 16px;
  line-height: 1.8;
}

.legal-box ul {
  padding-left: 24px;
}

/* Forms */
.form-group {
  margin-bottom: 22px;
  width: 100%;
}

.form-label {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0F172A;
  font-size: 14px;
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #CBD5E1;
  border-radius: 16px;
  font-family: inherit;
  font-size: 15px;
  transition: all 0.25s;
  background-color: #F8FAFC;
  color: #0F172A;
}

.form-control:focus {
  outline: none;
  border-color: #029394;
  background-color: #FFFFFF;
  box-shadow: 0 0 0 4px #e6f7f7;
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

/* ==========================================================================
   6. Footer - Official Brand Teal (#029394) Background
   ========================================================================== */
.footer-main {
  background-color: #029394 !important;
  color: #ffffff;
  padding: 90px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  width: 100% !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 19px;
  font-weight: 900;
  margin-bottom: 22px;
  letter-spacing: -0.3px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.9);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.footer-bottom a {
  color: #ffffff;
  font-weight: 600;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.compliance-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

/* ==========================================================================
   7. Mobile Header (Left-aligned Logo & Right-aligned Hamburger Button)
   ========================================================================== */
@media (max-width: 992px) {
  .nav-links {
    display: none !important;
  }

  .header-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative !important;
    padding: 12px 16px !important;
  }

  .logo-wrapper {
    position: relative !important;
    left: auto !important;
    transform: none !important;
    margin: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
  }

  .logo-img {
    height: 44px !important;
    width: auto !important;
  }

  .header-app-btn {
    display: none !important; /* REMOVED from top header on mobile per request */
  }

  .header-actions {
    margin-left: auto !important;
  }

  .mobile-hamburger-btn {
    display: inline-flex !important;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .hero-title {
    font-size: 36px !important;
    letter-spacing: -1px !important;
  }

  .hero-subtitle {
    font-size: 17px !important;
  }

  .app-banner-grid {
    grid-template-columns: 1fr !important;
    gap: 35px !important;
  }

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

@media (max-width: 768px) {
  .container {
    padding: 0 16px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .header-main {
    padding: 10px 0 !important;
  }

  .logo-img {
    height: 48px !important;
  }

  .section-padding {
    padding: 50px 0 !important;
  }

  .section-header {
    margin-bottom: 30px !important;
  }

  .section-title, .section-light .section-title, .section-dark .section-title {
    font-size: 26px !important;
    line-height: 1.25 !important;
  }

  .section-desc {
    font-size: 15px !important;
  }

  .grid-3, .grid-4 {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .hero-section {
    padding: 50px 0 70px !important;
  }

  .hero-pill {
    font-size: 12px !important;
    padding: 6px 14px !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    white-space: normal !important;
    width: 100% !important;
  }

  .hero-title {
    font-size: 30px !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 18px !important;
  }

  .hero-subtitle {
    font-size: 15px !important;
    margin-bottom: 25px !important;
  }

  .hero-ctas {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
  }

  .hero-ctas .btn {
    width: 100% !important;
  }

  .hero-trust-strip {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-top: 30px !important;
    padding-top: 20px !important;
  }

  .hero-glass-card {
    padding: 24px 16px !important;
    border-radius: 24px !important;
  }

  .floating-status-pill {
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
    margin: 0 auto 16px auto !important;
    display: inline-flex !important;
    font-size: 12px !important;
    padding: 6px 14px !important;
    white-space: normal !important;
    text-align: center !important;
  }

  .hero-brand-logo {
    width: 200px !important;
  }

  .card-modern, .card {
    padding: 24px 18px !important;
    border-radius: 20px !important;
  }

  .legal-box {
    padding: 24px 18px !important;
    border-radius: 20px !important;
  }

  .legal-box .grid-3 {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .form-group {
    margin-bottom: 16px !important;
  }

  .form-control {
    padding: 14px 16px !important;
    font-size: 14px !important;
  }

  .custom-table {
    display: block !important;
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    margin: 20px 0 !important;
    border-radius: 16px !important;
  }

  .custom-table th, .custom-table td {
    padding: 12px 14px !important;
    font-size: 13px !important;
    white-space: nowrap !important;
  }

  .app-banner-section {
    padding: 35px 18px !important;
    border-radius: 24px !important;
    margin: 35px 0 !important;
  }

  .app-banner-title {
    font-size: 26px !important;
  }

  .app-banner-desc {
    font-size: 15px !important;
  }

  .app-badges-flex {
    flex-direction: column !important;
    width: 100% !important;
  }

  .app-badge-link {
    width: 100% !important;
    justify-content: center !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

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

/* ==========================================================================
   8. Floating Scroll to Top Button
   ========================================================================== */
.scroll-to-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--brand-teal);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 25px rgba(2, 147, 148, 0.5), 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top-btn:hover {
  background-color: var(--brand-teal-hover);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 12px 30px rgba(2, 147, 148, 0.7), 0 6px 16px rgba(0, 0, 0, 0.25);
  border-color: #ffffff;
}

@media (max-width: 768px) {
  .scroll-to-top-btn {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}


/* DRZA ICON FIX - prevent SVG icons from expanding */
.card-icon {
  width: 62px !important;
  height: 62px !important;
  min-width: 62px !important;
  min-height: 62px !important;
  max-width: 62px !important;
  max-height: 62px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 62px !important;
}

.card-icon svg {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  min-height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  display: block !important;
  flex: 0 0 28px !important;
}

.card-icon svg path,
.card-icon svg circle,
.card-icon svg rect,
.card-icon svg line,
.card-icon svg polyline,
.card-icon svg polygon {
  vector-effect: non-scaling-stroke;
}

