/* Modern Enterprise Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* CSS Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Clean white hero (image-friendly on content area) */
.hero-white {
  background: #ffffff;
  color: var(--gray-800);
}
.hero-white .text-muted { color: var(--gray-600) !important; }
.hero-white .btn-ghost { color: var(--gray-800); border-color: var(--gray-300); }

/* --- V4 Redesign: Professional & Modern UX --- */
.hero-fullwidth {
  position: relative;
  padding: 8rem 0;
  background-image: linear-gradient(rgba(10, 15, 30, 0.6), rgba(10, 15, 30, 0.8)), url('../images/random/random_bk11.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
}
.hero-fullwidth .display-4 { font-weight: 600; }
.hero-fullwidth .lead { max-width: 700px; margin-left: auto; margin-right: auto; color: rgba(255,255,255,0.85); }

.stats-bar {
  background-color: var(--gray-50);
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.stat-item { text-align: center; }
.stat-item .count { font-size: 2.25rem; font-weight: 600; color: var(--primary-dark); }
.stat-item .label { font-size: 0.9rem; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.5px; }

.section-title { margin-bottom: 3rem; text-align: center; }
.section-title h2 { font-weight: 600; }
.section-title p { color: var(--gray-600); max-width: 600px; margin: 0.5rem auto 0; }

.domain-card {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.domain-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(17,24,39,0.1); }
.domain-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.domain-card:hover img { transform: scale(1.05); }
.domain-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
}
.domain-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}
.domain-card h3 { font-weight: 600; font-size: 1.25rem; }
.domain-card p { font-size: 0.9rem; opacity: 0.8; }

/* Neutral plain card */
.card-plain {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.04);
}

/* Media mockup container for hero visuals */
.media-mockup {
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
}
.media-mockup img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Minimal neutral hero (no image, no blue) */
.hero-minimal {
  position: relative;
  background: radial-gradient(1200px 600px at 10% -10%, #1f2937 0%, #111827 35%, #0b1220 100%);
  color: #e5e7eb;
}
.hero-minimal .display-5,
.hero-minimal h1,
.hero-minimal h2,
.hero-minimal h3 { color: #f9fafb; }
.hero-minimal .text-muted { color: #c7d2fe33 !important; }
.hero-minimal .btn-ghost { color: #e5e7eb; border-color: rgba(229,231,235,0.25); }

.theme-dark .hero-minimal {
  background: radial-gradient(1200px 600px at 10% -10%, #111827 0%, #0b1220 60%, #050a16 100%);
}

/* Space industry hero theme */
.hero-space {
    position: relative;
    background-image:
      linear-gradient(180deg, rgba(4, 6, 25, 0.70) 0%, rgba(8, 12, 34, 0.86) 40%, rgba(8, 12, 34, 0.96) 100%),
      url('images/random/random_bk1.jpg');
    background-size: cover;
    background-position: center;
    color: #eaf2ff;
}
.hero-space .display-5,
.hero-space h1,
.hero-space h2,
.hero-space h3 { color: #ffffff; }
.hero-space .text-muted { color: rgba(230, 238, 255, 0.9) !important; }
.hero-space .btn-gradient { box-shadow: 0 8px 24px rgba(34, 211, 238, 0.25); }
.hero-space .btn-ghost { border-color: rgba(255,255,255,0.5); color: #fff; }

@media (max-width: 991.98px) {
  .hero-space { background-position: 40% 50%; }
}

/* Dark mode keeps hero contrast without double darkening */
.theme-dark .hero-space {
    background-image:
      linear-gradient(180deg, rgba(2,4,14,0.55) 0%, rgba(4,8,22,0.76) 50%, rgba(3,6,18,0.9) 100%),
      url('images/random/random_bk1.jpg');
}

/* Design Tokens */
:root {
    /* Brand Colors */
    --primary: #1f2937; /* shift to neutral charcoal as primary for pages wanting less blue */
    --primary-light: #374151;
    --primary-dark: #111827;
    --secondary: #6b7280;
    --accent: #06b6d4; /* cyan, used sparingly */
    
    /* Neutral Palette */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Status Colors */
    --success: #059669;
    --warning: #d97706;
    --error: #dc2626;
    --info: #0284c7;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-display: 'Space Grotesk', var(--font-primary);
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Containers */
    --container-2xl: 1280px;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: var(--space-4);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: 1.875rem; }
h5 { font-size: 1.5rem; }
h6 { font-size: 1.25rem; }

p {
    margin-bottom: var(--space-4);
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Links */
a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover, a:focus {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Modern Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    padding: var(--space-4) 0;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

/* Enterprise Blue Navbar */
.navbar-primary {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%) !important;
    border-bottom: none;
    box-shadow: var(--shadow);
}
.navbar-primary .navbar-brand,
.navbar-primary .nav-link {
    color: var(--white) !important;
}
.navbar-primary .nav-link:hover,
.navbar-primary .nav-link.active {
    color: #e6f2ff !important;
    background: rgba(255,255,255,0.08);
}
.navbar-primary .dropdown-menu {
    background: var(--white);
}
.navbar-primary .btn.btn-light {
    background: var(--white);
    color: var(--primary-dark);
    border-color: transparent;
}
.navbar-primary .btn.btn-light:hover {
    background: #f0f6ff;
    color: var(--primary-dark);
}

/* Next-gen: glassmorphism + gradient borders + micro-interactions */
.glass-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 16px;
}

.u-gradient-border {
    position: relative;
    border-radius: 14px;
}
.u-gradient-border::before {
    content: "";
    position: absolute; inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, #7dd3fc, #818cf8, #a78bfa);
    z-index: 0;
}
.u-gradient-border > * { position: relative; z-index: 1; }

.btn-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #22d3ee 50%, #a78bfa 100%);
    color: #0b1020; border: none;
}
.btn-gradient:hover { filter: brightness(0.95); transform: translateY(-1px); }

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }

.hover-raise { transition: transform var(--transition), box-shadow var(--transition); }
.hover-raise:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.icon-bounce:hover { transform: translateY(-2px); }
.icon-bounce { transition: transform 180ms ease; }

.focus-ring {
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(34,211,238,0.35) !important;
}

@media (prefers-reduced-motion: reduce) {
    .hover-raise, .icon-bounce, .btn-gradient { transition: none !important; }
}

.navbar-brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary) !important;
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--primary-dark) !important;
}

.navbar-nav .nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--gray-700) !important;
    padding: var(--space-2) var(--space-4) !important;
    border-radius: var(--radius);
    transition: all var(--transition);
    margin: 0 var(--space-1);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
    background: var(--gray-50);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* Remove underline highlighter for specific items (Home, About) and use a soft hover instead */
.navbar-nav .nav-link.no-underline::after,
.navbar-nav .nav-link.dropdown-toggle.no-underline::after {
    display: none !important;
    width: 0 !important;
    content: '' !important;
}

.navbar-nav .nav-link.no-underline:hover,
.navbar-nav .nav-link.dropdown-toggle.no-underline:hover {
    background: var(--gray-100) !important;
    color: var(--primary) !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transform: translateY(-1px);
}

/* Also remove any native underline decorations */
.navbar-nav .nav-link.no-underline,
.navbar-nav .nav-link.no-underline:hover,
.navbar-nav .nav-link.no-underline:focus,
.navbar-nav .nav-link.no-underline:active,
.navbar-nav .nav-link.dropdown-toggle.no-underline,
.navbar-nav .nav-link.dropdown-toggle.no-underline:hover,
.navbar-nav .nav-link.dropdown-toggle.no-underline:focus,
.navbar-nav .nav-link.dropdown-toggle.no-underline:active {
    text-decoration: none !important;
}

.dropdown-menu {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: var(--space-2);
    margin-top: var(--space-2);
}

.dropdown-item {
    font-family: var(--font-primary);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    color: var(--gray-700);
}

.dropdown-item:hover {
    background: var(--gray-50);
    color: var(--primary);
}

/* Fixed navbar spacing */
body {
    padding-top: 80px;
}

/* Modern Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: var(--space-20) 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.1;
}

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

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: var(--space-6);
    color: var(--white);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 400;
    margin-bottom: var(--space-8);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Modern Search Form */
.search-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-xl);
    margin-top: var(--space-12);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.search-form .form-control,
.search-form .form-select {
    height: 56px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    padding: var(--space-4);
    background: var(--white);
    transition: all var(--transition);
}

.search-form .form-control:focus,
.search-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgb(0 102 204 / 0.1);
    outline: none;
}

.search-form .form-label {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: var(--space-2);
    font-size: 0.875rem;
}

.search-btn {
    height: 56px;
    padding: 0 var(--space-6);
    background: var(--primary);
    border: none;
    border-radius: var(--radius-md);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

.search-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

/* Company Profile Styles */
.company-profile-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: var(--space-16) 0 var(--space-12);
    position: relative;
    overflow: hidden;
}

.company-profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.company-banner {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-bottom: var(--space-8);
}

.company-banner img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.company-logo-overlay {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    background: var(--white);
    padding: var(--space-3);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    border: 2px solid var(--gray-200);
}

.company-logo-overlay img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.company-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: var(--space-8) var(--space-6) var(--space-6);
}

.company-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--space-2);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.company-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--space-4);
}

.company-badges {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.company-badge {
    background: var(--primary);
    color: var(--white);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.nav-tabs {
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: var(--space-8);
}

.nav-tabs .nav-link {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--gray-600);
    border: none;
    border-radius: var(--radius) var(--radius) 0 0;
    padding: var(--space-4) var(--space-6);
    margin-right: var(--space-2);
    transition: all var(--transition);
}

.nav-tabs .nav-link:hover {
    color: var(--primary);
    background: var(--gray-50);
}

.nav-tabs .nav-link.active {
    color: var(--primary);
    background: var(--white);
    border-bottom: 2px solid var(--primary);
}

.tab-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow);
}

.info-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.info-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.info-card h3 {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--gray-900);
    font-size: 1.25rem;
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--gray-200);
}

.info-card h3 span {
    color: var(--primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.contact-item {
    background: var(--gray-50);
    padding: var(--space-4);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.contact-item label {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.875rem;
    margin-bottom: var(--space-1);
    display: block;
}

.contact-item p,
.contact-item a {
    color: var(--gray-600);
    margin: 0;
    font-size: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-4);
    margin: var(--space-6) 0;
}

.stat-card {
    background: var(--primary);
    color: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-card h6 {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: var(--space-2);
}

.stat-card p {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: var(--white);
}

/* Modern Cards */
.company-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid var(--gray-200);
    height: 100%;
}

.company-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.company-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: var(--gray-100);
}

.company-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.company-card:hover .company-card-image img {
    transform: scale(1.05);
}

.company-card-body {
    padding: var(--space-6);
}

.company-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
    line-height: 1.3;
}

.company-card-text {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.company-card-footer {
    padding: var(--space-4) var(--space-6);
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

/* Modern Buttons */
.btn {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.875rem;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: all var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1.5;
    position: relative;
    white-space: nowrap;
}

.btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-700);
    border-color: var(--gray-300);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
    color: var(--gray-800);
    transform: translateY(-1px);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: 0.75rem;
    border-radius: var(--radius-sm);
}

/* Modern Forms */
.form-control {
    font-family: var(--font-primary);
    font-size: 1rem;
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: var(--white);
    transition: all var(--transition);
    color: var(--gray-700);
    width: 100%;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgb(0 102 204 / 0.1);
    outline: none;
}

.form-control::placeholder {
    color: var(--gray-400);
}

.form-label {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: var(--space-2);
    font-size: 0.875rem;
    display: block;
}

.form-select {
    font-family: var(--font-primary);
    font-size: 1rem;
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: var(--white);
    transition: all var(--transition);
    color: var(--gray-700);
    cursor: pointer;
}

.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgb(0 102 204 / 0.1);
    outline: none;
}

/* Modern Modals */
.modal-content {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.modal-header {
    background: var(--primary);
    color: var(--white);
    border-bottom: none;
    padding: var(--space-6);
}

.modal-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.5rem;
}

.modal-body {
    padding: var(--space-6);
}

.modal-footer {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    padding: var(--space-4) var(--space-6);
}

/* Modern Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-16) 0 var(--space-8);
}

/* Blue footer theme */
.footer-primary {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #e6f2ff;
}
.footer-primary a { color: #e6f2ff; }
.footer-primary a:hover { color: #ffffff; }
.footer-primary .copy-right p { color: #e6f2ff; }

.footer h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.footer a {
    color: var(--gray-300);
    transition: color var(--transition);
}

/* Dark theme support */
.theme-dark {
    --bg: #0b1020;
    --text: #e6eaf3;
    --card: #131a2a;
}
.theme-dark body, body.theme-dark { background: var(--bg); color: var(--text); }
.theme-dark .navbar-primary {
    background: linear-gradient(135deg, #0f172a 0%, #111827 100%) !important;
}
.theme-dark .footer-primary {
    background: linear-gradient(180deg, #0f172a 0%, #0b1323 100%);
}
.theme-dark .glass-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }
.theme-dark .navbar-primary .btn.btn-light { color: #0ea5e9; }

.footer a:hover {
    color: var(--white);
}

/* Neutral-first helpers */
.btn-neutral {
    background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.06);
}
.btn-neutral:hover { filter: brightness(1.05); transform: translateY(-1px); }

.text-accent { color: var(--accent) !important; }
.icon-neutral { color: #9ca3af !important; }

/* Utility Classes */
.container-fluid {
    max-width: var(--container-2xl);
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--space-1) !important; }
.mb-2 { margin-bottom: var(--space-2) !important; }
.mb-3 { margin-bottom: var(--space-3) !important; }
.mb-4 { margin-bottom: var(--space-4) !important; }
.mb-5 { margin-bottom: var(--space-5) !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: var(--space-1) !important; }
.mt-2 { margin-top: var(--space-2) !important; }
.mt-3 { margin-top: var(--space-3) !important; }
.mt-4 { margin-top: var(--space-4) !important; }
.mt-5 { margin-top: var(--space-5) !important; }

.py-1 { padding-top: var(--space-1) !important; padding-bottom: var(--space-1) !important; }
.py-2 { padding-top: var(--space-2) !important; padding-bottom: var(--space-2) !important; }
.py-3 { padding-top: var(--space-3) !important; padding-bottom: var(--space-3) !important; }
.py-4 { padding-top: var(--space-4) !important; padding-bottom: var(--space-4) !important; }
.py-5 { padding-top: var(--space-5) !important; padding-bottom: var(--space-5) !important; }

/* Additional spacing utilities used by homepage */
.py-6 { padding-top: var(--space-6) !important; padding-bottom: var(--space-6) !important; }
.mt-6 { margin-top: var(--space-6) !important; }

@media (min-width: 992px) {
  /* Map lg:py-7 to closest token (space-8) */
  .py-lg-7 { padding-top: var(--space-8) !important; padding-bottom: var(--space-8) !important; }
}

/* Accessibility helpers */
.visually-hidden {
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
    border: 0; padding: 0; margin: -1px;
}

/* Feedback states */
.loading-state {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--gray-600);
}
.loading-spinner {
    width: 1.25rem; height: 1.25rem;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.empty-state,
.error-state {
    border: 1px dashed var(--gray-300);
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    padding: var(--space-8);
    text-align: center;
    color: var(--gray-600);
}
.error-state { border-color: var(--error); background: #fff5f5; color: var(--error); }

/* Filters panel */
.filters-panel {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    box-shadow: var(--shadow-sm);
}
.filters-panel .filters-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: var(--space-3);
}
.filters-panel .filters-body { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-3); }

/* Domain/Subdomain chips (selection preview and summaries) */
.dp-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 9px; /* compact, a bit wider */
    margin: 0 8px 8px 0;
    background: #ffffff; /* white pill */
    border: 1px solid #d8e6ff; /* subtle blue outline */
    border-radius: var(--radius-full);
    color: #334155; /* slate ink */
    font-size: 0.75rem; /* ~12px */
    font-weight: 500; /* medium like mock */
    line-height: 1.15;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}
.dp-chip .ico { color: #1d4ed8; font-size: 0.85em; line-height: 1; } /* smaller icon */
.dp-chip .lbl { display: inline-block; max-width: 28ch; overflow: hidden; text-overflow: ellipsis; }
.dp-chip:hover { background: #f8fbff; border-color: #c9dcff; box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06); transform: translateY(-1px); }
.dp-chip:active { transform: translateY(0); box-shadow: 0 1px 3px rgba(15,23,42,0.08); }

/* Chip container layout for clean wrapping */
#dp_selected_summary, #dp_selection_preview {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

/* Dark theme for chips */
.theme-dark .dp-chip {
    background: #0f172a; /* darker pill */
    border-color: #1e293b;
    color: #e5e7eb;
}
.theme-dark .dp-chip .ico { color: #60a5fa; }
.theme-dark .dp-chip:hover { background: #111b2e; border-color: #244361; box-shadow: 0 2px 6px rgba(2,6,23,0.5); }

/* Breadcrumbs */
.breadcrumb {
    display: flex; flex-wrap: wrap; gap: var(--space-2);
    list-style: none; padding: 0; margin: 0 0 var(--space-4) 0;
    color: var(--gray-600);
}
.breadcrumb a { color: var(--gray-600); }
.breadcrumb a:hover { color: var(--primary); text-decoration: underline; }
.breadcrumb .separator { color: var(--gray-400); }

/* Modern table */
.table-modern {
    width: 100%; border-collapse: separate; border-spacing: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.table-modern thead th {
    background: var(--gray-50);
    color: var(--gray-800);
    font-weight: 600;
    padding: var(--space-3) var(--space-4);
    border-bottom: 1px solid var(--gray-200);
}
.table-modern tbody td {
    padding: var(--space-3) var(--space-4);
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
}
.table-modern tbody tr:hover { background: var(--gray-50); }

/* Pagination */
.pagination-modern { display: flex; align-items: center; gap: var(--space-2); }
.pagination-modern .page-btn {
    min-width: 2.25rem; height: 2.25rem;
    padding: 0 var(--space-2);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--gray-700);
}

/* Enterprise-Grade Hero Section */
.hero-enterprise {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.95) 0%, 
        rgba(30, 41, 59, 0.9) 50%, 
        rgba(51, 65, 85, 0.85) 100%), 
        url('../images/random/random_bk10.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-enterprise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-enterprise .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-enterprise h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-enterprise .lead {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

/* Premium Button Styles */
.btn-premium {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    color: white;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    color: white;
    text-decoration: none;
}

.btn-outline-premium {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-premium:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0.8;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

/* Enterprise Stats Bar */
.stats-enterprise {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 4rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.stat-enterprise {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.stat-enterprise:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.stat-enterprise .count {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-enterprise .label {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-enterprise .description {
    font-size: 0.75rem;
    color: var(--gray-500);
    line-height: 1.4;
}

/* Enterprise Section Styling */
.section-enterprise {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Premium Domain Cards */
.domain-card-premium {
    position: relative;
    display: block;
    height: 350px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-100);
}

.domain-card-premium:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    text-decoration: none;
}

.domain-card-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.domain-overlay-premium {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.8) 0%, 
        rgba(30, 41, 59, 0.7) 50%, 
        rgba(59, 130, 246, 0.6) 100%);
    transition: all 0.3s ease;
}

.domain-card-premium:hover .domain-overlay-premium {
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.9) 0%, 
        rgba(30, 41, 59, 0.8) 50%, 
        rgba(59, 130, 246, 0.7) 100%);
}

.domain-content-premium {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    color: white;
    z-index: 2;
}

.domain-content-premium h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.domain-content-premium p {
    font-size: 0.875rem;
    opacity: 0.95;
    margin: 0;
    color: white;
    line-height: 1.5;
}

.domain-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.domain-card-premium:hover .domain-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Premium Search Section */
.search-enterprise {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 5rem 0;
}

.search-card-premium {
    background: white;
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.search-card-premium:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.form-control-premium {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--gray-50);
}

.form-control-premium:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: white;
    outline: none;
}

/* Features Grid */
.features-enterprise {
    padding: 5rem 0;
    background: white;
}

.feature-card-premium {
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

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

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card-premium:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card-premium h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.feature-card-premium p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Next-Gen Modern Hero with Integrated Search */
.hero-nextgen {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, 
        rgba(6, 182, 212, 0.95) 0%, 
        rgba(59, 130, 246, 0.9) 50%, 
        rgba(139, 92, 246, 0.85) 100%), 
        url('../images/random/random_bk10.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-nextgen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
    z-index: 1;
}

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

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-content-left h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content-left .lead {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
}

.hero-search-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--gray-800);
}

.hero-search-card h3 {
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.search-input-modern {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-input-modern input,
.search-input-modern select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.search-input-modern input:focus,
.search-input-modern select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    outline: none;
}

.search-input-modern label {
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    background: white;
    padding: 0 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

.btn-search-modern {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    border-radius: 1rem;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-search-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fab {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.fab:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

/* Modern Stats with Animation */
.stats-modern {
    background: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.stats-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    opacity: 0.5;
}

.stat-modern {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-100);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.stat-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.stat-modern .count {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #06b6d4, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-modern .label {
    font-size: 1rem;
    color: var(--gray-800);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-modern .description {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.4;
}

/* Dynamic Domain Grid */
.domains-modern {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.domain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.domain-card-modern {
    position: relative;
    height: 400px;
    border-radius: 1.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.domain-card-modern:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.domain-card-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.domain-card-modern:hover img {
    transform: scale(1.15);
}

.domain-overlay-modern {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(6, 182, 212, 0.8) 0%, 
        rgba(59, 130, 246, 0.7) 50%, 
        rgba(139, 92, 246, 0.6) 100%);
    transition: all 0.4s ease;
}

.domain-card-modern:hover .domain-overlay-modern {
    background: linear-gradient(135deg, 
        rgba(6, 182, 212, 0.9) 0%, 
        rgba(59, 130, 246, 0.8) 50%, 
        rgba(139, 92, 246, 0.7) 100%);
}

.domain-content-modern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
    z-index: 3;
}

.domain-content-modern h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: white;
}

.domain-content-modern p {
    font-size: 1rem;
    opacity: 0.95;
    margin: 0;
    color: white;
    line-height: 1.5;
}

.domain-icon-modern {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.domain-card-modern:hover .domain-icon-modern {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.1) rotate(5deg);
}

/* Professional White Hero */
.hero-professional {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-professional::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(139, 92, 246, 0.02) 100%);
    z-index: 1;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 70vh;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-content .subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary-modern {
    background: var(--gray-900);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-modern:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    color: white;
    text-decoration: none;
}

.btn-secondary-modern {
    background: white;
    color: var(--gray-700);
    padding: 1rem 2rem;
    border: 2px solid var(--gray-200);
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary-modern:hover {
    border-color: var(--gray-300);
    background: var(--gray-50);
    transform: translateY(-2px);
    color: var(--gray-800);
    text-decoration: none;
}

.search-card-modern {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.search-card-modern:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.search-card-modern h3 {
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.input-group-modern {
    margin-bottom: 1.5rem;
}

.input-group-modern label {
    display: block;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.input-group-modern input,
.input-group-modern select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: var(--gray-800);
}

.input-group-modern input:focus,
.input-group-modern select:focus {
    border-color: var(--gray-400);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
    outline: none;
}

.btn-search-professional {
    width: 100%;
    padding: 1.25rem;
    background: var(--gray-900);
    border: none;
    border-radius: 0.75rem;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-search-professional:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Professional Stats */
.stats-professional {
    background: white;
    padding: 4rem 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.stat-professional {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-professional .count {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-professional .label {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-professional .description {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.4;
}

/* Clean Domain Cards */
.domains-professional {
    padding: 5rem 0;
    background: var(--gray-50);
}

.domain-card-clean {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    height: 100%;
}

.domain-card-clean:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--gray-300);
    text-decoration: none;
}

.domain-card-clean img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.domain-card-clean:hover img {
    transform: scale(1.05);
}

.domain-card-clean .card-body {
    padding: 2rem;
}

.domain-card-clean h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.domain-card-clean p {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.domain-icon-clean {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.domain-card-clean:hover .domain-icon-clean {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .search-card-modern {
        padding: 2rem;
    }
}
.pagination-modern .page-btn[aria-current="page"],
.pagination-modern .page-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.pagination-modern .page-btn:hover { background: var(--gray-50); }

/* Results layout helpers */
.results-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--space-4); }
.results-toolbar { display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; justify-content: space-between; margin-bottom: var(--space-4); }

/* Modern Visible Header */
.navbar-space {
    background: #0f172a !important;
    border-bottom: 4px solid #3b82f6 !important;
    padding: 1rem 0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    z-index: 1050 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
}

.navbar-space-bg {
    display: none;
}

.navbar-space .navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: white !important;
}

.brand-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 1.75rem;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff !important;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.025em;
    text-decoration: none !important;
}

.brand-subtitle {
    font-size: 1rem;
    color: #e2e8f0 !important;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.025em;
}

.nav-link-space {
    color: #ffffff !important;
    font-weight: 800 !important;
    padding: 1rem 1.5rem !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    margin: 0 0.25rem !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8) !important;
    font-size: 1.1rem !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.nav-link-space:hover,
.nav-link-space.active {
    color: white !important;
    background: rgba(59, 130, 246, 0.3) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4) !important;
}

.dropdown-space {
    background: #1e293b !important;
    border: 2px solid rgba(59, 130, 246, 0.4) !important;
    border-radius: 16px !important;
    margin-top: 0.75rem !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3) !important;
}

.dropdown-space .dropdown-item {
    color: #f1f5f9 !important;
    padding: 1rem 1.5rem !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

.dropdown-space .dropdown-item:hover {
    background: rgba(59, 130, 246, 0.3) !important;
    color: white !important;
    transform: translateX(8px) !important;
}

.btn-space-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    border: none !important;
    color: white !important;
    font-weight: 800 !important;
    padding: 1rem 2rem !important;
    border-radius: 16px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    font-size: 1rem !important;
}

.btn-space-primary:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.5) !important;
    color: white !important;
}

.btn-space-ghost {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: #f1f5f9 !important;
    font-weight: 700 !important;
    padding: 0.875rem 1.25rem !important;
    border-radius: 16px !important;
    transition: all 0.3s ease !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

.btn-space-ghost:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    color: white !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2) !important;
}

.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    font-size: 1.5rem !important;
    padding: 0.75rem !important;
    border-radius: 12px !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.4) !important;
}

.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%28255, 255, 255, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 1.5rem !important;
    height: 1.5rem !important;
}

.pagination-modern .page-btn[aria-current="page"],
.pagination-modern .page-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.pagination-modern .page-btn:hover { background: var(--gray-50); }

/* Hero Section Redesigned */
.hero-section-redesigned {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

/* Hero Main Content */
.hero-main {
    color: white;
}

.hero-announcement {
    margin-bottom: 2rem;
}

.announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.title-highlight {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    max-width: 90%;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #3b82f6;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 0.25rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
    color: white;
    text-decoration: none;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.hero-trust {
    margin-top: 2rem;
}

.trust-text {
    display: block;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.trust-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge i {
    color: #3b82f6;
}

/* Hero Search Panel */
.hero-search {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-header {
    text-align: center;
    margin-bottom: 2rem;
}

.search-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.search-subtitle {
    color: #64748b;
    font-size: 1rem;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.search-field-group {
    width: 100%;
}

.search-field {
    width: 100%;
}

.field-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.field-label i {
    color: #3b82f6;
    font-size: 0.85rem;
}

.field-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.field-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.filter-group {
    width: 100%;
}

.field-select {
    width: 100%;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: white;
}

.search-submit-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}

.search-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.search-submit-btn:hover .btn-shine {
    left: 100%;
}

/* Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.bg-orbit {
    position: absolute;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    right: 10%;
}

.orbit-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 20%;
    animation-duration: 15s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 5%;
    animation-duration: 25s;
}

.bg-satellite {
    position: absolute;
    top: 30%;
    right: 15%;
    color: rgba(59, 130, 246, 0.2);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Quick Stats Section */
.quick-stats-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.stat-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.5rem;
}

.stat-desc {
    color: #64748b;
    font-size: 0.9rem;
}

/* Enhanced Domain Cards */
.domain-card-enhanced {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.domain-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.domain-image {
    position: relative;
    height: 120px;
    overflow: hidden;
}

.domain-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.domain-card-enhanced:hover .domain-image img {
    transform: scale(1.1);
}

.domain-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8), rgba(29, 78, 216, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

/* Enhanced Hero Section */
.bg-light {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
}

/* Enhanced Cards */
.card {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Enhanced Buttons */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-outline-primary {
    border: 2px solid #3b82f6;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Enhanced Typography */
.display-4 {
    background: linear-gradient(135deg, #1e293b, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Badge */
.badge {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

/* Enhanced Stats Section */
.py-5:nth-child(2) {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

/* Beautiful Domain Cards Reference Style */
.domains-beautiful {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

/* Larger heading badge for Technology Domains on homepage */
.domains-beautiful .tech-domains-badge {
    font-size: 1rem;
    padding: 0.6rem 0.9rem;
}

.domain-card-reference {
    position: relative;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.domain-card-reference:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.domain-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.domain-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.domain-card-reference:hover .domain-bg-img {
    transform: scale(1.05);
}

.domain-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    z-index: 2;
}

.domain-icon-ref {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.domain-icon-ref i {
    font-size: 1.5rem;
    color: white;
}

.domain-card-reference:hover .domain-icon-ref {
    background: rgba(59, 130, 246, 1);
    transform: scale(1.1);
}

.domain-title-ref {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    line-height: 1.3;
}

.domain-desc-ref {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin-bottom: 0;
}

.domain-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.domain-card-beautiful {
    height: 320px;
    perspective: 1000px;
    margin-bottom: 2rem;
}

.domain-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    border-radius: 20px;
    overflow: hidden;
}

.domain-card-beautiful:hover .domain-card-inner {
    transform: rotateY(5deg) rotateX(5deg) scale(1.05);
}

.domain-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    border-radius: 20px;
}

.domain-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.domain-card-beautiful:hover .domain-background img {
    transform: scale(1.1);
}

.domain-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.domain-icon-beautiful {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.domain-icon-beautiful i {
    font-size: 2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.domain-card-beautiful:hover .domain-icon-beautiful {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.domain-title-beautiful {
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.domain-description {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.btn-domain-explore {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: 2px solid transparent;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-domain-explore::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-domain-explore:hover::before {
    left: 100%;
}

.btn-domain-explore:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.domain-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.domain-card-beautiful:hover .domain-glow {
    opacity: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

/* Sleek Footer Styles */
.footer-sleek {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    padding: 0.5rem 0 0.25rem;
    margin-top: 0;
}

/* Ensure footer brand uses intended colors, overriding global !important rules */
.footer-sleek .brand-title {
    color: #1e293b !important; /* slate-800 */
    text-shadow: none !important;
}
.footer-sleek .brand-subtitle {
    color: #64748b !important; /* slate-500 */
    text-shadow: none !important;
}

/* Dark theme overrides for Sleek Footer */
.theme-dark .footer-sleek {
    background: linear-gradient(135deg, #0b1220 0%, #111827 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.theme-dark .footer-sleek .brand-title { color: #e5e7eb !important; text-shadow: none !important; }
.theme-dark .footer-sleek .brand-subtitle { color: #9ca3af !important; text-shadow: none !important; }
.theme-dark .footer-sleek .footer-main,
.theme-dark .footer-sleek .footer-nav-sleek {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.theme-dark .footer-sleek .brand-title { color: #e5e7eb; }
.theme-dark .footer-sleek .brand-subtitle { color: #9ca3af; }
.theme-dark .footer-sleek .contact-label { color: #9ca3af; }
.theme-dark .footer-sleek .contact-value,
.theme-dark .footer-sleek .powered-link-sleek { color: #93c5fd; }
.theme-dark .footer-sleek .contact-value:hover,
.theme-dark .footer-sleek .powered-link-sleek:hover { color: #bfdbfe; }
.theme-dark .footer-sleek .nav-link-sleek,
.theme-dark .footer-sleek .copyright-sleek,
.theme-dark .footer-sleek .powered-sleek { color: #9ca3af; }
.theme-dark .footer-sleek .nav-link-sleek:hover { color: #93c5fd; }

/* Adjust social icon borders for dark for subtle contrast */
.theme-dark .footer-sleek .social-icon-sleek { border-color: rgba(255, 255, 255, 0.12); }
@media (hover:hover) {
  .theme-dark .footer-sleek .social-icon-sleek:hover { border-color: transparent; }
}

/* Inline policy links placed under contact info on the right */
.footer-sleek .footer-connect-sleek { text-align: right; }

/* Compact, centered row for social + policy links */
.footer-sleek .footer-actions-sleek {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    margin-bottom: 0.35rem;
}
.footer-sleek .social-links-sleek { display: flex; align-items: center; gap: 0.5rem; }

.footer-sleek .policy-links-sleek { display: flex; align-items: center; gap: 0.75rem; margin-top: 0; }
.footer-sleek .policy-links-sleek .nav-link-sleek { color: #1d4ed8; font-size: 0.9rem; }
.footer-sleek .policy-links-sleek .nav-link-sleek:hover { color: #1e40af; text-decoration: underline; }
.theme-dark .footer-sleek .policy-links-sleek .nav-link-sleek { color: #93c5fd; }
.theme-dark .footer-sleek .policy-links-sleek .nav-link-sleek:hover { color: #bfdbfe; }

/* Footer Main Content */
.footer-main {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    margin-bottom: 0.5rem;
}

/* Centered privacy/cookie block inside footer-main */
.footer-sleek .footer-nav-sleek { margin-top: 0; }
.footer-sleek .footer-nav-sleek .nav-links-sleek {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.footer-sleek .footer-nav-sleek .nav-link-sleek {
    color: #1d4ed8;
    font-size: 0.95rem;
    font-weight: 600;
}
.footer-sleek .footer-nav-sleek .nav-link-sleek:hover { color: #1e40af; text-decoration: underline; }
.theme-dark .footer-sleek .footer-nav-sleek .nav-link-sleek { color: #93c5fd; }
.theme-dark .footer-sleek .footer-nav-sleek .nav-link-sleek:hover { color: #bfdbfe; }

.footer-brand-sleek {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo-sleek {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    transition: transform 0.3s ease;
}

.brand-logo-sleek:hover {
    transform: scale(1.05);
}

.brand-logo-sleek i {
    font-size: 1.25rem;
    color: white;
}

.brand-content-sleek {
    flex: 1;
}

.brand-title {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.brand-subtitle {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.4;
    opacity: 1;
}

.footer-connect-sleek {
    text-align: right;
}

.social-links-sleek {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.social-icon-sleek {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    line-height: 1;
}

.social-icon-sleek i {
    display: block;
    text-align: center;
    width: 100%;
    height: 100%;
    line-height: 36px;
}

.social-icon-sleek.linkedin {
    background: rgba(0, 119, 181, 0.1);
    color: #0077b5;
    border-color: rgba(0, 119, 181, 0.2);
}

.social-icon-sleek.linkedin:hover {
    background: #0077b5;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}

.social-icon-sleek.twitter {
    background: rgba(29, 161, 242, 0.1);
    color: #1da1f2;
    border-color: rgba(29, 161, 242, 0.2);
}

.social-icon-sleek.twitter:hover {
    background: #1da1f2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 161, 242, 0.4);
}

.social-icon-sleek.youtube {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border-color: rgba(255, 0, 0, 0.2);
}

.social-icon-sleek.youtube:hover {
    background: #ff0000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.contact-info-sleek {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.contact-item-sleek {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.contact-label {
    color: #64748b;
    font-weight: 500;
}

.contact-value {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Navigation Links */
.footer-nav-sleek {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    margin-bottom: 1rem;
}

.nav-links-sleek {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.nav-link-sleek {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link-sleek::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    transition: width 0.3s ease;
}

.nav-link-sleek:hover {
    color: #3b82f6;
    text-decoration: none;
}

.nav-link-sleek:hover::after {
    width: 100%;
}

/* Footer Bottom */
.footer-bottom-sleek {
    padding-top: 0.5rem;
}

.copyright-sleek {
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 0;
}

.powered-sleek {
    color: #1f2937; /* slate-800 */
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0;
}

.powered-link-sleek {
    color: #1d4ed8; /* brand blue */
    text-decoration: none;
    font-weight: 700;
    position: relative;
}

.powered-link-sleek::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0;
    background: currentColor;
    transition: width 0.25s ease;
}

.powered-link-sleek:hover::after,
.powered-link-sleek:focus-visible::after {
    width: 100%;
}

.theme-dark .powered-sleek { color: #e5e7eb; }
.theme-dark .powered-link-sleek { color: #93c5fd; }
.theme-dark .powered-link-sleek:hover::after,
.theme-dark .powered-link-sleek:focus-visible::after { background: currentColor; }

.powered-link-sleek:hover {
    color: #1d4ed8;
}

/* Sticky Powered Badge */
.powered-badge {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 2000;
    display: none;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 8px 24px rgba(2,6,23,0.12);
    padding: 8px 12px;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0;
    transform: translateY(8px);
}
.powered-badge.show { opacity: 1; transform: translateY(0); }
.theme-dark .powered-badge {
    background: rgba(17,24,39,0.85);
    border-color: rgba(255,255,255,0.12);
}
.powered-badge-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1f2937;
    text-decoration: none;
    font-weight: 700;
}
.powered-badge-logo { width: 32px; height: 32px; border-radius: 4px; object-fit: cover; }
.theme-dark .powered-badge-link { color: #e5e7eb; }

.badge-close {
    appearance: none;
    border: none;
    background: transparent;
    color: #64748b;
    font-size: 16px;
    line-height: 1;
    padding: 0 4px;
    cursor: pointer;
}
.theme-dark .badge-close { color: #9ca3af; }

@media (max-width: 480px) {
    .powered-badge { right: 10px; bottom: 10px; padding: 6px 10px; }
    .powered-badge-logo { width: 28px; height: 28px; }
}

/* Footer powered-by logo next to link */
.powered-logo { width: 28px; height: 28px; border-radius: 4px; object-fit: cover; vertical-align: -6px; margin-right: 8px; }

/* Responsive Design */
@media (max-width: 768px) {
    .footer-connect-sleek {
        text-align: center;
        margin-top: 1.5rem;
    }
    
    .social-links-sleek {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-info-sleek {
        align-items: center;
    }
    
    .nav-links-sleek {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-bottom-sleek .row > div {
        text-align: center !important;
        margin-bottom: 0.5rem;
    }
}

/* Domain Showcase Section */
.domain-showcase-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.sectio.brand-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.brand-subtitle {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.4;
    opacity: 0.9;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.domain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.domain-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.domain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.domain-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.2rem;
}

.domain-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.domain-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.domain-link:hover {
    color: #1d4ed8;
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-search {
        padding: 1.5rem;
    }
    
    .search-filters {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Modern Visible Footer */
.footer-space {
    background: #0f172a !important;
    position: relative;
    padding: 4rem 0 2rem !important;
    margin-top: 4rem;
    border-top: 4px solid #3b82f6 !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3) !important;
    z-index: 10 !important;
}

.footer-space-bg {
    display: none;
}

.footer-space .container {
    position: relative;
    z-index: 2;
}

.footer-space h5 {
    color: #ffffff !important;
    font-weight: 900 !important;
    font-size: 1.75rem !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
}

.footer-space p,
.footer-space .text-muted {
    color: #e2e8f0 !important;
    font-weight: 600 !important;
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8) !important;
}

.footer-space .social-links a {
    color: #f1f5f9 !important;
    font-size: 1.75rem !important;
    margin: 0 1rem !important;
    transition: all 0.3s ease !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.footer-space .social-links a:hover {
    color: #3b82f6 !important;
    transform: translateY(-4px) scale(1.2) !important;
    text-shadow: 0 4px 12px rgba(59, 130, 246, 0.6) !important;
}

.footer-space .btn {
    color: #f1f5f9 !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

.footer-space .btn:hover {
    color: white !important;
    background: rgba(59, 130, 246, 0.2) !important;
    border-color: #3b82f6 !important;
    transform: translateY(-2px) !important;
}

.footer-space .copyright {
    border-top: 1rem !important;
    margin: 0 !important;
    font-weight: 600 !important;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-logo i {
    color: white;
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-brand-text h5 {
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.25rem;
}

.footer-brand-text p {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

.social-link {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.25rem;
}

.social-link:hover {
    background: rgba(59, 130, 246, 0.2);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
    transform: translateY(-1px);
}

.footer-powered {
    margin-bottom: 0.75rem;
}

.footer-powered .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.powered-link {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.powered-link:hover {
    color: white;
    transform: translateY(-1px);
}

.footer-copyright .text-muted {
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-satellites {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.satellite {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.satellite-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.satellite-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.satellite-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Next-Gen Body Background */
.next-gen-body {
    background: #ffffff;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
}

body {
    margin: 0 !important;
    padding: 0 !important;
}

html {
    margin: 0 !important;
    padding: 0 !important;
}

/* Enhanced Hero Section */
.hero-modern {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    margin-top: 0;
    padding-top: 6rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-background {
    display: none;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1e293b;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 90%;
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #374151;
    font-size: 1rem;
}

.trust-item i {
    font-size: 1.1rem;
}

.search-visual {
    text-align: center;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.satellite-orbit {
    position: relative;
    width: 150px;
    height: 150px;
}

.satellite-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
    animation: pulse 2s infinite;
}

.orbit-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit-ring-2 {
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    border-color: rgba(168, 85, 247, 0.2);
    animation-duration: 30s;
    animation-direction: reverse;
}

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

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Modern Search Card */
.modern-search-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.modern-search-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
}

.search-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.search-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
    text-shadow: none;
}

.search-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

.search-form-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.search-input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 1.1rem;
    z-index: 2;
}

.modern-search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1e293b;
    background: #ffffff;
    transition: all 0.3s ease;
}

.modern-search-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-filters-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #374151;
    display: flex;
    align-items: center;
}

.modern-select {
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: #1e293b;
    background: #ffffff;
    transition: all 0.3s ease;
}

.modern-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.modern-search-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.modern-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.modern-search-btn:hover .btn-shine {
    left: 100%;
}

@media (max-width: 768px) {
    .search-filters-row {
        grid-template-columns: 1fr;
    }
    
    .modern-search-card {
        padding: 1.5rem;
    }
    
    .search-title {
        font-size: 1.5rem;
    }
}

.search-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4, #10b981);
    z-index: 1;
}

.form-control-modern,
.form-select-modern {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-control-modern:focus,
.form-select-modern:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: white;
}

.btn-search-enhanced {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    width: 100%;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.btn-search-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-search-enhanced:hover::before {
    left: 100%;
}

.btn-search-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
    color: white;
}

.btn-space-cta {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-space-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
    color: white;
    text-decoration: none;
}

.btn-outline-space {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    color: #1e293b;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-outline-space:hover {
    background: #f8fafc;
    border-color: #3b82f6;
    color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
    text-decoration: none;
}

/* Enhanced Stats Section */
.stats-professional {
    background: #ffffff;
    border-radius: 20px;
    margin: 4rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.stats-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4, #10b981);
    z-index: 1;
}

.stat-professional {
    text-align: center;
    padding: 3rem 1rem;
    position: relative;
}

.stat-professional::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.stat-professional .count {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-professional .label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.stat-professional .description {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

/* Enhanced Domain Cards */
.domains-professional {
    padding: 4rem 0;
    background: #f8fafc;
    position: relative;
}

.domains-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(168, 85, 247, 0.04) 0%, transparent 60%);
    z-index: -1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #64748b;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

.domain-card-clean {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.domain-card-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.domain-card-clean:hover::before {
    opacity: 1;
}

.domain-card-clean:hover {
    transform: translateY(-16px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12);
    border-color: rgba(59, 130, 246, 0.4);
    text-decoration: none;
}

.domain-card-clean img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.9) contrast(1.1);
}

.domain-card-clean:hover img {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.2);
}

.domain-card-clean .card-body {
    padding: 2.5rem;
    text-align: center;
}

.domain-card-clean h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    margin-top: 0;
}

.domain-card-clean p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Enhanced Search Card */
.card-plain {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 232, 240, 0.5);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-plain::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
    z-index: 1;
}

.card-plain:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Enhanced Buttons */
.btn-neutral {
    background: linear-gradient(135deg, #1e293b, #334155);
    border: 2px solid rgba(59, 130, 246, 0.3);
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(30, 41, 59, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-neutral::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-neutral:hover::before {
    left: 100%;
}

.btn-neutral:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(30, 41, 59, 0.4);
    color: white;
    border-color: rgba(59, 130, 246, 0.5);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(30, 41, 59, 0.2);
    color: #1e293b;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(30, 41, 59, 0.1);
    color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(30, 41, 59, 0.15);
}

.btn-search-professional {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-search-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-search-professional:hover::before {
    left: 100%;
}

.btn-search-professional:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: var(--space-16) 0;
        margin-top: 70px;
    }
    
    .search-form {
        padding: var(--space-6);
        margin: var(--space-8) var(--space-4) 0;
    }
    
    .company-card-body {
        padding: var(--space-4);
    }
    
    .navbar {
        padding: var(--space-3) 0;
    }
    
    .brand-text {
        display: none;
    }
    
    .brand-icon {
        margin-right: 0;
    }
    
    .footer-space {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-brand {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .footer-powered,
    .footer-copyright {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: var(--space-12) 0;
    }
    
    .search-form {
        padding: var(--space-4);
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ---- Search List: Enhanced UI ---- */
.search-card-enhanced {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.btn-space-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-space-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-outline-space { background: #fff; color: var(--primary); border-color: var(--primary); }
.btn-outline-space:hover { background: var(--primary); color: #fff; }

/* Results header and actions */
.results-section { background: transparent; }
.results-header { display: flex; align-items: center; gap: var(--space-3); flex-wrap: wrap; margin-bottom: var(--space-3); }
.results-count h5 { margin: 0; font-weight: 700; color: var(--gray-900); }

/* Active filter pills */
.active-filters { display: flex; align-items: center; gap: var(--space-2); flex-wrap: wrap; }
.active-filters .filter-label { color: var(--gray-600); font-weight: 600; margin-right: var(--space-2); }
.active-filters .btn-container { display: inline-flex; align-items: center; background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: var(--radius-full); padding: 2px 6px 2px 8px; }
.active-filters .btn-container .btn { padding: 0 6px; font-size: 0.75rem; line-height: 1.5; background: transparent; border: 0; color: var(--gray-800); }
.active-filters .btn-container .remove-icon { background: transparent; border: 0; color: var(--gray-500); font-size: 1rem; padding: 0 4px; cursor: pointer; }
.active-filters .btn-container .remove-icon:hover { color: var(--error); }

/* Sticky filters (desktop) */
@media (min-width: 992px) {
  .col-lg-3 > .search-card-enhanced { position: sticky; top: 96px; }
}

/* Grid/List view styles */
#company_content[data-view="grid"] .col-lg-4 .company-card { height: 100%; }

#company_content[data-view="list"] .col-12 .company-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-4);
  align-items: stretch;
}
#company_content[data-view="list"] .col-12 .company-card .company-card-header { height: 100%; }
#company_content[data-view="list"] .col-12 .company-card .company-background { height: 100%; background-size: cover; background-position: center; }
#company_content[data-view="list"] .col-12 .company-card .company-card-body { padding: var(--space-5); }

/* Company card inner parts used in search-list */
.company-card-header { position: relative; }
.company-background { height: 160px; background-color: var(--gray-100); background-size: cover; background-position: center; border-bottom: 1px solid var(--gray-200); }
.company-logo { position: absolute; left: var(--space-4); bottom: var(--space-4); width: 64px; height: 64px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); display: grid; place-items: center; border: 1px solid var(--gray-200); }
.company-logo img { max-width: 90%; max-height: 90%; object-fit: contain; }
.membership-badge { position: absolute; right: var(--space-4); top: var(--space-4); display: inline-flex; align-items: center; gap: 6px; background: #e6f4ff; color: #1451a3; border: 1px solid #bcd9ff; border-radius: var(--radius-full); padding: 4px 8px; font-size: 0.75rem; font-weight: 700; }
.company-name { margin-bottom: 6px; font-weight: 700; color: var(--gray-900); }
.company-description { color: var(--gray-600); font-size: 0.9rem; }
.company-meta { display: flex; gap: var(--space-4); flex-wrap: wrap; margin-top: var(--space-3); }
.company-meta .meta-item { display: inline-flex; align-items: center; gap: 6px; color: var(--gray-700); font-size: 0.875rem; }

/* Search results empty state */
.no-results { border: 1px dashed var(--gray-300); background: var(--gray-50); border-radius: var(--radius-lg); padding: var(--space-8); text-align: center; }
.no-results-icon { width: 56px; height: 56px; border-radius: var(--radius-full); background: var(--gray-100); display: inline-grid; place-items: center; color: var(--primary); font-size: 1.25rem; margin-bottom: var(--space-3); }
