/* ===== CSS CUSTOM PROPERTIES FOR RESPONSIVE CONTROL ===== */
:root {
  /* Colors */
  --primary-orange: #ec6607;
  --secondary-orange: #ff8c42;
  --light-orange: #ff6b35;
  --primary-blue: #123579;
  --secondary-blue: #1a2547;
  --dark-blue: #0c1426;
  --accent-blue: #2a4d8a;
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-orange) 0%,
    var(--secondary-orange) 100%
  );
  --gradient-blue: linear-gradient(
    135deg,
    var(--dark-blue) 0%,
    var(--primary-blue) 50%,
    var(--accent-blue) 100%
  );
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --text-white: #ffffff;
  --text-light: rgba(255, 255, 255, 0.9);
  --text-muted: rgba(255, 255, 255, 0.7);

  /* Shadows */
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-medium: 0 16px 48px rgba(0, 0, 0, 0.15);
  --shadow-strong: 0 24px 64px rgba(0, 0, 0, 0.2);

  /* Layout Variables - Desktop */
  --container-max-width: 1200px;
  --container-padding: 2rem;
  --section-gap: 4rem;
  --form-max-width: 420px;
  --logo-size: 60px;
  --footer-height: 60px;
  --header-height: 80px;

  /* Typography */
  --font-size-h1: clamp(2rem, 5vw, 3.5rem);
  --font-size-h2: clamp(1.5rem, 4vw, 2rem);
  --font-size-body: clamp(0.9rem, 2.5vw, 1.1rem);
  --font-size-small: clamp(0.8rem, 2vw, 0.95rem);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;

  /* Border radius */
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 30px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s ease;
}

/* ===== RESET & BASE STYLES ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Cairo", "Segoe UI", "Roboto", sans-serif;
  direction: rtl;
  line-height: 1.6;
  color: var(--text-white);
  background: var(--gradient-blue);
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== ANIMATED BACKGROUND ===== */
.animated-background {
  position: fixed;
  inset: 0;
  background: var(--gradient-blue);
  z-index: -10;
}

.animated-background::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(236, 102, 7, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 140, 66, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(18, 53, 121, 0.15) 0%,
      transparent 60%
    );
  animation: backgroundFloat 25s ease-in-out infinite;
}

.floating-orbs {
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.06;
  animation: orbFloat 20s ease-in-out infinite;
  filter: blur(1px);
}

@keyframes backgroundFloat {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
    opacity: 0.8;
  }
  33% {
    transform: rotate(120deg) scale(1.1);
    opacity: 1;
  }
  66% {
    transform: rotate(240deg) scale(0.9);
    opacity: 0.9;
  }
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0px, 0px) scale(1);
  }
  25% {
    transform: translate(-50px, -100px) scale(1.2);
  }
  50% {
    transform: translate(50px, -50px) scale(0.8);
  }
  75% {
    transform: translate(-30px, 30px) scale(1.1);
  }
}

/* ===== LOGO - RESPONSIVE POSITIONING ===== */
.logo-fixed {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 170px;
  height: 90px;
  /* max-width: 180px; */
  object-fit: contain;
  background: rgba(255, 255, 255, 0);
  padding: 0.5rem 0.75rem;
  border-radius: var(--border-radius-sm);
  /* box-shadow: var(--shadow-medium), 0 0 20px rgba(236, 102, 7, 0.3); */
  /* backdrop-filter: blur(10px); */
  z-index: 1000;
  transition: var(--transition-normal);
  filter: drop-shadow(6px 6px 2px rgba(0, 0, 0, 0.8));
  height: 180px !important;
  width: 250px !important;
  margin-top: 15px;
  margin-right: 30px;
}

.logo-fixed:hover {
  transform: scale(1.05);
  /* box-shadow: var(--shadow-strong), 0 0 30px rgba(236, 102, 7, 0.5); */
}

/* ===== MAIN LAYOUT CONTAINER ===== */
.main-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: var(--footer-height);
}

/* ===== HERO SECTION ===== */
.hero-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 2rem) var(--container-padding)
    var(--space-xl);
  min-height: calc(100vh - var(--footer-height));
}

.hero-content {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--section-gap);
  align-items: center;
}

/* ===== LEFT SECTION - COMPANY INFO ===== */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--space-md);
}

.company-name {
  font-size: var(--font-size-h1);
  font-weight: 800;
  margin-bottom: var(--space-lg);
  background: linear-gradient(
    135deg,
    var(--text-white) 0%,
    #e0e7ff 50%,
    var(--text-white) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.company-name::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(80px, 15vw, 120px);
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.company-description {
  font-size: var(--font-size-body);
  color: var(--text-light);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
  font-weight: 400;
  max-width: 500px;
}

/* ===== HOTLINE SECTION - NEON DESIGN ===== */
.hotline-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: var(--space-lg) 0;
  z-index: 5;
}

.neon-hotline {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(140px, 20vw, 200px);
  height: clamp(140px, 20vw, 200px);
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 0 50px rgba(236, 102, 7, 0.6), 0 0 100px rgba(236, 102, 7, 0.4),
    inset 0 0 30px rgba(255, 255, 255, 0.1);
  animation: neonPulse 3s ease-in-out infinite;
  cursor: pointer;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast);
  text-decoration: none;
  color: var(--text-white);
  z-index: 10;
}

.neon-hotline::before,
.neon-hotline::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--primary-orange);
  animation: ripple 2s linear infinite;
}

.neon-hotline::before {
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  opacity: 0.5;
}

.neon-hotline::after {
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border-color: var(--secondary-orange);
  opacity: 0.3;
  animation-delay: 0.5s;
}

.hotline-inner {
  text-align: center;
  z-index: 2;
  position: relative;
}

.hotline-icon-neon {
  /* font-size: clamp(1.4rem, 3vw, 2.2rem); */
  margin-bottom: var(--space-xs);
  animation: phoneShake 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.hotline-label-neon {
  font-size: clamp(0.7rem, 1.5vw, 0.9rem);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  opacity: 0.95;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.hotline-number-neon {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 255, 255, 0.6);
}

.neon-hotline:hover {
  transform: scale(1.05);
  box-shadow: 0 0 70px rgba(236, 102, 7, 0.8), 0 0 140px rgba(236, 102, 7, 0.6);
}

@keyframes neonPulse {
  0%,
  100% {
    box-shadow: 0 0 50px rgba(236, 102, 7, 0.6),
      0 0 100px rgba(236, 102, 7, 0.4), inset 0 0 30px rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 0 0 80px rgba(236, 102, 7, 0.8),
      0 0 130px rgba(236, 102, 7, 0.6), inset 0 0 30px rgba(255, 255, 255, 0.1);
  }
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes phoneShake {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-3deg);
  }
  75% {
    transform: rotate(3deg);
  }
}

/* ===== FORM SECTION ===== */
.form-section {
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg) var(--space-md);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  width: 100%;
  max-width: var(--form-max-width);
  margin: 0 auto;
}

.form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.form-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.form-title {
  font-size: var(--font-size-h2);
  font-weight: 800;
  margin-bottom: var(--space-sm);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-subtitle {
  font-size: var(--font-size-small);
  color: var(--text-muted);
  line-height: 1.4;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  font-size: var(--font-size-small);
  color: var(--text-light);
  transition: color var(--transition-fast);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-xs) var(--space-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  font-size: var(--font-size-small);
  font-family: "Cairo", sans-serif;
  color: var(--text-white);
  direction: rtl;
  transition: var(--transition-normal);
  backdrop-filter: blur(10px);
  resize: vertical;
  min-height: 44px; /* Slightly smaller while keeping accessibility */
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(236, 102, 7, 0.15), var(--shadow-soft);
  transform: translateY(-1px);
}

.form-group input:focus + label,
.form-group textarea:focus + label {
  color: var(--primary-orange);
}

.submit-container {
  text-align: center;
  margin-top: var(--space-md);
}

.submit-btn {
  background: var(--gradient-primary);
  color: var(--text-white);
  padding: var(--space-sm) var(--space-xl);
  border: none;
  border-radius: 50px;
  font-size: var(--font-size-body);
  font-weight: 700;
  font-family: "Cairo", sans-serif;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-medium), 0 0 20px rgba(236, 102, 7, 0.3);
  min-height: 48px; /* Accessibility - touch target */
  min-width: 140px;
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-strong), 0 0 40px rgba(236, 102, 7, 0.5);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.success-message {
  display: none;
  background: linear-gradient(135deg, #4caf50, #45a049);
  color: var(--text-white);
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  margin-top: var(--space-md);
  font-weight: 600;
  text-align: center;
  font-size: var(--font-size-small);
  box-shadow: var(--shadow-soft);
}

/* ===== FOOTER ===== */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--footer-height);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-light);
  font-family: "Cairo", sans-serif;
  z-index: 999;
  display: flex;
  align-items: center;
  padding: 0 var(--container-padding);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  /* flex: 1; */
  min-width: 0;
}

.footer-icon {
  font-size: 1.2rem;
  color: var(--primary-orange);
  flex-shrink: 0;
}

.footer-text {
  font-size: var(--font-size-small);
  color: var(--text-light);
  line-height: 1.3;
  overflow: hidden;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.social-btn {
  display: flex;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1rem;
  transition: var(--transition-normal);
  text-decoration: none;
  box-shadow: var(--shadow-soft);
}

.social-btn:hover {
  background: var(--gradient-primary);
  box-shadow: 0 4px 12px rgba(236, 102, 7, 0.4);
  transform: translateY(-2px) scale(1.05);
}

.footer-bottom {
}

.footer-bottom span {
  color: var(--primary-orange);
  font-weight: 700;
}

/* ===== COMPREHENSIVE RESPONSIVE DESIGN ===== */

/* Large Desktop (1400px and up) */
@media screen and (min-width: 1400px) {
  :root {
    --container-max-width: 1400px;
    --container-padding: 3rem;
    --section-gap: 5rem;
    --form-max-width: 464px;

    --logo-size: 70px;
  }
}

/* Desktop (1200px - 1399px) */
@media screen and (max-width: 1399px) {
  :root {
    --container-padding: 2.5rem;
    --section-gap: 4rem;
    --logo-size: 60px;
  }
}

/* Tablet Large (992px - 1199px) */
@media screen and (max-width: 1199px) {
  :root {
    --container-padding: 2rem;
    --section-gap: 3rem;
    --logo-size: 55px;
  }

  .hero-content {
    gap: 3rem;
  }
}

/* Tablet Portrait (768px - 991px) */
@media screen and (max-width: 991px) {
  :root {
    --container-padding: 1.5rem;
    --section-gap: 2.5rem;
    --footer-height: 100px;
    --logo-size: 50px;
    --form-max-width: 600px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 700px;
    text-align: center;
  }

  .hero-left {
    order: 1;
    padding: 0;
  }

  .form-section {
    order: 2;
    max-width: 600px;
  }
}

/* Mobile Large (576px - 767px) */
@media screen and (max-width: 767px) {
  :root {
    --container-padding: 1rem;
    --section-gap: 2rem;
    --footer-height: 120px;
    --header-height: 60px;
    --logo-size: 45px;
    --form-max-width: none;
    --space-xs: 0.4rem;
    --space-sm: 0.8rem;
    --space-md: 1.2rem;
    --space-lg: 1.6rem;
    --space-xl: 2rem;
  }

  html {
    font-size: 14px;
  }

  body {
    padding-bottom: 0; /* Footer is not fixed on mobile */
  }
  .main-container {
    padding-bottom: 0px !important;
  }

  .logo-fixed {
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    width: 100px !important;
    height: 63px !important;
    margin-top: 0px !important;
    margin-right: 0px !important;
    position: static !important;
    top: 30px !important;
  }

  .hero-section {
    /* padding: calc(var(--header-height) + 1rem) var(--container-padding) 2rem !important; */
    min-height: calc(100vh - var(--footer-height));
  }

  .hero-content {
    gap: 2rem;
    max-width: none;
  }

  .hero-left {
    padding: 0;
  }

  .form-section {
    margin: 0 0.5rem;
    padding: 1.5rem 1rem;
    width: 90%;
    margin: auto !important;
    margin-top: 30px !important;
  }
  .form-title {
    font-size: 26px;
  }
  .form-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.932);
  }
  .form-group label {
    text-align: start !important;
    padding-right: 10px !important;
    font-size: 12px;
    color: white;
  }
  .hotline-label-neon {
    font-size: 17px;
    font-weight: bold;
  }
  .hotline-number-neon {
    font-weight: bold;
    font-size: 20px !important;
  }
  .form-group input,
  .form-group textarea {
    font-size: 13px;
    width: 96%;
  }
  .submit-btn {
    width: 90%;
    font-size: 15px;
  }
  .magic-circle {
    width: 100px !important;
    width: 45px !important;
    height: 45px !important;
    font-size: 16px !important;
    /* margin-bottom: 20px !important;
    margin-top: 20px !important; */
  }
  .footer-br {
    display: none !important;
  }
  .footer-text {
    font-size: 12px !important;
  }
  .footer {
    position: static; /* Unstick footer on mobile */
    bottom: auto;
    left: auto;
    right: auto;
    height: auto;
    min-height: auto;
    padding: 0.75rem var(--container-padding);
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin-top: auto; /* Push footer to bottom when content is short */
  }

  .footer-container {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .footer-left {
    justify-content: center;
    margin-bottom: 0.25rem;
  }

  .footer-bottom {
    position: static;
    transform: none;
    margin-top: 0.5rem;
  }

  /* Hide floating orbs on mobile */
  .floating-orbs {
    display: none;
  }
  .magic-social {
    display: block !important;
    width: 100%;
    height: 70px;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
  }
  .footer-right {
    display: none;
  }
}

/* Mobile Medium (400px - 575px) */
@media screen and (max-width: 575px) {
  :root {
    --container-padding: 0.75rem;
    --logo-size: 40px;
  }

  html {
    font-size: 13px;
  }

  .hero-section {
    padding: calc(var(--header-height) + 0.75rem) var(--container-padding)
      1.5rem;
  }

  .hero-content {
    gap: 1.5rem;
  }

  .form-section {
    margin: 0 0.25rem;
    padding: 1.25rem 0.75rem;
    border-radius: 15px;
  }

  .footer {
    padding: 0.5rem var(--container-padding);
  }

  .social-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}

/* Mobile Small (320px - 399px) */
@media screen and (max-width: 399px) {
  :root {
    --container-padding: 0.5rem;
    --logo-size: 35px;
  }

  html {
    font-size: 12px;
  }

  .logo-fixed {
    top: 0.4rem;
    right: 0.4rem;
    padding: 0.3rem 0.5rem;
  }

  .hero-section {
    padding: calc(var(--header-height) + 0.5rem) var(--container-padding) 1rem;
  }

  .form-section {
    margin: 0 0.125rem;
    padding: 1rem 0.5rem;
    border-radius: 12px;
  }

  .footer {
    padding: 0.4rem var(--container-padding);
  }

  .footer-text {
    line-height: 1.2;
  }

  .social-btn {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
}

/* Smaller Phones (<= 360px) */
@media screen and (max-width: 360px) {
  .hero-section {
    padding: 2rem var(--container-padding) 0.5rem;
    margin-top: 20px;
  }
}

/* Ultra Small Screens (below 320px) */
@media screen and (max-width: 319px) {
  :root {
    --container-padding: 0.4rem;
    --logo-size: 32px;
  }

  html {
    font-size: 11px;
  }

  .form-section {
    margin: 0;
    padding: 0.75rem 0.4rem;
  }
}

/* Landscape Phones */
@media screen and (max-height: 600px) and (orientation: landscape) {
  :root {
    --header-height: 50px;
    --footer-height: 60px;
  }

  .hero-section {
    padding: calc(var(--header-height) + 0.5rem) var(--container-padding)
      0.75rem;
    min-height: calc(100vh - var(--footer-height));
  }

  .company-description {
    margin-bottom: 1rem;
  }

  .hotline-section {
    margin: 0.75rem 0;
  }

  .footer {
    height: var(--footer-height);
    padding: 0.25rem var(--container-padding);
  }
}

/* Very Short Screens */
@media screen and (max-height: 500px) {
  .hero-section {
    padding: 2rem var(--container-padding) 0.5rem;
  }

  .footer {
    position: relative;
    margin-top: 1rem;
  }

  .main-container {
    padding-bottom: 0;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo-fixed {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Touch devices - Remove hover effects */
@media (hover: none) and (pointer: coarse) {
  .submit-btn:hover,
  .social-btn:hover,
  .neon-hotline:hover,
  .logo-fixed:hover {
    transform: none;
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Dark mode preference */
@media (prefers-color-scheme: dark) {
  :root {
    --glass-bg: rgba(255, 255, 255, 0.05);
  }
}

/* Print styles */
@media print {
  .animated-background,
  .floating-orbs,
  .footer {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .main-container {
    padding-bottom: 0;
  }

  .hero-section {
    min-height: auto;
  }
}

/* ===== UTILITY CLASSES ===== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Focus styles for accessibility */
.form-group input:focus,
.form-group textarea:focus,
.submit-btn:focus,
.social-btn:focus,
.neon-hotline:focus {
  outline: 2px solid var(--primary-orange);
  outline-offset: 2px;
}

.magic-social {
  display: none;
}
.fa-whatsapp {
  /* margin-right: 7px; */
}

@media (max-width: 1750px) {
  .hero-section {
    padding: 0px;
  }
  .form-section {
    max-width: 400px !important;
    padding: 1.25rem 1rem !important;
  }
  .logo-fixed {
    height: 180px !important;
    width: 219px !important;
    /* margin-top: 15px; */
    /* margin-right: 30px; */
    margin-top: -20px;
  }
  .company-name {
    font-size: 50px;
  }
}
@media (max-width: 1680px) {
  .hero-section {
    padding: 0px;
  }
  .form-section {
    max-width: 400px !important;
    padding: 1.25rem 1rem !important;
  }
  /* .logo-fixed {
    position: fixed;
    top: 1rem;
    right: 1rem;
    height: 120px;
    width: 200px;
  } */
  .logo-fixed {
    height: 177px !important;
    width: 215px !important;
    margin-top: -20px;
    margin-right: 0px;
  }
  .neon-hotline {
    height: 127px;
    width: 127px;
  }
  .hotline-icon-neon {
    font-size: 16px;
  }
  .hotline-number-neon {
    font-size: 18px;
  }
  .footer-text {
    font-size: 12px;
  }
  .social-btn {
    width: 32px;
    height: 32px;
  }
  .footer {
    /* height: 43px; */
  }
  .footer-bottom p {
    font-size: 12px;
  }
  .company-name {
    font-size: 37px;
  }
  .form-title {
    font-size: 23px;
  }
  .form-subtitle {
    font-size: 12px;
  }
  .form-group label {
    font-size: 12px;
  }
  .form-group input,
  .form-group textarea {
    font-size: 12px;
  }
  .form-section {
    max-width: 352px !important;
    padding: 1.25rem 1rem !important;
  }
}
@media (max-width: 1480px) {
  .logo-fixed {
    height: 120px !important ;
    width: 170px !important ;
  }
}

@media (min-width: 2000px) {
  .form-section {
    max-width: 500px !important;
    padding: 1.25rem 1rem !important;
  }
  .company-name {
    font-size: 55px;
  }
  .form-title {
    font-size: 39px;
  }
  .form-subtitle {
    font-size: 18px;
  }
  .form-group label {
    /* font-size: 30px; */
  }
  .neon-hotline {
    height: 187px;
    width: 187px;
  }
  .hotline-icon-neon {
    font-size: 26px;
  }
  .hotline-number-neon {
    font-size: 22px;
  }
}
@media (min-width: 2200px) {
  .form-section {
    max-width: 600px !important;
    padding: 1.25rem 1rem !important;
  }
  .company-name {
    font-size: 45px;
  }
  .form-title {
    font-size: 49px;
  }
  .form-subtitle {
    font-size: 25px;
  }
  .form-group label {
    font-size: 30px;
  }
  .form-group input,
  .form-group textarea {
    font-size: 22px;
  }
}
@media (min-width: 2500px) {
  .form-section {
    max-width: 750px !important;
    padding: 1.25rem 1rem !important;
  }
  .company-name {
    font-size: 55px;
  }
  .form-title {
    font-size: 59px;
  }
  .form-subtitle {
    font-size: 38px;
  }
  .form-group label {
    font-size: 30px;
  }
  .form-group input,
  .form-group textarea {
    font-size: 22px;
  }
}
