/* ============================================
   110IDEAS.COM - VALIDWEB THEME
   Complete Brand Match with Nunito Font
   ============================================ */

/* --- Import Nunito Font --- */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap');

/* --- CSS Variables (110ideas Brand Colors) --- */
:root {
  /* Primary Brand Colors */
  --brand-navy: #0C0833;
  --brand-navy-light: #1e1a3a;
  --brand-navy-medium: #2a254a;
  --brand-orange: #E87A2D;
  --brand-orange-dark: #d16a22;
  --brand-orange-light: #f08a4a;
  --brand-gold: #F5A623;
  --brand-gold-light: #fae8c8;
  
  /* UI Colors */
  --white: #FFFFFF;
  --light-bg: #F9FAFF;
  --border-light: #E8ECF5;
  --text-dark: #0A0826;
  --text-body: #1F1F35;
  --text-muted: #6B6B82;
  --text-light: #A0A4B4;
  
  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(12, 8, 51, 0.06);
  --shadow-md: 0 8px 32px rgba(12, 8, 51, 0.08);
  --shadow-lg: 0 16px 48px rgba(232, 122, 45, 0.15);
  --shadow-xl: 0 24px 64px rgba(232, 122, 45, 0.20);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 76px; /* Height of fixed navbar */
}

/* --- Main Content Wrapper --- */
.main-content {
  flex: 1 0 auto;
  padding-top: 40px;
  padding-bottom: 40px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
}

a {
  color: var(--brand-orange);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--brand-orange-dark);
}

/* --- Container (Full Width) --- */
.container {
  max-width: 100% !important;
  padding-left: 40px;
  padding-right: 40px;
}

@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ============================================
   NAVBAR (Matching 110ideas.com)
   ============================================ */
.navbar {
  background: var(--brand-navy) !important;
  padding: 14px 0;
  box-shadow: 0 2px 30px rgba(12, 8, 51, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 76px;
}

.navbar .container {
  padding-left: 40px;
  padding-right: 40px;
}

.navbar-brand {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--white) !important;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand span {
  color: var(--brand-gold);
}

.navbar-brand img {
  max-height: 44px;
  width: auto;
}

.navbar-toggler {
  border: none;
  padding: 8px 12px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.3);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link {
  font-family: 'Nunito', sans-serif;
  color: rgba(255, 255, 255, 0.75) !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 1.2rem !important;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2.5px;
  background: var(--brand-gold);
  border-radius: 4px;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover {
  color: var(--white) !important;
}

.navbar-nav .nav-link:hover::after {
  width: 60%;
}

.navbar-nav .nav-link.active {
  color: var(--white) !important;
}

.navbar-nav .nav-link.active::after {
  width: 60%;
}

/* Navbar CTA Button */
.btn-nav-cta {
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-gold));
  color: var(--white) !important;
  border-radius: var(--radius-full);
  padding: 0.6rem 2rem !important;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(232, 122, 45, 0.3);
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 122, 45, 0.45);
  color: var(--white) !important;
}

.btn-nav-cta::after {
  display: none !important;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  border-radius: var(--radius-full);
  padding: 12px 32px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
  border: none;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232, 122, 45, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(232, 122, 45, 0.45);
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-orange-dark), var(--brand-orange));
}

.btn-gold {
  background: linear-gradient(135deg, var(--brand-gold), #d4951e);
  border: none;
  color: var(--brand-navy);
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.3);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(245, 166, 35, 0.45);
  color: var(--brand-navy);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--brand-navy);
  transform: translateY(-3px);
}

.btn-outline-brand {
  border: 2px solid var(--brand-orange);
  color: var(--brand-orange);
  background: transparent;
}

.btn-outline-brand:hover {
  background: var(--brand-orange);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

/* ============================================
   AUTH PAGES (Login/Register - Fixed Spacing)
   ============================================ */
.auth-page {
  padding-top: 30px;
  padding-bottom: 60px;
  min-height: calc(100vh - 76px - 400px);
}

.auth-card {
  max-width: 480px;
  margin: 20px auto;
  padding: 48px 40px 40px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.auth-card .auth-header {
  margin-bottom: 28px;
  text-align: center;
}

.auth-card .auth-header .auth-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(232, 122, 45, 0.1), rgba(245, 166, 35, 0.1));
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--brand-orange);
  margin-bottom: 16px;
}

.auth-card h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.auth-card .auth-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0;
}

.auth-card .form-control {
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  border: 2px solid var(--border-light);
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  transition: var(--transition);
  background: var(--white);
}

.auth-card .form-control:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 4px rgba(232, 122, 45, 0.1);
}

.auth-card .form-control::placeholder {
  color: var(--text-light);
  font-weight: 400;
}

.auth-card .form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.auth-card .btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0 20px;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-light);
}

.auth-divider span {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.auth-footer-link {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.auth-footer-link a {
  font-weight: 700;
  color: var(--brand-orange);
}

.auth-footer-link a:hover {
  color: var(--brand-orange-dark);
}

/* ============================================
   NAVBAR - WHITE BACKGROUND VERSION
   ============================================ */
.navbar {
    background: var(--white) !important;
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(12, 8, 51, 0.08);
    border-bottom: 1px solid var(--border-light);
    min-height: 76px;
}

.navbar .container {
    padding-left: 40px;
    padding-right: 40px;
}

.navbar-brand {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--brand-navy) !important;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    max-height: 150px;
    width: auto;
}

.navbar-toggler {
    border: 1px solid var(--border-light);
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(232, 122, 45, 0.2);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(12,8,51,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1.2rem !important;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2.5px;
    background: var(--brand-orange);
    border-radius: 4px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--brand-orange) !important;
}

.navbar-nav .nav-link:hover::after {
    width: 60%;
}

.navbar-nav .nav-link.active {
    color: var(--brand-orange) !important;
}

.navbar-nav .nav-link.active::after {
    width: 60%;
}

/* Navbar CTA Button - Orange version for white header */
.btn-nav-cta {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-gold));
    color: var(--white) !important;
    border-radius: var(--radius-full);
    padding: 0.6rem 2rem !important;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(232, 122, 45, 0.3);
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 122, 45, 0.45);
    color: var(--white) !important;
}

.btn-nav-cta::after {
    display: none !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-light) 50%, var(--brand-navy-medium) 100%);
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
  margin-top: -40px;
}

/* Hero Background Decorations */
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(232, 122, 45, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--white);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  line-height: 1.8;
  font-weight: 400;
}

.hero-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-tags span {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-family: 'Nunito', sans-serif;
}

.hero-tags span i {
  color: var(--brand-gold);
  margin-right: 8px;
}

/* Hero Badge Preview */
.hero-badge-preview {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  transition: var(--transition);
  max-width: 400px;
  margin: 0 auto;
}

.hero-badge-preview:hover {
  border-color: var(--brand-gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-badge-preview .badge-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(232, 122, 45, 0.2), rgba(245, 166, 35, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 3.5rem;
  color: var(--brand-gold);
}

.hero-badge-preview h3 {
  font-family: 'Nunito', sans-serif;
  color: var(--white);
  font-weight: 900;
  font-size: 1.8rem;
}

.hero-badge-preview .badge-sub {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.hero-badge-preview .badge-click {
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 24px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-badge-preview .badge-click i {
  color: var(--brand-gold);
  margin-right: 8px;
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
  font-family: 'Nunito', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.section-subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  font-weight: 400;
}

.section-divider {
  width: 70px;
  height: 4px;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-gold));
  border-radius: 4px;
  margin: 16px 0 24px;
}

.section-divider-center {
  width: 70px;
  height: 4px;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-gold));
  border-radius: 4px;
  margin: 16px auto 24px;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  border: none;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-gradient {
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-navy-light));
  color: var(--white);
  border: none;
}

.card-gradient:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

/* ============================================
   TRUST CARDS
   ============================================ */
.trust-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-light);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-gold));
  opacity: 0;
  transition: var(--transition);
}

.trust-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-orange);
  box-shadow: var(--shadow-md);
}

.trust-card:hover::before {
  opacity: 1;
}

.trust-card i {
  font-size: 2.8rem;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.trust-card h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-dark);
}

.trust-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
  font-weight: 400;
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-gold);
}

.feature-card .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(232, 122, 45, 0.08), rgba(245, 166, 35, 0.08));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--brand-orange);
  margin-bottom: 16px;
}

.feature-card h5 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
  font-weight: 400;
}

/* ============================================
   SEO CONTENT BLOCK
   ============================================ */
.seo-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.seo-block h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.seo-block h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  margin-top: 30px;
  color: var(--text-dark);
}

.seo-block p {
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 400;
}

.seo-highlight {
  background: var(--light-bg);
  border-left: 5px solid var(--brand-orange);
  border-radius: var(--radius-sm);
  padding: 24px 30px;
  margin: 24px 0;
}

.seo-highlight ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.seo-highlight ul li {
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-body);
  font-weight: 400;
}

.seo-highlight ul li i {
  color: var(--brand-orange);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-navy-light));
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 122, 45, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  font-weight: 400;
}

/* ============================================
   DASHBOARD STATS
   ============================================ */
.dashboard-stat {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  border-left: 5px solid var(--brand-orange);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.dashboard-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.dashboard-stat .stat-number {
  font-family: 'Nunito', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--brand-navy);
  line-height: 1;
}

.dashboard-stat .stat-label {
  font-family: 'Nunito', sans-serif;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 4px;
}

/* ============================================
   TABLES (Admin Style)
   ============================================ */
.table-modern {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.table-modern thead {
  background: var(--brand-navy);
  color: var(--white);
}

.table-modern thead th {
  font-family: 'Nunito', sans-serif;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.table-modern tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
  font-weight: 400;
}

.table-modern tbody tr:hover {
  background: var(--light-bg);
}

/* ============================================
   BADGE DISPLAY
   ============================================ */
.badge-display {
  background: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 2px dashed var(--border-light);
  text-align: center;
}

/* ============================================
   FOOTER (Matching 110ideas.com)
   ============================================ */
.footer-modern {
  background: var(--brand-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  width: 100%;
  margin-top: auto;
}

.footer-modern .footer-brand {
  font-family: 'Nunito', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
}

.footer-modern .footer-brand span {
  color: var(--brand-gold);
}

.footer-modern h5 {
  font-family: 'Nunito', sans-serif;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-modern ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-modern ul li {
  margin-bottom: 10px;
}

.footer-modern ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 400;
  font-size: 0.95rem;
}

.footer-modern ul li a:hover {
  color: var(--brand-gold);
  padding-left: 4px;
}

.footer-modern .footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.footer-modern .footer-contact li i {
  color: var(--brand-gold);
  width: 20px;
  font-size: 1rem;
}

.footer-modern .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-modern .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-modern .social-links a:hover {
  background: var(--brand-orange);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-modern .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-modern .footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-modern .footer-bottom .footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-modern .footer-bottom .footer-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-modern .footer-bottom .footer-links a:hover {
  color: var(--brand-gold);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  body {
    padding-top: 68px;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero {
    padding: 80px 0 60px;
    min-height: auto;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .seo-block {
    padding: 30px 24px;
  }
  
  .cta-section {
    padding: 30px 24px;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .auth-card {
    padding: 36px 30px 32px;
  }
  
  .footer-modern .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }
  
  .navbar {
    min-height: 60px;
    padding: 10px 0;
  }
  
  .navbar .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .navbar-brand {
    font-size: 1.4rem;
  }
  
  .navbar-brand img {
    max-height: 36px;
  }
  
  .main-content {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  .hero {
    padding: 50px 0 40px;
  }
  
  .hero h1 {
    font-size: 2.4rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-badge-preview {
    padding: 24px;
    max-width: 100%;
  }
  
  .hero-badge-preview .badge-icon {
    width: 70px;
    height: 70px;
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .seo-block {
    padding: 24px 16px;
  }
  
  .seo-block h2 {
    font-size: 1.6rem;
  }
  
  .cta-section {
    padding: 24px 20px;
  }
  
  .cta-section h2 {
    font-size: 1.6rem;
  }
  
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  
  .dashboard-stat .stat-number {
    font-size: 2rem;
  }
  
  .auth-card {
    padding: 28px 20px 24px;
    margin: 10px auto;
  }
  
  .auth-card h2 {
    font-size: 1.6rem;
  }
  
  .auth-card .auth-header .auth-icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
  
  .auth-page {
    padding-top: 15px;
    padding-bottom: 30px;
    min-height: auto;
  }
  
  .footer-modern {
    padding: 40px 0 0;
    margin-top: 0;
  }
  
  .footer-modern .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-modern .footer-bottom .footer-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-tags span {
    font-size: 0.8rem;
    padding: 4px 14px;
  }
  
  .trust-card {
    padding: 24px 20px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .btn-lg {
    padding: 12px 28px;
    font-size: 1rem;
  }
  
  .auth-card {
    padding: 20px 16px;
    border-radius: var(--radius-md);
  }
  
  .auth-card .btn {
    padding: 12px;
    font-size: 0.95rem;
  }
  
  .footer-modern .social-links a {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-brand-orange { color: var(--brand-orange); }
.text-brand-gold { color: var(--brand-gold); }
.text-brand-navy { color: var(--brand-navy); }
.bg-brand-navy { background-color: var(--brand-navy); }
.bg-brand-orange { background-color: var(--brand-orange); }
.bg-brand-gold { background-color: var(--brand-gold); }