/* ========================================
   PIVOTAI - MODERN DESIGN SYSTEM 2024
   ======================================== */

/* CSS Custom Properties (Design Tokens) */
:root {
  /* Color Palette */
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;
  --primary-200: #bfdbfe;
  --primary-300: #93c5fd;
  --primary-400: #60a5fa;
  --primary-500: #3b82f6;
  --primary-600: #2563eb;
  --primary-700: #1d4ed8;
  --primary-800: #1e40af;
  --primary-900: #1e3a8a;

  --secondary-50: #f0f9ff;
  --secondary-100: #e0f2fe;
  --secondary-200: #bae6fd;
  --secondary-300: #7dd3fc;
  --secondary-400: #38bdf8;
  --secondary-500: #0ea5e9;
  --secondary-600: #0284c7;
  --secondary-700: #0369a1;
  --secondary-800: #075985;
  --secondary-900: #0c4a6e;

  --accent-50: #fdf4ff;
  --accent-100: #fae8ff;
  --accent-200: #f5d0fe;
  --accent-300: #f0abfc;
  --accent-400: #e879f9;
  --accent-500: #d946ef;
  --accent-600: #c026d3;
  --accent-700: #a21caf;
  --accent-800: #86198f;
  --accent-900: #701a75;

  --neutral-50: #f8fafc;
  --neutral-100: #f1f5f9;
  --neutral-200: #e2e8f0;
  --neutral-300: #cbd5e1;
  --neutral-400: #94a3b8;
  --neutral-500: #64748b;
  --neutral-600: #475569;
  --neutral-700: #334155;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;

  --success-50: #f0fdf4;
  --success-500: #22c55e;
  --success-600: #16a34a;
  --warning-50: #fffbeb;
  --warning-500: #f59e0b;
  --error-50: #fef2f2;
  --error-500: #ef4444;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', Consolas, monospace;

  /* Font Sizes */
  --text-xs: 0.75rem;      /* 12px */
  --text-sm: 0.875rem;     /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg: 1.125rem;     /* 18px */
  --text-xl: 1.25rem;      /* 20px */
  --text-2xl: 1.5rem;      /* 24px */
  --text-3xl: 1.875rem;    /* 30px */
  --text-4xl: 2.25rem;     /* 36px */
  --text-5xl: 3rem;        /* 48px */
  --text-6xl: 3.75rem;     /* 60px */
  --text-7xl: 4.5rem;      /* 72px */

  /* Spacing */
  --space-1: 0.25rem;      /* 4px */
  --space-2: 0.5rem;       /* 8px */
  --space-3: 0.75rem;      /* 12px */
  --space-4: 1rem;         /* 16px */
  --space-5: 1.25rem;      /* 20px */
  --space-6: 1.5rem;       /* 24px */
  --space-8: 2rem;         /* 32px */
  --space-10: 2.5rem;      /* 40px */
  --space-12: 3rem;        /* 48px */
  --space-16: 4rem;        /* 64px */
  --space-20: 5rem;        /* 80px */
  --space-24: 6rem;        /* 96px */
  --space-32: 8rem;        /* 128px */

  /* Border Radius */
  --radius-sm: 0.375rem;   /* 6px */
  --radius-md: 0.5rem;     /* 8px */
  --radius-lg: 0.75rem;    /* 12px */
  --radius-xl: 1rem;       /* 16px */
  --radius-2xl: 1.5rem;    /* 24px */
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;

  /* Z-Index Scale */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
    line-height: 1.6;
  color: var(--neutral-700);
  background-color: var(--neutral-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700 !important;
    line-height: 1.2;
  color: var(--neutral-900);
  margin-bottom: var(--space-4);
}

h1 {
  font-size: var(--text-5xl) !important;
  font-weight: 800;
  letter-spacing: -0.025em;
}

h2 {
  font-size: var(--text-4xl) !important;
  font-weight: 700;
  letter-spacing: -0.025em;
}

h3 {
  font-size: var(--text-2xl) !important;
  font-weight: 600;
}

h4 {
  font-size: var(--text-xl) !important;
  font-weight: 600;
}

h5 {
  font-size: var(--text-lg) !important;
  font-weight: 600;
}

h6 {
  font-size: var(--text-base) !important;
  font-weight: 600;
}

p {
  margin-bottom: var(--space-4);
  color: var(--neutral-600);
  line-height: 1.7;
}

.lead {
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--neutral-600);
  line-height: 1.6;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-600), var(--accent-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   LAYOUT UTILITIES
   ======================================== */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-sm {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-lg {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: var(--space-20) 0;
}

.section-sm {
  padding: var(--space-16) 0;
}

.section-lg {
  padding: var(--space-24) 0;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1;
    text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
    cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
    transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

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

.btn-secondary:hover {
  background: var(--primary-50);
  border-color: var(--primary-300);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn-ghost:hover {
  background: var(--primary-50);
  color: var(--primary-700);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-600), var(--accent-700));
    color: white;
  box-shadow: var(--shadow-md);
}

.btn-accent:hover {
  background: linear-gradient(135deg, var(--accent-700), var(--accent-800));
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

.btn-icon {
  padding: var(--space-3);
  width: 44px;
  height: 44px;
}

/* ========================================
   PREMIUM NAVIGATION
   ======================================== */

/* Font Variables */
:root {
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Global Typography */
body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.75rem;
    font-weight: 700;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

h5 {
    font-size: 1.25rem;
    font-weight: 600;
}

h6 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* Body Text */
p, span, div, a, li, td, th, label, input, textarea, select, button {
    font-family: var(--font-body);
}

/* Buttons */
.btn {
    font-family: var(--font-body);
    font-weight: 600;
}

/* Cards and Sections */
.card-title, .section-title, .feature-title, .service-title, .solution-title {
    font-family: var(--font-heading);
    font-weight: 700;
}

.card-text, .section-text, .feature-text, .service-text, .solution-text {
    font-family: var(--font-body);
    font-weight: 400;
}

/* Hero Sections */
.hero-title, .hero-heading, .hero-subtitle {
    font-family: var(--font-heading);
}

.hero-text, .hero-description, .hero-content {
    font-family: var(--font-body);
}

/* Navigation */
.nav-link, .nav-text, .mobile-nav-link {
    font-family: var(--font-body);
}

/* Forms */
.form-label, .form-text, .form-control, .form-select {
    font-family: var(--font-body);
}

/* Tables */
.table th, .table td {
    font-family: var(--font-body);
}

/* Lists */
ul, ol, li {
    font-family: var(--font-body);
}

/* Footer */
.footer-title, .footer-heading {
    font-family: var(--font-heading);
}

.footer-text, .footer-content {
    font-family: var(--font-body);
}

/* Blog and Content */
.blog-title, .blog-heading, .post-title {
    font-family: var(--font-heading);
}

.blog-content, .post-content, .content-text {
    font-family: var(--font-body);
}

/* Pricing and Services */
.pricing-title, .service-heading, .pricing-heading {
    font-family: var(--font-heading);
}

.pricing-text, .service-description, .pricing-description {
    font-family: var(--font-body);
}

/* Testimonials and Reviews */
.testimonial-title, .review-title {
    font-family: var(--font-heading);
}

.testimonial-text, .review-text {
    font-family: var(--font-body);
}

/* Contact and About */
.contact-title, .about-title, .team-title {
    font-family: var(--font-heading);
}

.contact-text, .about-text, .team-text {
    font-family: var(--font-body);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* Premium Logo */
.nav-logo {
    z-index: 1001;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.logo-icon {
    width: 45px;
    height: 45px;
    background: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.logo-icon::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;
}

.logo-link:hover .logo-icon::before {
    left: 100%;
}

.logo-link:hover .logo-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.5);
}

.logo-icon i {
    font-size: 1.5rem;
    color: white;
    z-index: 1;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #2563eb;
    letter-spacing: -0.5px;
}

/* Premium Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neutral-700);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    padding: 1px 10px;
    border-radius: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0.75rem;
}

.nav-link:hover {
    color: #334155;
    transform: translateY(-2px);
    /* box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3); */
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-text {
    position: relative;
    z-index: 1;
}

.nav-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #2563eb;
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover .nav-indicator {
    width: 80%;
}

/* Premium Dropdown Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 1rem);
    left: -80%;
    transform: translateX(-50%) translateY(-20px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    min-width: 700px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: var(--z-dropdown);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-header {
    margin-bottom: 1.25rem;
    text-align: left;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.dropdown-header h4 {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #2563eb;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.5px;
}

.dropdown-header p {
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--neutral-600);
    margin: 0;
    font-weight: 500;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--neutral-800);
    text-decoration: none;
    border-radius: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

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

.dropdown-item:hover::before {
    left: 100%;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.2);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.dropdown-icon {
    width: 40px;
    height: 40px;
    background: #2563eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.dropdown-item:hover .dropdown-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.5);
}

.dropdown-icon i {
    font-size: 1.1rem;
    color: white;
}

.dropdown-content-text h5 {
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--neutral-900);
    margin: 0 0 0.25rem 0;
}

.dropdown-content-text p {
    font-size: 0.85rem;
    font-family: var(--font-body);
    color: var(--neutral-600);
    margin: 0;
    line-height: 1.4;
}

/* Premium CTA Buttons */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-cta .btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    border-radius: 0.875rem;
    font-family: var(--font-body);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
}

.nav-cta .btn::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;
}

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

.nav-cta .btn-ghost {
    color: var(--neutral-700);
    border: 2px solid rgba(37, 99, 235, 0.2);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-cta .btn-ghost:hover {
    color: white;
    border-color: transparent;
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.nav-cta .btn-primary {
    background: #2563eb;
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.nav-cta .btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

/* Tailwind Mobile Toggle - All styling handled by Tailwind classes */

/* Mobile Menu - All styling now handled by Tailwind CSS */

/* Responsive Design */
@media (min-width: 1536px) {
  .container {
      max-width: 1350px !important;
  }
}

@media (max-width: 1024px) {
    .dropdown-content {
        min-width: 600px;
    }
    
    .dropdown-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        height: 70px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    /* Mobile Menu - All styling now handled by Tailwind CSS */
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.75rem;
        height: 65px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    /* Mobile Menu - All styling now handled by Tailwind CSS */
    
    /* Mobile Menu - All styling now handled by Tailwind CSS */
}

/* ========================================
   HERO SECTIONS
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--neutral-50) 0%, var(--primary-50) 100%);
    overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23f0f9ff" stop-opacity="0.8"/><stop offset="100%" stop-color="%23e0f2fe" stop-opacity="0.4"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23a)"/><circle cx="800" cy="300" r="200" fill="url(%23a)"/><circle cx="400" cy="700" r="250" fill="url(%23a)"/></svg>') no-repeat center center;
  background-size: cover;
  opacity: 0.6;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.hero-text h1 {
  font-size: var(--text-7xl);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-6);
  background: linear-gradient(135deg, var(--neutral-900), var(--primary-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: var(--text-xl);
  color: var(--neutral-600);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

.hero-cta {
    display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

.hero-stats {
    display: flex;
  gap: var(--space-8);
    padding: var(--space-8) 0;
}

.stat {
    text-align: center;
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.stat-number {
    display: block;
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--primary-600);
  line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-label {
  display: block;
  font-size: var(--text-sm);
  color: var(--neutral-600);
  font-weight: 500;
    line-height: 1.4;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual i {
  font-size: 12rem;
  color: var(--primary-500);
  opacity: 0.8;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.element {
  position: absolute;
  width: 80px;
  height: 80px;
  background: white;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary-100);
  animation: float 6s ease-in-out infinite;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.element:hover {
  transform: translateY(-10px) scale(1.1);
  box-shadow: var(--shadow-xl);
}

.element i {
  font-size: var(--text-xl);
  color: var(--primary-600);
  margin-bottom: var(--space-1);
}

.element span {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--neutral-700);
  text-align: center;
}

.element-1 {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.element-2 {
  top: 20%;
  left: 5%;
  animation-delay: 1s;
}

.element-3 {
  top: 60%;
  right: 5%;
  animation-delay: 2s;
}

.element-4 {
  bottom: 20%;
  left: 10%;
  animation-delay: 3s;
}

.element-5 {
  top: 40%;
  left: 0%;
  animation-delay: 4s;
}

.element-6 {
  bottom: 10%;
  right: 20%;
  animation-delay: 5s;
}

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

/* ========================================
   CARDS
   ======================================== */

.card {
    background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-200);
  transition: all var(--transition-normal);
  overflow: hidden;
}

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

.card-header {
  padding: var(--space-6);
  border-bottom: 1px solid var(--neutral-200);
}

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

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

/* ========================================
   GRID LAYOUTS
   ======================================== */

.grid {
    display: grid;
  gap: var(--space-6);
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ========================================
   UTILITIES
   ======================================== */

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

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

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

.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-12);
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: var(--text-6xl);
  }
  
  .nav-menu {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-4);
  }
  
  /* Reduce hero-text padding-top on tablets */
  .hero-text.pt-24 {
    padding-top: var(--space-16) !important;
  }
  
  /* Ensure hamburger is visible and above content on phones */
  #nav-toggle {
    display: flex !important;
    z-index: var(--z-fixed);
    cursor: pointer;
  }
  /* Animate hamburger lines to X when active */
  #nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: white;
  }
  #nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  #nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: white;
  }
  /* Reinforce hero single-column layout */
  .hero-content {
    grid-template-columns: 1fr !important;
    gap: var(--space-10);
    text-align: center;
    overflow: hidden;
  }
  .hero { overflow: hidden; }
  .hero-text { max-width: 100%; }
  .hero-text h1,
  .hero-text .text-gradient {
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }
  .hero-visual {
    margin-top: var(--space-6);
  }
  
  .hero-text h1 {
    font-size: var(--text-5xl);
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: 1fr;
  }
  
  /* Footer Responsive */
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .newsletter-content {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    text-align: center;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* Hero Graphic Responsive */
  .hero-graphic {
    width: 350px;
    height: 350px;
  }
  
  .ai-brain {
    width: 80px;
    height: 80px;
  }
  
  .ai-brain i {
    font-size: 2rem;
  }
  
  .dashboard-card {
    padding: var(--space-4);
  }
  
  .dashboard-card i {
    font-size: var(--text-lg);
  }
  
  .dashboard-card span {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  /* Remove hero-text padding-top on mobile phones */
  .hero-text.pt-24 {
    padding-top: 0 !important;
  }
  
  /* Left align section headers on mobile */
  .section-header.text-center {
    text-align: left;
  }
  
  .hero-text h1 {
    font-size: var(--text-3xl);
    line-height: 1.2;
  }
  
  .btn-lg {
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-base);
  }
  
  .hero-graphic {
    width: 280px;
    height: 280px;
  }
  
  .dashboard-grid {
    gap: var(--space-2);
    padding: var(--space-4);
  }
  
  .dashboard-card {
    padding: var(--space-3);
  }
  
  .dashboard-card i {
    font-size: var(--text-base);
  }
  
  .dashboard-card span {
    font-size: 9px;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.6s ease-out;
}

.animate-fade-in-right {
  animation: fadeInRight 0.6s ease-out;
}

/* ========================================
   MODERN FOOTER
   ======================================== */

.footer {
  background: linear-gradient(135deg, var(--neutral-900) 0%, var(--neutral-800) 100%);
  color: var(--neutral-300);
  padding: var(--space-24) 0 var(--space-8);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-500), transparent);
}

/* Main Footer Content */
.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-16);
  margin-bottom: var(--space-20);
  padding-bottom: var(--space-16);
  border-bottom: 1px solid var(--neutral-700);
}

/* Company Section */
.footer-company-section {
  max-width: 500px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.logo-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.logo-icon i {
  font-size: var(--text-2xl);
  color: white;
}

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

.logo-name {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: white;
  line-height: 1;
}

.logo-tagline {
  font-size: var(--text-sm);
  color: var(--primary-400);
  font-weight: 500;
  margin-top: var(--space-1);
}

.company-description {
  color: var(--neutral-400);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  font-size: var(--text-base);
}

.company-stats {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
  margin-top: var(--space-8);
  justify-content: flex-start;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  border: 1px solid var(--neutral-600);
  min-width: 120px;
  flex: 1;
  max-width: 150px;
}

.stat-number {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--primary-400);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.stat-label {
  font-size: var(--text-xs);
  color: var(--neutral-500);
  font-weight: 500;
}

/* Links Section */
.footer-links-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.links-column h4 {
  color: white;
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-6);
  position: relative;
}

.links-column h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
  border-radius: 1px;
}

.links-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.links-column a {
  color: var(--neutral-400);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: all var(--transition-normal);
  padding: var(--space-1) 0;
  position: relative;
}

.links-column a:hover {
  color: var(--primary-400);
  transform: translateX(4px);
}

.links-column a::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: var(--primary-500);
  transition: width var(--transition-normal);
}

.links-column a:hover::before {
  width: 8px;
}

/* Company Stats Section */
.company-stats-section {
  margin-bottom: var(--space-20);
  padding: var(--space-16) 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--neutral-700);
}

.company-stats-section .company-stats {
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.company-stats-section .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-8) var(--space-6);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  border: 1px solid var(--neutral-600);
  min-width: 150px;
  flex: 1;
  max-width: 200px;
  transition: all var(--transition-normal);
}

.company-stats-section .stat:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary-500);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.company-stats-section .stat-number {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--primary-400);
  margin-bottom: var(--space-2);
  line-height: 1;
}

.company-stats-section .stat-label {
  font-size: var(--text-sm);
  color: var(--neutral-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Newsletter Section */
.footer-newsletter {
  background: linear-gradient(135deg, var(--primary-600), var(--accent-600));
  padding: var(--space-16);
  border-radius: var(--radius-2xl);
  margin-bottom: var(--space-20);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.footer-newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

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

.newsletter-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-12);
  max-width: 100%;
}

.newsletter-content {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  flex: 1;
  max-width: 60%;
}

.newsletter-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.newsletter-icon i {
  font-size: var(--text-xl);
  color: white;
}

.newsletter-text h3 {
  color: white;
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.newsletter-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-base);
  line-height: 1.6;
}

.newsletter-form {
  flex: 1;
  max-width: 450px;
  min-width: 300px;
}

.newsletter-form .form-group {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  align-items: stretch;
}

.newsletter-form input {
  flex: 1;
  padding: var(--space-5) var(--space-6);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-xl);
  color: white;
  font-size: var(--text-base);
  backdrop-filter: blur(15px);
  transition: all var(--transition-normal);
  font-weight: 500;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.newsletter-form .btn {
  background: white;
  color: var(--primary-600);
  border: none;
  padding: var(--space-5) var(--space-8);
  border-radius: var(--radius-xl);
  font-weight: 700;
  transition: all var(--transition-normal);
  white-space: nowrap;
  font-size: var(--text-base);
  box-shadow: var(--shadow-md);
}

.newsletter-form .btn:hover {
  background: var(--neutral-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.newsletter-note {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
  margin: 0;
}

/* Contact & Social Section - Fresh Simple & Classy Design */
.footer-contact-social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  margin-bottom: var(--space-20);
  padding: var(--space-16) 0;
  border-bottom: 1px solid var(--neutral-700);
}

/* Contact Section - Clean & Minimal */
.contact-section {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-xl);
  padding: var(--space-12);
  /* border: 1px solid var(--neutral-600); */
}

.contact-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.contact-header h3 {
  color: white;
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.contact-header p {
  color: var(--neutral-300);
  font-size: var(--text-base);
  margin: 0;
  line-height: 1.6;
}

.contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-600);
  transition: all var(--transition-normal);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-500);
  transform: translateY(-2px);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: var(--text-lg);
  color: white;
}

.contact-details h4 {
  color: white;
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.contact-details p {
  color: var(--neutral-300);
  font-size: var(--text-sm);
  line-height: 1.5;
  margin: 0;
}

/* Social Section - Clean & Elegant */
.social-section {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-xl);
  padding: var(--space-12);
  border: 1px solid var(--neutral-600);
}

.social-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.social-header h3 {
  color: white;
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.social-header p {
  color: var(--neutral-300);
  font-size: var(--text-base);
  margin: 0;
  line-height: 1.6;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.social-link {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-600);
  text-decoration: none;
  color: var(--neutral-300);
  transition: all var(--transition-normal);
  font-weight: 500;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-500);
  color: var(--primary-300);
  transform: translateX(4px);
}

.social-link i {
  font-size: var(--text-lg);
  width: 20px;
  text-align: center;
}

.social-link span {
  font-size: var(--text-sm);
  font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: var(--space-8);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-8);
}

.footer-copyright p {
  color: var(--neutral-500);
  font-size: var(--text-sm);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: var(--space-6);
}

.footer-legal a {
  color: var(--neutral-400);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--transition-normal);
}

.footer-legal a:hover {
  color: var(--primary-400);
}

.contact-grid {
    display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.contact-item {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  transition: background var(--transition-normal);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.contact-item i {
  font-size: var(--text-2xl);
  color: var(--primary-500);
  margin-top: var(--space-1);
  flex-shrink: 0;
}

.contact-item h5 {
  color: white;
  margin-bottom: var(--space-3);
  font-size: var(--text-base);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.contact-item p {
  color: var(--neutral-300);
  margin: 0;
  font-size: var(--text-base);
  line-height: 1.6;
  font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid var(--neutral-800);
  padding: var(--space-8) 0;
}

.footer-bottom-content {
    display: flex;
  justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
  color: var(--neutral-500);
  margin: 0;
  font-size: var(--text-sm);
}

.footer-links {
  display: flex;
  gap: var(--space-6);
}

.footer-links a {
  color: var(--neutral-500);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--transition-normal);
}

.footer-links a:hover {
  color: var(--primary-400);
}

/* ========================================
   COMPONENT SPECIFIC STYLES
   ======================================== */

/* Hero Badge */
.hero-badge {
  display: inline-flex;
    align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--primary-100);
  color: var(--primary-700);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-6);
}

.hero-badge i {
  font-size: var(--text-base);
}

/* Hero Graphic */
/* Hero Graphic - Modern Dashboard Design */
.hero-graphic {
  position: relative;
  width: 500px;
  height: 500px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.ai-brain {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-2xl);
  animation: pulse 3s ease-in-out infinite;
  z-index: 3;
}

.ai-brain i {
  font-size: 3rem;
  color: white;
  animation: rotate 8s linear infinite;
}

/* Dashboard Grid Layout */
.dashboard-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--space-4);
  padding: var(--space-8);
}

.dashboard-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.dashboard-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.9);
}

.dashboard-card i {
  font-size: var(--text-2xl);
  color: var(--primary-600);
  margin-bottom: var(--space-2);
}

.dashboard-card span {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--neutral-700);
  text-align: center;
}

/* Data Flow Animation */
.data-flow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.flow-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-300), transparent);
  animation: flow 4s ease-in-out infinite;
}

.flow-line-1 {
  top: 30%;
  left: 20%;
  width: 60%;
  animation-delay: 0s;
}

.flow-line-2 {
  top: 70%;
  right: 20%;
  width: 40%;
  transform: rotate(45deg);
  animation-delay: 2s;
}

.flow-line-3 {
  bottom: 30%;
  left: 30%;
  width: 50%;
  transform: rotate(-30deg);
  animation-delay: 4s;
}

@keyframes flow {
  0%, 100% {
    opacity: 0.3;
    transform: scaleX(0);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}


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

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

/* Trusted By Section */
.trusted-by {
  padding: var(--space-16) 0;
  background: var(--neutral-100);
  border-top: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
}

.trusted-by-content {
  text-align: center;
}

.trusted-by-text {
  font-size: var(--text-lg);
  color: var(--neutral-600);
  margin-bottom: var(--space-8);
    font-weight: 500;
}

.trusted-by-logos {
    display: flex;
  justify-content: center;
    align-items: center;
  gap: var(--space-12);
  flex-wrap: wrap;
}

.logo-item {
    display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
    background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-200);
  transition: all var(--transition-normal);
}

.logo-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.logo-item i {
  font-size: var(--text-xl);
  color: var(--primary-600);
}

.logo-item span {
    font-weight: 600;
  color: var(--neutral-700);
}

/* Section Headers */
.section-header {
  margin-bottom: var(--space-16);
}

.section-badge {
  display: inline-flex;
    align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--primary-100);
  color: var(--primary-700);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-6);
}

.section-badge i {
  font-size: var(--text-base);
}

/* Service Cards */
.services-grid {
  gap: var(--space-8);
}

.service-card {
  padding: var(--space-8);
    text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.service-card:hover::before {
  transform: scaleX(1);
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  border-radius: var(--radius-2xl);
    display: flex;
  align-items: center;
    justify-content: center;
  margin: 0 auto var(--space-6);
  transition: all var(--transition-normal);
}

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

.service-icon i {
  font-size: var(--text-3xl);
  color: white;
}

.service-card h3 {
  margin-bottom: var(--space-4);
  color: var(--neutral-900);
}

.service-card p {
  margin-bottom: var(--space-6);
  color: var(--neutral-600);
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: var(--space-8);
  text-align: left;
}

.service-features li {
  padding: var(--space-2) 0;
  color: var(--neutral-600);
  font-size: var(--text-sm);
  position: relative;
  padding-left: calc(var(--space-6) + 6px);
}

.service-features li::before {
  content: "\f00c";
  /* position: absolute; */
  left: 0;
  color: var(--primary-600);
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* solid */
  width: 1.25em; /* reserve space for icon */
  text-align: center;
  line-height: 1; /* align with text nicely */
  margin-right: 15px;
}

/* Solution Cards */
.solutions-grid {
  gap: var(--space-6);
}

.solution-card {
    text-align: center;
  padding: var(--space-8);
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-200);
  transition: all var(--transition-normal);
    position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  background: linear-gradient(135deg, var(--primary-50), var(--accent-50));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.solution-card:hover::before {
  opacity: 1;
}

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

.solution-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  position: relative;
  z-index: 1;
}

.solution-icon i {
  font-size: var(--text-2xl);
  color: white;
}

.solution-card h3 {
  margin-bottom: var(--space-4);
  color: var(--neutral-900);
  position: relative;
  z-index: 1;
}

.solution-card p {
  margin-bottom: var(--space-6);
  color: var(--neutral-600);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.solution-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--primary-600);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--text-sm);
  transition: all var(--transition-normal);
  position: relative;
  z-index: 1;
}

.solution-link:hover {
  color: var(--primary-700);
  gap: var(--space-3);
}

/* Case Study Cards */
.case-studies-grid {
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.case-study-card {
  padding: var(--space-8);
  transition: all var(--transition-normal);
}

.case-study-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.case-study-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--neutral-200);
}

.company-logo {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
  justify-content: center;
}

.company-logo i {
  font-size: var(--text-xl);
  color: white;
}

.company-info h4 {
  margin-bottom: var(--space-1);
  color: var(--neutral-900);
  font-size: var(--text-lg);
}

.industry {
  font-size: var(--text-sm);
  color: var(--neutral-600);
  background: var(--neutral-100);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
}

.case-study-content h3 {
  margin-bottom: var(--space-4);
  color: var(--neutral-900);
  font-size: var(--text-xl);
  line-height: 1.3;
}

.case-study-content p {
  margin-bottom: var(--space-6);
  color: var(--neutral-600);
  line-height: 1.6;
}

.case-study-metrics {
  display: flex;
  gap: var(--space-6);
}

.metric {
  text-align: center;
}

.metric-value {
  display: block;
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--primary-600);
  line-height: 1;
}

.metric-label {
    display: block;
  font-size: var(--text-sm);
  color: var(--neutral-600);
  margin-top: var(--space-1);
}

/* Service Hero */
.service-hero {
  padding: var(--space-32) 0 var(--space-20);
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--accent-50) 100%);
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--primary-100);
  color: var(--primary-700);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-6);
}

.service-hero h1 {
  font-size: var(--text-6xl);
  margin-bottom: var(--space-6);
}

.service-hero p {
  font-size: var(--text-xl);
  margin-bottom: var(--space-8);
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

/* Feature Cards */
.feature-card {
  background: white;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-200);
  transition: all var(--transition-normal);
    text-align: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
}

.feature-icon i {
  font-size: var(--text-3xl);
  color: white;
}

.feature-card h3 {
  margin-bottom: var(--space-4);
  color: var(--neutral-900);
}

.feature-card p {
  color: var(--neutral-600);
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  background: var(--neutral-900);
  color: white;
  padding: var(--space-20) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
        text-align: center;
}

.stat-item {
  padding: var(--space-6);
}

.stat-value {
        display: block;
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--primary-400);
  margin-bottom: var(--space-2);
}

.stat-description {
  font-size: var(--text-lg);
  color: var(--neutral-300);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-600), var(--accent-600));
  color: white;
  padding: var(--space-20) 0;
        text-align: center;
    }

.cta-content h2 {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-6);
  color: white;
}

.cta-content p {
  font-size: var(--text-xl);
  margin-bottom: var(--space-8);
  color: rgba(255, 255, 255, 0.9);
    }

    .cta-buttons {
  display: flex;
  gap: var(--space-4);
        justify-content: center;
}

.cta-buttons .btn {
  background: white;
  color: var(--primary-600);
}

.cta-buttons .btn:hover {
  background: var(--neutral-100);
  transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
/* All responsive styles moved to css/responsive/global.css to avoid conflicts */

/* Navigation and Footer Specific Responsive Styles Only */
/* All general responsive styles moved to css/responsive/global.css */


/* ========================================
   PAGE-SPECIFIC STYLES
   ======================================== */

/* About Page Styles */
.mission-values {
  padding: var(--space-20) 0;
  background: var(--neutral-50);
}

.mission-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-12);
  align-items: center;
  margin-bottom: var(--space-16);
}

.mission-text h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-6);
  color: var(--neutral-900);
}

.mission-text p {
  font-size: var(--text-lg);
  color: var(--neutral-600);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.mission-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mission-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
}

.mission-icon i {
  font-size: var(--text-4xl);
  color: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.value-card {
  background: white;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-normal);
  border: 1px solid var(--neutral-200);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
}

.value-icon i {
  font-size: var(--text-3xl);
  color: var(--primary-600);
}

.value-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
  color: var(--neutral-900);
}

.value-card p {
  color: var(--neutral-600);
  line-height: 1.6;
}

/* Leadership Team */
.leadership-team {
  padding: var(--space-20) 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.team-member {
  background: white;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-200);
  transition: all var(--transition-normal);
}

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

.member-photo {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
}

.member-photo i {
  font-size: var(--text-3xl);
  color: white;
}

.member-info h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
  color: var(--neutral-900);
}

.member-title {
  color: var(--primary-600);
  font-weight: 600;
  margin-bottom: var(--space-4);
  display: block;
}

.member-info p {
  color: var(--neutral-600);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.member-social {
  display: flex;
  gap: var(--space-4);
}

.member-social a {
  width: 40px;
  height: 40px;
  background: var(--neutral-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-600);
  transition: all var(--transition-normal);
}

.member-social a:hover {
  background: var(--primary-500);
  color: white;
  transform: translateY(-2px);
}

/* Company Stats */
.company-stats {
  background: var(--neutral-900);
  color: white;
  padding: var(--space-20) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}

.stat-item {
  padding: var(--space-6);
}

.stat-number {
  display: block;
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--primary-400);
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: var(--text-lg);
  color: var(--neutral-300);
}

/* Careers Section */
.careers {
  padding: var(--space-20) 0;
  background: var(--neutral-50);
}

.careers-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-12);
}

.careers-intro h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-8);
  color: var(--neutral-900);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.benefit-item i {
  color: var(--primary-500);
  font-size: var(--text-lg);
}

.job-listings h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-8);
  color: var(--neutral-900);
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.job-item {
  background: white;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-200);
  transition: all var(--transition-normal);
}

.job-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-4);
}

.job-header h4 {
  font-size: var(--text-xl);
  color: var(--neutral-900);
}

.job-type {
  background: var(--primary-100);
  color: var(--primary-700);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
}

.job-item p {
  color: var(--neutral-600);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.job-requirements {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.job-requirements span {
  background: var(--neutral-100);
  color: var(--neutral-700);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
}

.job-apply {
  background: var(--primary-500);
  color: white;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-normal);
  display: inline-block;
}

.job-apply:hover {
  background: var(--primary-600);
  transform: translateY(-2px);
}

.careers-cta {
  text-align: center;
  margin-top: var(--space-8);
  padding: var(--space-8);
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.careers-cta p {
  color: var(--neutral-600);
  margin-bottom: var(--space-6);
}

/* Contact Page Styles */
.contact-section {
  padding: var(--space-20) 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-12);
}

.contact-form-section {
  background: white;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-200);
}

.form-header {
  margin-bottom: var(--space-8);
}

.form-header h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
  color: var(--neutral-900);
}

.form-header p {
  color: var(--neutral-600);
  font-size: var(--text-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--neutral-700);
  margin-bottom: var(--space-2);
}

.form-field {
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  transition: all var(--transition-normal);
  background: white;
}

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

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--neutral-700);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-500);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.form-note {
  font-size: var(--text-sm);
  color: var(--neutral-500);
  text-align: center;
  margin-top: var(--space-4);
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-info-card,
.quick-links-card {
  background: white;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-200);
}

.contact-info-card h3,
.quick-links-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-6);
  color: var(--neutral-900);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-method {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: var(--text-lg);
}

.contact-details h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-1);
  color: var(--neutral-900);
}

.contact-details p {
  font-weight: 600;
  color: var(--primary-600);
  margin-bottom: var(--space-1);
}

.contact-details span {
  font-size: var(--text-sm);
  color: var(--neutral-500);
}

.quick-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.quick-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--neutral-700);
  transition: all var(--transition-normal);
  border: 1px solid var(--neutral-200);
}

.quick-link:hover {
  background: var(--primary-50);
  border-color: var(--primary-200);
  color: var(--primary-700);
}

.quick-link i {
  color: var(--primary-500);
  font-size: var(--text-lg);
}

/* Map Section */
.map-section {
  padding: var(--space-16) 0;
  background: var(--neutral-50);
}

.map-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.map-header h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
  color: var(--neutral-900);
}

.map-header p {
  color: var(--neutral-600);
  font-size: var(--text-lg);
}

.map-container {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.map-placeholder {
  padding: var(--space-12);
  text-align: center;
  background: linear-gradient(135deg, var(--primary-50), var(--accent-50));
}

.map-placeholder i {
  font-size: var(--text-5xl);
  color: var(--primary-500);
  margin-bottom: var(--space-4);
}

.map-placeholder h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
  color: var(--neutral-900);
}

.map-placeholder p {
  color: var(--neutral-600);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

.map-details {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.map-detail {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--neutral-600);
}

.map-detail i {
  color: var(--primary-500);
}

/* Contact FAQ */
.contact-faq {
  padding: var(--space-20) 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.faq-item {
  background: white;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-200);
}

.faq-item h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
  color: var(--neutral-900);
}

.faq-item p {
  color: var(--neutral-600);
  line-height: 1.6;
}

/* Pricing Page Styles */
.pricing-plans {
  padding: var(--space-20) 0;
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.toggle-label {
  font-weight: 600;
  color: var(--neutral-700);
}

.discount-badge {
  background: var(--accent-500);
  color: white;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  margin-left: var(--space-2);
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--neutral-300);
  transition: var(--transition-normal);
  border-radius: 30px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition-normal);
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--primary-500);
}

input:checked + .slider:before {
  transform: translateX(30px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.pricing-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--neutral-200);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

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

.pricing-card.featured {
  border-color: var(--primary-500);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: var(--primary-500);
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
}

.pricing-header-card {
  padding: var(--space-8);
  text-align: center;
  border-bottom: 1px solid var(--neutral-200);
}

.pricing-header-card h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
  color: var(--neutral-900);
}

.price-container {
  margin-bottom: var(--space-4);
}

.price {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--neutral-900);
}

.price span {
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--neutral-500);
}

.pricing-header-card p {
  color: var(--neutral-600);
  font-size: var(--text-lg);
}

.pricing-features {
  padding: var(--space-8);
}

.pricing-features h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
  color: var(--neutral-900);
}

.pricing-features ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--neutral-700);
}

.pricing-features li i {
  color: var(--primary-500);
  font-size: var(--text-sm);
}

.pricing-footer {
  padding: var(--space-8);
  border-top: 1px solid var(--neutral-200);
  text-align: center;
}

.setup-fee {
  font-size: var(--text-sm);
  color: var(--neutral-500);
  margin-top: var(--space-3);
}

/* Pricing Add-ons */
.pricing-addons {
  padding: var(--space-20) 0;
  background: var(--neutral-50);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.addon-card {
  background: white;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-200);
  text-align: center;
  transition: all var(--transition-normal);
}

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

.addon-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
}

.addon-icon i {
  font-size: var(--text-3xl);
  color: white;
}

.addon-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
  color: var(--neutral-900);
}

.addon-card p {
  color: var(--neutral-600);
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

.addon-price {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--primary-600);
  margin-bottom: var(--space-6);
}

.addon-price span {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--neutral-500);
}

.addon-features {
  list-style: none;
  text-align: left;
}

.addon-features li {
  padding: var(--space-2) 0;
  color: var(--neutral-600);
  border-bottom: 1px solid var(--neutral-100);
}

.addon-features li:last-child {
  border-bottom: none;
}

/* ROI Calculator */
.roi-calculator {
  padding: var(--space-20) 0;
}

.roi-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.roi-text h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
  color: var(--neutral-900);
}

.roi-text p {
  color: var(--neutral-600);
  margin-bottom: var(--space-8);
  font-size: var(--text-lg);
}

.roi-inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.input-group {
  display: flex;
  flex-direction: column;
}

.input-group label {
  font-weight: 600;
  color: var(--neutral-700);
  margin-bottom: var(--space-2);
}

.roi-input {
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  transition: all var(--transition-normal);
}

.roi-input:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.roi-results {
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  color: white;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  text-align: center;
}

.roi-results h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-8);
}

.roi-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.roi-metric {
  text-align: center;
}

.metric-value {
  font-size: var(--text-3xl);
  font-weight: 800;
  margin-bottom: var(--space-2);
}

.metric-label {
  font-size: var(--text-sm);
  opacity: 0.9;
  margin-bottom: var(--space-1);
}

.metric-change {
  font-size: var(--text-sm);
  opacity: 0.8;
}

.roi-note {
  font-size: var(--text-sm);
  opacity: 0.8;
  margin-top: var(--space-6);
}

/* Pricing FAQ */
.pricing-faq {
  padding: var(--space-20) 0;
  background: var(--neutral-50);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-item {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-200);
  overflow: hidden;
}

.faq-question {
  padding: var(--space-6);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-normal);
}

.faq-question:hover {
  background: var(--neutral-50);
}

.faq-question h4 {
  font-size: var(--text-lg);
  color: var(--neutral-900);
}

.faq-question i {
  color: var(--primary-500);
  transition: transform var(--transition-normal);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-answer p {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--neutral-600);
  line-height: 1.6;
}

.faq-item.active .faq-question {
  background: var(--primary-50);
}

/* Case Studies Page Styles */
.results-overview {
  padding: var(--space-20) 0;
  background: var(--neutral-50);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.result-stat {
  background: white;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-200);
  text-align: center;
  transition: all var(--transition-normal);
}

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

.stat-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
}

.stat-icon i {
  font-size: var(--text-3xl);
  color: white;
}

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

.stat-number {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--primary-600);
  margin-bottom: var(--space-2);
}

.stat-label {
  color: var(--neutral-600);
  font-size: var(--text-lg);
}

/* Print Styles */
@media print {
  .navbar,
  .mobile-menu,
  .mobile-overlay,
  .cta-section,
  .footer {
    display: none !important;
  }
  
  .hero {
    padding: var(--space-4) 0;
  }
  
  .hero-content h1 {
    color: black !important;
  }
  
  .hero-content p {
    color: black !important;
  }
  
  * {
    background: white !important;
    color: black !important;
  }
}

/* ====================================
   MODERN FOOTER - COMPLETE REDESIGN
   ==================================== */

.modern-footer {
  background: linear-gradient(to bottom, #0A0F1E 0%, #0F172A 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 0;
  position: relative;
  margin-top: 100px;
  border-top: 2px solid rgba(59, 130, 246, 0.2);
}

.modern-footer .container {
  padding: 80px 20px 0;
}

/* Newsletter CTA Section */
.footer-newsletter-cta {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(29, 78, 216, 0.15));
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 20px;
  padding: 50px 50px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.footer-newsletter-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  animation: newsletter-glow 8s ease-in-out infinite;
}

@keyframes newsletter-glow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; }
  50% { transform: translate(30px, 30px) rotate(180deg); opacity: 0.6; }
}

.newsletter-cta-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.newsletter-cta-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3B82F6, #1D4ED8);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
  flex-shrink: 0;
}

.newsletter-cta-icon i {
  font-size: 30px;
  color: white;
}

.newsletter-cta-text {
  flex: 1;
}

.newsletter-cta-text h3 {
  color: white;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
}

.newsletter-cta-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin: 0;
  line-height: 1.6;
}

.newsletter-cta-form {
  display: flex;
  gap: 12px;
  align-items: stretch;
  flex-shrink: 0;
}

.newsletter-input-container {
  position: relative;
  min-width: 320px;
}

.input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  z-index: 1;
}

.newsletter-input-container input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.newsletter-input-container input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-input-container input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.newsletter-cta-btn {
  background: linear-gradient(135deg, #3B82F6, #1D4ED8);
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.newsletter-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
}

.newsletter-cta-btn.loading i {
  animation: spin 1s linear infinite;
}

.newsletter-success-message {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  color: #10B981;
  font-size: 16px;
  font-weight: 600;
  animation: fadeInSlide 0.4s ease;
}

/* Error States */
.newsletter-input-container input.error {
  border-color: #EF4444;
  background: rgba(239, 68, 68, 0.08);
}

.newsletter-input-container input.error:focus {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-message {
  color: #EF4444;
  font-size: 13px;
  margin-top: 6px;
  padding: 8px 12px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  animation: slideDown 0.3s ease;
}

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

/* Footer Separator Line */
.footer-separator-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  margin: 60px 0 50px;
}

@media (max-width: 768px) {
  .footer-separator-line {
    margin: 40px 0 35px;
  }
}

@media (max-width: 480px) {
  .footer-separator-line {
    margin: 30px 0 25px;
  }
}

/* Contact Info Cards Section */
.footer-contact-cards-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  padding: 0 20px;
}

@media (max-width: 1024px) {
  .footer-contact-cards-section {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
  }
}

@media (max-width: 768px) {
  .footer-contact-cards-section {
    margin-bottom: 40px;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .footer-contact-cards-section {
    margin-bottom: 35px;
  }
}

/* Main Footer Content */
.footer-main-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  /* padding-bottom: 60px; */
  margin-bottom: 40px;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

/* Company Info Section */
.footer-company-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-brand-section {
  max-width: 500px;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #3B82F6, #1D4ED8);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.footer-logo-icon i {
  font-size: 28px;
  color: white;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-name {
  font-size: 32px;
  font-weight: 900;
  color: white;
  letter-spacing: -0.5px;
  line-height: 1;
}

.footer-logo-tag {
  font-size: 12px;
  color: #60A5FA;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

.footer-company-desc {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-size: 15px;
  margin: 0;
}

/* Contact Info Cards */
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.5s ease;
}

.contact-info-card:hover::before {
  left: 100%;
}

.contact-info-card:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #3B82F6, #1D4ED8);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}

.contact-info-card:hover .contact-card-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.contact-card-icon i {
  font-size: 24px;
  color: white;
}

.contact-card-details {
  flex: 1;
}

.contact-card-details h5 {
  color: white;
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.contact-card-details p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}

/* Quick Links Section */
.footer-quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-links-column h4 {
  color: white;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

.footer-links-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links-column a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-links-column a::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: #3B82F6;
  border-radius: 1px;
  transition: width 0.3s ease;
}

.footer-links-column a:hover {
  color: #60A5FA;
  transform: translateX(8px);
}

.footer-links-column a:hover::before {
  width: 10px;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0 40px;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-copyright-section p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin: 0;
}

.footer-social-section {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-follow-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: #3B82F6;
  color: #60A5FA;
  transform: translateY(-3px);
}

.footer-legal-links {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: #60A5FA;
}

.footer-legal-links span {
  color: rgba(255, 255, 255, 0.3);
}

/* Newsletter Section - Fresh Clean Design */
.newsletter-section {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(29, 78, 216, 0.08));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  padding: 45px 40px;
  margin-bottom: 60px;
  position: relative;
}

.newsletter-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
}

.newsletter-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3B82F6, #1D4ED8);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.newsletter-icon-wrapper i {
  font-size: 26px;
  color: white;
}

.newsletter-text-wrapper {
  flex: 1;
}

.newsletter-text-wrapper h3 {
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 6px 0;
  letter-spacing: -0.3px;
}

.newsletter-text-wrapper p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  align-items: stretch;
  flex-shrink: 0;
}

.newsletter-input-wrapper {
  position: relative;
  min-width: 300px;
}

.newsletter-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.3);
  font-size: 16px;
  z-index: 1;
}

.newsletter-input-wrapper input {
  width: 100%;
  padding: 14px 16px 14px 46px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: white;
  font-size: 15px;
  transition: all 0.3s ease;
}

.newsletter-input-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-input-wrapper input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: #3B82F6;
}

.newsletter-submit-btn {
  background: #3B82F6;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-submit-btn:hover {
  background: #2563EB;
  transform: translateY(-2px);
}

.newsletter-submit-btn:active {
  transform: translateY(0);
}

.newsletter-submit-btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.newsletter-submit-btn.loading .btn-icon {
  animation: spin 1s linear infinite;
}

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

.btn-icon {
  transition: transform 0.3s ease;
}

.newsletter-submit-btn:hover .btn-icon {
  transform: translateX(3px);
}

.newsletter-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 10px;
  color: #10B981;
  font-size: 15px;
  font-weight: 600;
  animation: fadeInSlide 0.4s ease;
}

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

.newsletter-success i {
  font-size: 20px;
}

/* Modern Footer Responsive Styles */
@media (max-width: 1200px) {
  .modern-footer .container {
    padding: 60px 20px 0;
  }
  
  .footer-newsletter-cta {
    padding: 40px;
    margin-bottom: 60px;
  }
  
  .newsletter-cta-content {
    gap: 30px;
  }
  
  .footer-main-content {
    gap: 60px;
  }
}

@media (max-width: 1024px) {
  .newsletter-cta-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .newsletter-cta-icon {
    margin: 0 auto;
  }
  
  .newsletter-cta-text {
    text-align: center;
  }
  
  .newsletter-cta-form {
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .newsletter-input-container {
    min-width: 100%;
  }
  
  .newsletter-cta-btn {
    width: 100%;
    justify-content: center;
  }
  
  .footer-main-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .footer-quick-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
  
  .footer-bottom-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .modern-footer {
    margin-top: 60px;
  }
  
  .modern-footer .container {
    padding: 50px 20px 0;
  }
  
  .footer-newsletter-cta {
    padding: 35px 30px;
    margin-bottom: 50px;
  }
  
  .newsletter-cta-icon {
    width: 60px;
    height: 60px;
  }
  
  .newsletter-cta-icon i {
    font-size: 26px;
  }
  
  .newsletter-cta-text h3 {
    font-size: 24px;
  }
  
  .newsletter-cta-text p {
    font-size: 15px;
  }
  
  .contact-info-card {
    padding: 24px;
  }
  
  .contact-card-icon {
    width: 50px;
    height: 50px;
  }
  
  .contact-card-icon i {
    font-size: 22px;
  }
  
  .contact-card-details h5 {
    font-size: 12px;
  }
  
  .contact-card-details p {
    font-size: 15px;
  }
  
  .footer-main-content {
    gap: 50px;
    padding-bottom: 50px;
    margin-bottom: 35px;
  }
  
  .footer-brand-section {
    max-width: 100%;
  }
  
  .footer-logo-container {
    gap: 14px;
    margin-bottom: 18px;
  }
  
  .footer-logo-icon {
    width: 52px;
    height: 52px;
  }
  
  .footer-logo-icon i {
    font-size: 24px;
  }
  
  .footer-logo-name {
    font-size: 28px;
  }
  
  .footer-company-desc {
    font-size: 14px;
  }
  
  .footer-quick-links {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links-column h4 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .footer-bottom-bar {
    padding: 25px 0 35px;
    gap: 20px;
  }
  
  .footer-copyright-section p {
    font-size: 13px;
  }
  
  .social-follow-text {
    font-size: 13px;
  }
  
  .footer-social-link {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
  
  .footer-legal-links {
    gap: 12px;
  }
  
  .footer-legal-links a {
    font-size: 13px;
  }
  
  .footer-legal-links span {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .modern-footer .container {
    padding: 40px 15px 0;
  }
  
  .footer-newsletter-cta {
    padding: 30px 20px;
    margin-bottom: 40px;
  }
  
  .newsletter-cta-icon {
    width: 56px;
    height: 56px;
  }
  
  .newsletter-cta-icon i {
    font-size: 24px;
  }
  
  .newsletter-cta-text h3 {
    font-size: 22px;
  }
  
  .newsletter-cta-text p {
    font-size: 14px;
  }
  
  .newsletter-input-container {
    margin-bottom: 12px;
  }
  
  .newsletter-input-container input {
    padding: 14px 16px 14px 46px;
    font-size: 15px;
  }
  
  .newsletter-cta-btn {
    padding: 14px 28px;
    font-size: 15px;
  }
  
  .contact-info-card {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }
  
  .contact-card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
  }
  
  .contact-card-icon i {
    font-size: 20px;
  }
  
  .contact-card-details h5 {
    font-size: 11px;
    margin-bottom: 6px;
  }
  
  .contact-card-details p {
    font-size: 14px;
  }
  
  .footer-main-content {
    gap: 40px;
    padding-bottom: 40px;
    margin-bottom: 30px;
  }
  
  .footer-logo-icon {
    width: 48px;
    height: 48px;
  }
  
  .footer-logo-icon i {
    font-size: 22px;
  }
  
  .footer-logo-name {
    font-size: 26px;
  }
  
  .footer-logo-tag {
    font-size: 11px;
  }
  
  .footer-company-desc {
    font-size: 14px;
  }
  
  .footer-quick-links {
    gap: 35px;
  }
  
  .footer-links-column h4 {
    font-size: 15px;
  }
  
  .footer-links-column a {
    font-size: 14px;
  }
  
  .footer-bottom-bar {
    flex-direction: column;
    align-items: center;
    padding: 25px 0 30px;
  }
  
  .footer-social-section {
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}