:root {
  --primary-color: #0165f6;
  --secondary-color: #182844;
  --text-light: #ffffff;
  --text-dark: #1a1a1a;
  --text-gray: #6b7280;
  --background-light: #ffffff;
  --background-dark: #0a0f1e;
  --grey-bg: #f8fafc;
  --accent-gradient: linear-gradient(135deg, var(--primary-color), #0052cc);

  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  font-weight: 400;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--background-light);
  color: var(--text-dark);
  overflow-x: hidden;
}


.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}



/* NAVIGATION MENU */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu > li {
  position: relative;
}

.nav-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 1rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  z-index: 100;
}



.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  font-weight: 400;
  transition: background 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(1, 101, 246, 0.1);
  color: var(--primary-color);
}

/* CTA BUTTON */
.cta-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.2s ease;
  display: inline-block;
}

.cta-btn:hover {
  background: #0052cc;
  transform: translateY(-1px);
}

/* NAV ACTIONS */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hide mobile CTA on desktop */
.mobile-cta {
  display: none;
}

/* MOBILE STYLES */
@media (max-width: 992px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }

  /* .logo-img {
    height: 28px;
  } */

  /* Show hamburger */
  .mobile-menu-toggle {
    display: flex;
  }

  .desktop-only {
    display: none;
  }

  /* Mobile menu container */
  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateX(0);
    opacity: 1;
  }

  .nav-menu > li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-menu > li:last-child {
    border-bottom: none;
  }

  .nav-menu > li > a {
    display: block;
    padding: 1rem 0;
    font-weight: 600;
    font-size: 1rem;
  }

  /* MOBILE DROPDOWN */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(1, 101, 246, 0.03);
    padding: 0;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .dropdown.open .dropdown-menu {
    max-height: 500px;
    padding: 0.5rem 0;
  }

  .dropdown-menu li {
    padding-left: 1rem;
    border-bottom: none;
  }

  .dropdown-menu a {
    padding: 0.7rem 0;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-gray);
  }

  .dropdown-menu a:hover {
    background: transparent;
    color: var(--primary-color);
  }



  /* Mobile CTA */
  .mobile-cta {
    display: block;
    margin-top: 1rem;
    border-bottom: none;
  }

  .mobile-cta .cta-btn {
    color:#fff;
    width: 100%;
    text-align: center;
    padding: 0.9rem;
    display: block;
  }
}

/* DESKTOP DROPDOWN (hover only on desktop) */
@media (min-width: 993px) {
  .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}


@media (max-width: 768px) {
  .nav-container {
    padding: 0.875rem 1rem;
  }
  .nav-menu {
    top: 55px;
    max-height: calc(100vh - 55px);
  }
}


    .popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.popup-modal {
  background: #fff;
  width: 100%;
  max-width: 720px;
  border-radius: 12px;
  padding: 30px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  border: none;
  background: none;
  cursor: pointer;
}

.popup-title {
  margin-bottom: 20px;
  text-align: center;
}

/* Form layout */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.full-width {
  grid-column: span 2;
}

input, select, textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

button[type="submit"] {
  margin-top: 16px;
  width: 100%;
  padding: 12px;
  background: #000;
  color: #fff;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .full-width {
    grid-column: span 1;
  }
}



/* Hero Section */
.hero {
  position: relative;
  height: 30vh;
  min-height: 240px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0f1e 0%, #182844 100%);
  color: #fff;
  margin-top: 4rem;
}

.hero-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(77, 158, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.hero-text {
  color: white;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: 500;
  opacity: 0.92;
  letter-spacing: 0.5px;
}
/* Logo badge container */
.logo-badge.custom-logo {
  width: auto;
  height: 120px;
  border-radius: 20px;
  
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo image */
.logo-badge.custom-logo img {
  width: 100%;
  height: 120px;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 768px) {
  .logo-badge.custom-logo {
    width: 72px;
    height: 72px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .hero-wrapper {
    gap: 20px;
  }

  .logo-badge.custom-logo {
    width: auto;
    height: 60px;
    border-radius: 16px;
  }

  .logo-badge.custom-logo img {
    width: 100%;
  }
}






/* Content Section */
.content-section {
  padding: 90px 0;
  background: #f8fafc;
}



.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 56px;
}

/* Case Cards */
.case-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(10, 14, 39, 0.08);
  border: 1px solid rgba(1, 101, 246, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transition: height 0.4s ease;
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(1, 101, 246, 0.15);
  border-color: rgba(1, 101, 246, 0.2);
}

.case-card:hover::before {
  height: 100%;
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.card-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.case-card h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0052cc;
  letter-spacing: -0.5px;
}

.card-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: gray;
  font-weight: 400;
}

/* Results Card */
.results-card {
  background: linear-gradient(135deg, white 0%, var(--gray-50) 100%);
}

.metrics-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.metric {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--background-dark) 100%);
  padding: 28px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(1, 101, 246, 0.2);
  position: relative;
  overflow: hidden;
}

.metric::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.metric:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(1, 101, 246, 0.3);
}

.metric-value {
  font-size: 2.75rem;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.metric-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  position: relative;
  z-index: 1;
  line-height: 1.4;
}

.sidebar {
  position: sticky;
  top: 80px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nav-card {
  background: white;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.nav-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(1, 101, 246, 0.15);
}

.nav-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--text-gray);
  text-decoration: none;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.link-indicator {
  width: 6px;
  height: 6px;
  background: #cbd5e1;
  border-radius: 50%;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.arrow-icon {
  width: 16px;
  height: 16px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
  margin-left: auto;
}

.nav-link:hover {
  background: linear-gradient(135deg, rgba(1, 101, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
  color: var(--primary-color);
  padding-left: 20px;
}

.nav-link:hover .link-indicator {
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  box-shadow: 0 0 12px rgba(1, 101, 246, 0.4);
}

.nav-link:hover .arrow-icon {
  opacity: 1;
  transform: translateX(0);
}

.cta-card {
  background: linear-gradient(135deg, #182844 0%, #0165f6 100%);
  padding: 32px;
  border-radius: 20px;
  color: white;
  text-align: center;
  box-shadow: 0 20px 40px rgba(24, 40, 68, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -100%;
  right: -100%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.8s ease;
}

.cta-card:hover .cta-glow {
  top: -50%;
  right: -50%;
}

.cta-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(1, 101, 246, 0.4);
}

.cta-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
  animation: pulse 2s ease-in-out infinite;
}

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

.cta-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-card > p {
  font-size: 0.9375rem;
  opacity: 0.95;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}


/* Responsive */
@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .nav-card,
  .cta-card,
  .stats-card {
    flex: 1;
    min-width: 280px;
  }

  .hero-content {
    padding: 0 32px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 200px;
    height: auto;
    padding: 40px 0;
  }

  .hero-content {
    padding: 0 24px;
  }

  .hero-wrapper {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    margin-top: 20px;
  }

  /* .logo-container {
    margin: 0 auto;
  }

  .logo-badge {
    width: 80px;
    height: 80px;
    font-size: 42px;
    bottom: -15px;
  } */

  .hero-text {
    padding-top: 30px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .container {
    padding: 0 24px;
  }

  .content-section {
    padding: 60px 0;
  }

  .case-card {
    padding: 28px;
    margin-bottom: 24px;
  }

  .card-header {
    gap: 12px;
  }

  .card-icon {
    font-size: 28px;
  }

  .case-card h2 {
    font-size: 1.5rem;
  }

  .card-content {
    font-size: 1rem;
  }

  .metrics-container {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .metric {
    padding: 24px;
  }

  .metric-value {
    font-size: 2.2rem;
  }

  .sidebar {
    flex-direction: column;
    gap: 20px;
  }

  .nav-card,
  .cta-card,
  .stats-card {
    min-width: auto;
    flex: none;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 32px 0;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .container {
    padding: 0 16px;
  }

  .content-section {
    padding: 40px 0;
  }

  .case-card {
    padding: 20px;
    margin-bottom: 16px;
  }

  .card-header {
    gap: 10px;
  }

  .card-icon {
    font-size: 24px;
  }

  .case-card h2 {
    font-size: 1.25rem;
  }

  .card-content {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .metrics-container {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .metric {
    padding: 20px 16px;
  }

  .metric-value {
    font-size: 2rem;
  }

  .metric-label {
    font-size: 0.9rem;
  }

  .nav-card,
  .cta-card,
  .stats-card {
    padding: 24px;
  }

  .nav-title {
    font-size: 1.125rem;
  }

  .nav-link {
    font-size: 0.95rem;
  }

  .stats-card {
    grid-template-columns: 1fr;
  }

  .hero-glow {
    width: 400px;
    height: 400px;
    top: -30%;
    right: -30%;
  }
}





















/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
  padding: 40px 0;
  background: linear-gradient(180deg,#ffffff 0%, #f9fafb 100%);
  text-align: center;
  overflow: hidden;
}

.section-subtitle {
  display:inline-block;
  background: rgba(1,101,246,0.1);
  color: var(--primary-color);
  padding:6px 14px;
  font-size:12px;
  border-radius:20px;
  margin-bottom:15px;
}

.section-title-1 {
  font-size:40px;
  color: var(--secondary-color);
  margin-bottom:50px;
}
.section-title-1 span{
  font-style: italic;
}
.testimonial-wrapper {
  display:flex;
  flex-direction:column;
  gap:30px;
}



.testimonial-track {
  display:flex;
  gap:20px;
  padding: 10px;
  width: max-content;
}

.testimonial-card {
  background: var(--background-light);
  padding:14px;
  width:320px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  text-align:left;
  transition:0.3s;
}

.testimonial-card p {
  font-size:14px;
  color: var(--text-gray);
  margin-bottom:15px;
  line-height:1.6;
}

/* Profile */
.profile{
  display:flex;
  align-items:center;
  margin-bottom:15px;
}

.profile img{
  width:50px;
  height:50px;
  border-radius:50%;
  margin-right:15px;
}

.profile h4{
  font-size:16px;
  color: var(--secondary-color);
}

.profile p{
  font-size:13px;
  color: var(--text-gray);
}


.stars {
  color:#fbbf24;
}

/* Animation */
.scroll-left .testimonial-track {
  animation: scrollLeft 40s linear infinite;
}

/* RIGHT SCROLL */
.scroll-right .testimonial-track {
  animation: scrollRight 40s linear infinite;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Pause on hover */
.testimonial-row:hover .testimonial-track {
  animation-play-state: paused;
}

/* Responsive */
@media(max-width:768px){
  .testimonial-card {
    width:260px;
  }
  .section-title {
    font-size:28px;
  }
}









/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(
    135deg,
    rgba(1, 101, 246, 0.06),
    rgba(99, 102, 241, 0.04)
  );
  padding: 64px 0;
}

.cta-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
  margin-bottom: 40px;
}

.cta-container h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 16px;
}

.cta-container p {
  font-size: 1.05rem;
  color: #6b7280;
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* CTA Buttons */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-primary {
  background: var(--primary-color);
  color: #fff;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(1, 101, 246, 0.35);
}

.cta-secondary {
  border: 2px solid rgba(1, 101, 246, 0.25);
  color: var(--primary-color);
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: rgba(1, 101, 246, 0.08);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .cta-section {
    padding: 70px 20px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 320px;
    margin: auto;
  }
}






.footer {
  background: var(--secondary-color);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  
  flex-direction: column;
}

.footer-column h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--text-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
}
.footer-description {
  max-width: 360px;
  margin: 1rem 0 1.5rem;
  line-height: 1.7;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

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

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--accent-primary);
  transform: translateY(-3px);
}


.footer-newsletter {
  margin-top: 20px;
}

.newsletter-title {
  color: #fff !important;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 10px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  max-width: 320px;
  margin-bottom: 20px;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px;
  color: #333;
  font-size: 14px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #777;
}

.newsletter-btn {
  background: #0165f6 !important;
  border: none;
  width: 20% !important;
  border-radius: 6px;
  color: #111;
  font-size: 14px;
  height: 38px;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 0px !important;
}

.newsletter-btn:hover {
  background: #bbcbe2;
}

.success-state {
  display: none;
  color: #0165f6;
  margin-top: 15px;
  font-size: 14px;
}