/* FAQ Popup Styles */
/* FAQ Popup Styles - Theme Aware */
.faq-popup {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}
.faq-popup-content {
  background: var(--faq-bg, #fff);
  color: var(--faq-text, #222);
  border-radius: 16px 16px 16px 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 28px 24px 24px 20px;
  min-width: 240px;
  max-width: 300px;
  min-height: 380px;
  max-height: 70vh;
  overflow-y: auto;
  position: relative;
  animation: faq-popup-in 0.3s cubic-bezier(.4,0,.2,1);
  pointer-events: auto;
  border: 1.5px solid var(--faq-accent, #ff7700);
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.faq-popup-close {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 1.6rem;
  color: var(--faq-accent, #ff7700);
  cursor: pointer;
  font-weight: bold;
  transition: color 0.2s;
}
.faq-popup-close:hover {
  color: #d35400;
}
.faq-popup h3 {
  margin-top: 0;
  color: var(--faq-accent, #ff7700);
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.faq-popup ul {
  padding-left: 18px;
  margin: 0;
  list-style: none;
}
.faq-popup li {
  margin-bottom: 14px;
  font-size: 1.05rem;
  line-height: 1.5;
}
.faq-popup strong {
  color: var(--faq-accent, #ff7700);
}

/* FAQ Floating Button Styles */
.faq-float-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10000;
  background: var(--faq-accent, #ff7700);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.faq-float-btn:hover {
  background: #d35400;
  color: #fff;
}
@keyframes faq-popup-in {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@media (max-width: 600px) {
  .faq-popup-content {
    min-width: 90vw;
    max-width: 98vw;
    min-height: 60vw;
    max-height: 90vh;
    padding: 18px 10px 16px 14px;
    font-size: 0.98rem;
  }
  .faq-popup {
    right: 0;
    bottom: 0;
  }
}

/* Light Theme */
[data-theme="light"] .faq-popup-content {
  --faq-bg: #fff;
  --faq-text: #222;
  --faq-accent: #ff7700;
}

/* Dark Theme */
[data-theme="dark"] .faq-popup-content {
  --faq-bg: #181818;
  --faq-text: #f3f3f3;
  --faq-accent: #ff9900;
  border: 1.5px solid var(--faq-accent, #ff9900);
}
@media (max-width: 600px) {
  .contact-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    text-align: left !important;
  }
  .contact-icon {
    min-width: 36px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: 22px;
    margin-top: 2px;
  }
  .contact-details {
    flex: 1;
    text-align: left !important;
  }
}
@import "https://unpkg.com/open-props/easings.min.css";

/* =====================
   ROOT VARIABLES
===================== */
:root {
  --bg-dark: #0f0f0f;
  --bg-light: #f8f9fa;
  
  --nav-bg-dark: rgba(35, 35, 35, 0.85);
  --nav-bg-light: rgba(255, 255, 255, 0.95);
  
  --text-dark: #ffffff;
  --text-light: #1a1a1a;
  
  --hero-bg-dark: linear-gradient(180deg, #0c0c0c 0%, #111 100%);
  --hero-bg-light: linear-gradient(180deg, #ffffff 0%, #f0f0f0 100%);
  
  --badge-bg-dark: rgba(255, 255, 255, 0.08);
  --badge-bg-light: rgba(0, 0, 0, 0.05);
  --badge-border-dark: rgba(255, 255, 255, 0.15);
  --badge-border-light: rgba(0, 0, 0, 0.1);
  
  --description-dark: #cfcfcf;
  --description-light: #6c757d;
  
  --lang-btn-border-dark: rgba(255, 255, 255, 0.15);
  --lang-btn-border-light: rgba(0, 0, 0, 0.15);
  
  --icon-fill-dark: #888888;
  --icon-fill-light: #666666;
  --icon-fill-hover-dark: #aaaaaa;
  --icon-fill-hover-light: #333333;
  
  --accent-orange: #ff7c1c;
  --accent-orange-light: #ed7116;
}

/* =====================
   GLOBAL STYLES
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background: #ffffff;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* =====================
   THEME
===================== */
[data-theme="dark"] {
  color: var(--text-dark);
}

[data-theme="light"] {
  color: var(--text-light);
}

/* =====================
   NAVBAR
===================== */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1300px;
  padding: 14px 22px;
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  
  border-radius: 999px;
  backdrop-filter: blur(14px);
  transition: all 0.3s ease;
  z-index: 1000;
  
  background: var(--nav-bg-dark);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.navbar.navbar-hidden {
  transform: translateX(-50%) translateY(-100%);
  opacity: 0;
}

[data-theme="light"] .navbar {
  background: var(--nav-bg-light);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* LOGO */
.logo img {
  /* height: 55px; */
  width: 60px;
  transition: transform 0.2s ease;
}

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

/* CENTER MENU */
.nav-center {
  display: flex;
  gap: 28px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-center a {
  text-decoration: none;
  color: inherit;
  font-size: 15px;
  font-weight: 500;
  opacity: 0.9;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-center a:hover {
  opacity: 1;
  color: var(--accent-orange);
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}

  .mobile-menu-toggle.active span:first-child {
  transform: rotate(45deg) translateY(7px);
}

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

.mobile-menu-toggle.active span:last-child {
  transform: rotate(-45deg) translateY(-7px);
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
}

/* RIGHT */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* LANGUAGE BUTTON */
.lang-btn {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 25px;
  border: 1.5px solid var(--lang-btn-border-dark);
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-size: 13px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

[data-theme="dark"] .lang-btn {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--lang-btn-border-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .lang-btn {
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--lang-btn-border-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

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

.lang-btn:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.3);
}

.lang-flag {
  font-size: 16px;
  transition: transform 0.3s ease;
  filter: brightness(1);
}

.lang-btn:hover .lang-flag {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.lang-text {
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.lang-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.lang-btn:hover .lang-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

/* Loading animation for language switch */
.lang-btn.switching {
  pointer-events: none;
}

.lang-btn.switching .lang-text {
  animation: fadeSwitch 0.6s ease-in-out;
}

@keyframes fadeSwitch {
  0% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive design for language button */
@media (max-width: 768px) {
  .lang-btn {
    padding: 8px 12px;
    gap: 6px;
  }
  
  .lang-text {
    display: none;
  }
  
  .lang-flag {
    font-size: 18px;
  }
  
  .lang-btn::after {
    content: attr(data-lang-short);
    font-size: 12px;
    font-weight: 600;
    margin-left: 4px;
  }
}

/* Language notification styles */
.lang-notification {
  position: fixed;
  top: 90px;
  right: 20px;
  z-index: 10000;
  pointer-events: none;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.notification-icon {
  font-size: 16px;
  animation: checkmark 0.5s ease-in-out;
}

.notification-text {
  font-weight: 500;
}

@keyframes checkmark {
  0% { 
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Enhanced accessibility */
.lang-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.3);
}

.lang-btn:active {
  transform: translateY(1px) scale(0.98);
}

/* Dark theme adjustments for notification */
[data-theme="dark"] .lang-notification {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ff9a4d 100%);
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.4);
}

[data-theme="light"] .lang-notification {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ff9a4d 100%);
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.3);
}

/* =====================
   MOBILE NAVIGATION
===================== */

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}

/* Mobile menu button colors */
[data-theme="dark"] .mobile-menu-toggle {
  color: #ffffff;
}

[data-theme="light"] .mobile-menu-toggle {
  color: #1a1a1a;
}

.mobile-menu-toggle.active span:first-child {
  transform: translateY(8px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Styles - Available on all screen sizes */
/* Override rules to ensure menu is hidden by default */
.mobile-menu-backdrop:not(.active) {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.mobile-menu-overlay:not(.active) {
  transform: translateX(100%) !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: var(--nav-bg-dark);
  backdrop-filter: blur(20px);
  z-index: 999;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

[data-theme="light"] .mobile-menu-overlay {
  background: var(--nav-bg-light);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

.mobile-menu-content {
  padding: 80px 30px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mobile-menu-item {
  margin-bottom: 0;
}

.mobile-menu-item a {
  font-size: 20px;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  opacity: 0.9;
  transition: all 0.2s ease;
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .mobile-menu-item a {
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

.mobile-menu-item a:hover {
  opacity: 1;
  color: var(--accent-orange);
  padding-left: 10px;
}

.mobile-menu-controls {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.mobile-control-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .mobile-control-item {
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

.mobile-control-item label {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
  flex: 1;
}

.mobile-lang-btn,
.mobile-theme-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid var(--lang-btn-border-dark);
  background: rgba(255, 255, 255, 0.05);
  color: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 12px;
  font-weight: 500;
  min-width: 80px;
  justify-content: center;
}

[data-theme="light"] .mobile-lang-btn,
[data-theme="light"] .mobile-theme-toggle {
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--lang-btn-border-light);
}

.mobile-lang-btn:hover,
.mobile-theme-toggle:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: white;
  transform: scale(1.05);
}

.mobile-lang-btn .lang-flag {
  font-size: 14px;
}

.mobile-theme-toggle .theme-label {
  margin-left: 4px;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .navbar {
    width: calc(100% - 20px);
    padding: 12px 18px;
    top: 15px;
    justify-content: space-between;
  }
  
  /* Show Home, About, Download inline with logo and menu button */
  .nav-center {
    display: flex;
    gap: 15px;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .nav-center .desktop-only {
    display: none;
  }
  
  .nav-center a {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
    transition: all 0.2s ease;
    white-space: nowrap;
  }
  
  .nav-center a:hover {
    opacity: 1;
    color: var(--accent-orange);
  }
  
  /* Mobile Menu Backdrop */
  .mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
  }

  /* Mobile Menu Sidebar */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--nav-bg-dark);
    backdrop-filter: blur(20px);
    z-index: 999;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }
  
  [data-theme="light"] .mobile-menu-overlay {
    background: var(--nav-bg-light);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  }
  
  .mobile-menu-overlay.active {
    transform: translateX(0);
  }
  
  .mobile-menu-content {
    padding: 80px 30px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  
  .mobile-menu-item {
    margin-bottom: 0;
  }
  
  .mobile-menu-item a {
    font-size: 20px;
    font-weight: 500;
    color: inherit;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.2s ease;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  [data-theme="light"] .mobile-menu-item a {
    border-bottom-color: rgba(0, 0, 0, 0.1);
  }
  
  .mobile-menu-item a:hover {
    opacity: 1;
    color: var(--accent-orange);
    padding-left: 10px;
  }
  
  .mobile-menu-controls {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
  
  .mobile-control-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  [data-theme="light"] .mobile-control-item {
    border-bottom-color: rgba(0, 0, 0, 0.1);
  }
  
  .mobile-control-item label {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
    flex: 1;
  }
  
  .mobile-lang-btn,
  .mobile-theme-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid var(--lang-btn-border-dark);
    background: rgba(255, 255, 255, 0.05);
    color: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    font-weight: 500;
    min-width: 80px;
    justify-content: center;
  }
  
  [data-theme="light"] .mobile-lang-btn,
  [data-theme="light"] .mobile-theme-toggle {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--lang-btn-border-light);
  }
  
  .mobile-lang-btn:hover,
  .mobile-theme-toggle:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: white;
    transform: scale(1.05);
  }
  
  .mobile-lang-btn .lang-flag {
    font-size: 14px;
  }
  
  .mobile-theme-toggle .theme-label {
    margin-left: 4px;
  }
  
  .nav-right {
    gap: 8px;
  }
  
  /* Hide desktop lang/theme buttons on mobile */
  .nav-right .lang-btn,
  .nav-right .theme-toggle {
    display: none;
  }
}

/* THEME TOGGLE */
.theme-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  transition: all 0.2s ease;
  color: var(--icon-fill-dark);
}

[data-theme="light"] .theme-toggle {
  color: var(--icon-fill-light);
}

.theme-toggle:hover {
  background: rgba(255, 122, 0, 0.1);
  transform: scale(1.1);
}

/* ICON ANIMATION */
.sun-and-moon > :is(.moon, .sun, .sun-beams) {
  transform-origin: center;
}

.sun-and-moon > :is(.moon, .sun) {
  fill: currentColor;
}

.theme-toggle:is(:hover, :focus-visible) > .sun-and-moon > :is(.moon, .sun) {
  fill: var(--accent-orange);
}

.sun-and-moon > .sun-beams {
  stroke: currentColor;
  stroke-width: 2px;
}

.theme-toggle:is(:hover, :focus-visible) .sun-and-moon > .sun-beams {
  stroke: var(--accent-orange);
}

[data-theme="dark"] .sun-and-moon > .sun {
  transform: scale(1.75);
}

[data-theme="dark"] .sun-and-moon > .sun-beams {
  opacity: 0;
}

[data-theme="dark"] .sun-and-moon > .moon > circle {
  transform: translateX(-7px);
}

@supports (cx: 1) {
  [data-theme="dark"] .sun-and-moon > .moon > circle {
    cx: 17;
    transform: translateX(0);
  }
}

/* Motion preferences */
@media (prefers-reduced-motion: no-preference) {
  .sun-and-moon > .sun {
    transition: transform 0.5s var(--ease-elastic-3);
  }
  
  .sun-and-moon > .sun-beams {
    transition: 
      transform 0.5s var(--ease-elastic-4),
      opacity 0.5s var(--ease-3);
  }
  
  .sun-and-moon .moon > circle {
    transition: transform 0.25s var(--ease-out-5);
  }
  
  @supports (cx: 1) {
    .sun-and-moon .moon > circle {
      transition: cx 0.25s var(--ease-out-5);
    }
  }
}

/* =====================
   HERO SECTION
===================== */
.hero {
  min-height: 98vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background 0.3s ease;
  padding-top: 1px;
  
  background:
    radial-gradient(circle at left, rgba(255, 122, 0, 0.35), transparent 45%),
    radial-gradient(circle at right top, rgba(255, 122, 0, 0.35), transparent 45%),
    radial-gradient(circle at bottom, rgba(255, 122, 0, 0.35), transparent 45%),
    var(--hero-bg-dark);
}
[data-theme="light"] .hero {
  background:
    radial-gradient(circle at left, rgba(255, 122, 0, 0.15), transparent 45%),
    radial-gradient(circle at right, rgba(255, 122, 0, 0.15), transparent 45%),
    var(--hero-bg-light);
}
.hero-content {
  max-width: 900px;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

/* SCROLLING MARQUEE */
.marquee {
  /* margin-top: 4.5rem; */
  width: 100%;
  height: 80px;
  overflow: hidden;
  background: var(--accent-orange);
  border-radius: 0;
  display: flex;
  align-items: center;  justify-content: center;  white-space: nowrap;
  position: relative;
}


.marquee-content {
  display: flex;
  animation: scroll 120s linear infinite;
  align-items: center;
  height: 100%;
  width: max-content;
  /* animation: scroll 25s linear infinite; */
}

.marquee-content span {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin: 0 2.5rem;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  line-height: 1;
  display: flex;
  align-items: center;
  height: 80px;
}

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

/* Responsive marquee */
@media (max-width: 768px) {
  .hero-content {
    margin-top: 40px;
  }

  .marquee {
    height: 60px;
    /* margin-top: rem; */
  }
  
  .marquee-content span {
    font-size: 1.8rem;
    margin: 0 1.5rem;
    height: 60px;
  }
}

/* SHINY BADGE */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  margin-bottom: 24px;
  
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  
  background: var(--badge-bg-dark);
  border: 1px solid var(--badge-border-dark);
  backdrop-filter: blur(10px);
  
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.2),
    0 8px 30px rgba(0,0,0,0.4);
}

[data-theme="light"] .badge {
  background: var(--badge-bg-light);
  border: 1px solid var(--badge-border-light);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.8),
    0 8px 30px rgba(0,0,0,0.1);
}

/* HERO HEADING */
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 84px;
}

/* GRADIENT WORD */
.gradient-text {
  background: linear-gradient(
    90deg,
    var(--accent-orange-light),
    var(--accent-orange)
    /* var(--accent-orange-light) */
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* DESCRIPTION */
.hero p {
  max-width: 720px;
  margin: 0 auto 96px;
  font-size: 23px;
  line-height: 1.6;
  color: var(--description-dark);
  transition: color 0.3s ease;
}

[data-theme="light"] .hero p {
  color: var(--description-light);
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* COMMON BUTTON */
.btn {
  padding: 14px 34px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-block;
  cursor: pointer;
  border: none;
}

/* PRIMARY BUTTON */
.btn-primary {
  background: linear-gradient(
    120deg,
    var(--accent-orange) 20%,
    rgb(251, 189, 138) 50%,
    var(--accent-orange) 80%
  );
  color: #111;
  
  box-shadow:
    /* 0 10px 30px rgba(255, 140, 0, 0.45), */
    inset 0 1px 1px rgba(255,255,255,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255, 140, 0, 0.6);
}

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

/* SECONDARY BUTTON */
.btn-secondary {
  color: var(--accent-orange);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 150, 44, 0.1);
  backdrop-filter: blur(20px);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.2),
    0 8px 32px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .btn-secondary {
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.6),
    0 8px 32px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.3),
    inset 0 -1px 1px rgba(255, 122, 0, 0.1);
  backdrop-filter: blur(25px);
}

[data-theme="light"] .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.8),
    inset 0 -1px 1px rgba(255, 122, 0, 0.05);
  backdrop-filter: blur(25px);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    top: 10px;
    width: calc(100% - 20px);
    padding: 10px 16px;
    flex-wrap: wrap;
    row-gap: 10px;
  }
  
  .nav-center {
    gap: 16px;
    width: 100%;
    justify-content: center;
    order: 3;
    flex-wrap: wrap;
  }
  
  .nav-center a {
    font-size: 13px;
  }

  .nav-left {
    flex: 1;
  }
  
  .nav-right {
    flex: 1;
    justify-content: flex-end;
  }
  
  
  /* .hero {
      padding-top: 0px; 
  
  
  
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  } */
  .hero h1 {
    font-size: clamp(2.2rem, 6vw, 3rem);
    margin-bottom: 100px;
  }
  .hero p {
    font-size: 14px;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ===== Download Section ===== */
.download-section {
  width: 100%;
  min-height: 70vh;
  background: radial-gradient(
      circle at top center,
      rgba(255, 132, 9, 0.315),
      transparent 55%
    ),
    
    radial-gradient(
      circle at top left,
      rgba(255, 120, 9, 0.245),
      transparent 55%
    ),
    linear-gradient(135deg, #0e0e0e, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  box-sizing: border-box;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  transition: background 0.3s ease, color 0.3s ease;
}

[data-theme="light"] .download-section {
  background: 
    radial-gradient(
      circle at top left,
      rgba(244, 174, 118, 0.245),
      transparent 55%
    ),
    linear-gradient(135deg, #f8f9fa, #e9ecef);
  color: #1a1a1a;
}

.download-container {
  max-width: 1000px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* ===== Left Content ===== */
.download-left h2 {
  font-size: 100px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Spre and evo text styling */
.spre-text {
  color: #ffffff; /* white in dark theme */
}

.evo-text {
  color: var(--accent-orange);
}

[data-theme="light"] .spre-text {
  color: #000000; /* black in light theme */
}

.download-left h3 {
  font-size: 25px;
  letter-spacing: 9.5px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px;
  margin-left: 290px;
  transition: color 0.3s ease;
}

[data-theme="light"] .download-left h3 {
  color: #1a1a1a;
}

.download-left p {
  max-width: 480px;
  font-size: 20px;
  line-height: 1.7;
  color: #dcdcdc;
  margin-bottom: 35px;
  transition: color 0.3s ease;
}

[data-theme="light"] .download-left p {
  color: #4a4a4a;
}

/* ===== Store Buttons ===== */
.store-buttons {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
}

.store-buttons img {
  height: 48px;
  border-radius: 18px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-buttons img:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(255, 140, 0, 0.35);
}

/* ===== Social Icons ===== */
.socials {
  display: flex;
  gap: 38px;
}

.socials i {
  font-size: 20px;
  color: #ffffff;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

[data-theme="light"] .socials i {
  color: #1a1a1a;
}

.socials i:hover {
  color: #ff8c00;
  transform: scale(1.15);
}

/* ===== Right Image ===== */
.download-right {
  position: relative;
}

.download-right img {
  width: 500px;
  max-width: 100%;
  transform: rotate(8deg);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .download-container {
    flex-direction: column;
    text-align: center;
  }

  .download-left p {
    margin: 0 auto 35px;
  }

  .store-buttons,
  .socials {
    justify-content: center;
  }

  .download-right img {
    transform: rotate(0deg);
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .download-section {
    padding: 60px 0;
  }

  .download-left h2 {
    font-size: 56px;
  }

  .download-left h3 {
    font-size: 18px;
    letter-spacing: 0.3em;
    margin-left: 0;
    text-align: center;
    margin-bottom: 16px;
  }

  .download-left p {
    font-size: 16px;
  }

  .store-buttons {
    flex-wrap: wrap;
  }
}

/* ===== Video Section ===== */
.video-section {
  width: 100%;
  padding: 100px 0;
  background: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
}

[data-theme="dark"] .video-section {
  background: #070707;
}

.video-wrapper {
  padding: 15px;
  background: #000;
  border-radius: 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

[data-theme="light"] .video-wrapper {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.video-wrapper video {
  width: 300px;
  height: 550px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  display: block;
}

@media (max-width: 768px) {
  .video-section {
    padding: 70px 0;
  }

  .video-wrapper video {
    width: 230px;
    height: 420px;
  }
}
/* =====================
   ABOUT SECTION
===================== */
.about-section {
  padding: 120px 0;
  background: transparent;
  background-color: #0c0c0c;
}

[data-theme="light"] .about-section {
  background-color: #f8f9fb;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-left {
  display: flex;
  flex-direction: column;
  /* gap: 32px; */
}

.about-left h2 {
  font-size: 100px;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--accent-orange-light),
    var(--accent-orange),
    #f09a45,
    var(--accent-orange),
    var(--accent-orange-light)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-left h3 {
  font-size: 25px;
  letter-spacing: 9.5px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 20px;
  margin-left: 120px;
  transition: color 0.3s ease;
}

[data-theme="light"] .about-left h3 {
  color: var(--text-light);
}

.about-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.about-spreevo {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ff9a45 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.05em;
}

.about-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--description-dark);
  max-width: 500px;
  margin-bottom: 20px;
}

[data-theme="light"] .about-description {
  color: var(--description-light);
}

.about-button {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.about-socials {
  display: flex;
  gap: 16px;
}

.about-socials i {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--icon-fill-dark);
  transition: all 0.3s ease;
  cursor: pointer;
}

[data-theme="light"] .about-socials i {
  color: var(--icon-fill-light);
}

.about-socials i:hover {
  color: var(--accent-orange);
  transform: translateY(-2px);
}

.about-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 600px;
}

.card {
  background: #1c1f24;
  border-radius: 18px;
  padding: 22px;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  text-align: center;
  transition: all 0.3s ease;
}

[data-theme="light"] .card {
  background: #f5f5f5;
  color: #1a1a1a;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.card:hover {
  transform: translateY(-5px);
}

.card.wide {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.stars-img {
  width: 120px;
  margin-bottom: 10px;
}

.number {
  font-size: 52px;
  font-weight: 700;
  background: linear-gradient(135deg, rgb(197, 197, 197) 0%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
[data-theme="light"] .number {
  background: linear-gradient(135deg, #454545 0%, #2e2e2e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}


.text {
  font-size: 26px;
  opacity: 0.9;
  margin-top: 2px;
  color: var(--description-dark);
}

[data-theme="light"] .text {
  color: var(--description-light);
}

/* Responsive About Section */
@media (max-width: 1024px) {
  .about-container {
    gap: 60px;
  }
  
  .about-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }
  
  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
    justify-items: center;
    align-items: center;
  }

  .about-left,
  .about-right {
    width: 100%;
  }
  
  .about-left h2 {
    font-size: 60px;
  }

  .about-left h3 {
    font-size: 18px;
    letter-spacing: 0.25em;
    margin-left: 0;
    text-align: center;
  }
  
  .about-title {
    font-size: 2.8rem;
  }
  
  .about-description {
    font-size: 1.05rem;
    margin: 0 auto;
  }

  .about-button {
    margin-top: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .about-socials {
    justify-content: center;
  }
  
  .stats-container {
    max-width: 360px;
    margin: 0 auto;
    justify-items: center;
  }
  
  .stars-img {
    width: 100px;
  }
  
  .number {
    font-size: 32px;
  }
  
  .text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 50px 0;
  }

  .about-title {
    font-size: 2.2rem;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
    max-width: 260px;
  }
  
  .card {
    padding: 20px 18px;
  }
  
  .number {
    font-size: 28px;
  }
  
  .stars-img {
    width: 80px;
  }
}
.testimonials-section {
  display: flex;
  justify-content: center;
}

/* Background Card */
.bg-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 60px;
  /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08); */
  width: 100%;
  max-width: 1300px;
}

/* Layout */
.container {
  display: flex;
  gap: 60px;
}

/* LEFT */
.left {
  flex: 1;
}

.left h1 {
  font-size: 48px;
  font-weight: 700;
  color: #222;
  line-height: 1.1;
  margin-bottom: 20px;
}

.left p {
  font-size: 18px;
  color: #555;
  max-width: 420px;
  line-height: 1.5;
  margin-bottom: 32px;
}

.buttons {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background: linear-gradient(90deg, #ff7a18, #ff9f43);
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: #fff;
  color: #ff7a18;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  border: 2px solid #ff7a18;
  cursor: pointer;
}

/* RIGHT */
.right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* Testimonial Card */
.card-1 {
  display: flex;
  align-items: center;
  border: 1.5px solid #c9cdd6;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.card-1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 6px;
  background: linear-gradient(180deg, #ff7a18, #ff9f43);
  border-radius: 12px 0 0 12px;
}

.avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-right: 20px;
  object-fit: cover;
}

.card-content h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.card-content h4 {
  margin: 4px 0 10px;
  font-size: 14px;
  font-weight: 600;
  color: #555;
}

.card-content p {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.4;
  max-width: 420px;
}

/* Featured (Middle) Card */
.card-1.featured {
  width: 110%;
  margin-left: -60px;
  /* box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15); */
}

@media (max-width: 900px) {
  .bg-card {
    padding: 40px 24px;
  }

  .container {
    flex-direction: column;
    gap: 32px;
  }

  .left h1 {
    font-size: 36px;
  }

  .left p {
    font-size: 16px;
  }

  .card-1.featured {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  .bg-card {
    padding: 32px 16px;
  }

  .buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-1 {
    flex-direction: column;
    align-items: flex-start;
  }

  .avatar {
    margin-bottom: 12px;
  }
}
[data-theme="dark"] .cta-section {
  background: linear-gradient(180deg, #0d0d0d, #1a1a1a);
}

[data-theme="light"] .cta-section {
  background: linear-gradient(180deg, #ffffff, #f5f5f5);
}

.cta-section {
  padding: 80px 0;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 0;
}

.cta-content {
  max-width: 900px;
}

.cta-content h2 {
  font-size: 63px;
  font-weight: 700;
  background: linear-gradient(
    120deg,
    var(--accent-orange) 20%,
    rgb(251, 189, 138) 50%,
    var(--accent-orange) 80%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 22px;
  color:grey;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Buttons */
.btn-fill {
  background: linear-gradient(120deg,
    var(--accent-orange) 20%,
    rgb(251, 189, 138) 50%,
    var(--accent-orange) 80%);
  color: #000;
  padding: 12px 32px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: #ff9f43;
  padding: 12px 32px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #ff9f43;
  cursor: pointer;
}

/* =====================
   CONTACT SECTION
===================== */
.contact-section {
  padding: 80px 0;
  background: #050505;
}

[data-theme="light"] .contact-section {
  background: #f8f9fb;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.contact-left h2 {
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 8px;
}

.contact-left h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--description-dark);
  max-width: 520px;
  margin-bottom: 32px;
}

[data-theme="light"] .contact-description {
  color: var(--description-light);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 12, 12, 0.9);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

[data-theme="light"] .form-group input,
[data-theme="light"] .form-group textarea {
  background: #ffffff;
  color: #111;
  border-color: rgba(0, 0, 0, 0.06);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--description-dark);
}

[data-theme="light"] .form-group input::placeholder,
[data-theme="light"] .form-group textarea::placeholder {
  color: var(--description-light);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 1px rgba(255, 124, 28, 0.6);
}

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

.form-buttons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  height: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

[data-theme="light"] .contact-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.06);
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-orange), #ffb36b);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: #fff;
  font-size: 18px;
}

.contact-details h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-details p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--description-dark);
}

[data-theme="light"] .contact-details p {
  color: var(--description-light);
}

.contact-socials {
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

[data-theme="light"] .contact-socials {
  border-top-color: rgba(0, 0, 0, 0.06);
}

.contact-socials h4 {
  font-size: 15px;
  margin-bottom: 10px;
}

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

.social-links i {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  color: #f1f1f1;
  font-size: 16px;
}

[data-theme="light"] .social-links i {
  background: #f5f5f5;
  color: #333;
}

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 60px 0;
  }

  /* Center contact content on small screens */
  .contact-container {
    text-align: center;
    justify-items: center;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  .contact-description {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-info {
    align-items: center;
  }

  .contact-card {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  .contact-left h3 {
    font-size: 30px;
  }

  .form-buttons {
    flex-direction: column;
  }

  /* Center Follow Us and icons on mobile */
  .contact-socials {
    text-align: center;
  }

  .social-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Hover Effects */
.btn-fill:hover {
  opacity: 0.9;
}

.btn-outline:hover {
  background: #ff9f43;
  color: #000;
}
.footer {
  background: #ffffff;
  padding: 60px 80px 0;
  border-top: 1px solid #eaeaea;
  font-family: Arial, sans-serif;
  margin-top: auto;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-left {
  max-width: 420px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 50px;
}

.logo h2 {
  color: #ff7a00;
}

.footer-desc {
  margin: 15px 0;
  color: #444;
  line-height: 1.6;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 12px 22px;
  border: 2px solid #ff7a00;
  border-radius: 30px;
  background: transparent;
  color: #ff7a00;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background: #ff7a00;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.3);
}

.download-btn span {
  background: #ff7a00;
  color: white;
  padding: 6px 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.download-btn:hover span {
  background: white;
  color: #ff7a00;
  transform: translateX(3px);
}

.social-icons {
  margin-top: 20px;
}

.social-icons i {
  font-size: 20px;
  margin-right: 15px;
  color: #ff7a00;
  cursor: pointer;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-links h4 {
  margin-bottom: 12px;
  color: #222;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
  color: #555;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ff7a00;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid #eaeaea;
  font-size: 14px;
}

.footer-bottom a {
  color: #222;
  text-decoration: none;
}

/* =====================
   RESPONSIVE TWEAKS
===================== */
@media (max-width: 768px) {
  /* CTA section */
  .cta-section {
    margin-top: 0;
    padding: 60px 16px;
  }

  .cta-content h2 {
    font-size: 40px;
  }

  .cta-content p {
    font-size: 18px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Contact buttons centered */
  .form-buttons {
    justify-content: center;
    align-items: center;
  }

  .form-buttons .btn {
    min-width: 220px;
    text-align: center;
  }

  /* Footer layout */
  .footer {
    padding: 40px 20px 0;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .footer-left {
    max-width: 100%;
  }

  .footer-links {
    width: 100%;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .cta-content h2 {
    font-size: 32px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .footer {
    padding: 32px 16px 0;
  }
}

/* =====================
   SOCIAL MEDIA SECTION
===================== */
.social-section {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .social-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

[data-theme="light"] .social-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.social-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 124, 28, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  z-index: -1;
}

.social-finds {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.social-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ff9a4d 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 20px rgba(255, 124, 28, 0.3);
}

.social-finds h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 40px;
  opacity: 0.8;
}

[data-theme="dark"] .social-finds h3 {
  color: #cfcfcf;
}

[data-theme="light"] .social-finds h3 {
  color: #6c757d;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 30px;
  text-decoration: none;
  border-radius: 16px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
}

[data-theme="dark"] .social-link {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .social-link {
  background: rgba(255, 255, 255, 0.7);
  color: #1a1a1a;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

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

.social-link i,
.social-link svg {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.social-link svg {
  width: 24px;
  height: 24px;
}

[data-theme="dark"] .social-link svg {
  fill: #ffffff;
}

[data-theme="light"] .social-link svg {
  fill: #1a1a1a;
}

[data-theme="dark"] .social-link i {
  color: #ffffff;
}

[data-theme="light"] .social-link i {
  color: #1a1a1a;
}

.social-link span {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.social-link:hover i,
.social-link:hover svg,
.social-link:hover span {
  transform: scale(1.1);
}

/* Individual social platform colors */
.social-link.instagram:hover {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: white;
  border-color: #833ab4;
}

.social-link.facebook:hover {
  background: #1877f2;
  color: white;
  border-color: #1877f2;
}

.social-link.twitter:hover {
  background: #000000 !important;
  color: white !important;
  border-color: #000000;
}

.social-link.twitter:hover svg {
  fill: white !important;
}

.social-link.twitter:hover i {
  color: white !important;
}

.social-link.twitter:hover svg path {
  fill: white !important;
}

/* Ensure proper contrast in light mode */
[data-theme="light"] .social-link.twitter:hover {
  background: #000000 !important;
  color: white !important;
  border-color: #000000 !important;
}

[data-theme="light"] .social-link.twitter:hover svg {
  fill: white !important;
}

[data-theme="light"] .social-link.twitter:hover svg path {
  fill: white !important;
}

.social-link.linkedin:hover {
  background: #0a66c2;
  color: white;
  border-color: #0a66c2;
}

/* Responsive Design */
@media (max-width: 768px) {
  .social-section {
    padding: 60px 0;
  }
  
  .social-title {
    font-size: 2rem;
  }
  
  .social-finds h3 {
    font-size: 1.25rem;
    margin-bottom: 30px;
  }
  
  .social-links {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .social-link {
    padding: 16px 24px;
  }
  
  .social-link i,
  .social-link svg {
    font-size: 20px;
  }
  
  .social-link span {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .social-section {
    padding: 40px 0;
  }
  
  .social-title {
    font-size: 1.75rem;
  }
  
  .social-link {
    padding: 14px 20px;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}