/* ========== FONT FACES ========== */
@font-face {
  font-family: "Tajawal";
  src:
    url("../fonts/Tajawal-ExtraLight.woff2") format("woff2"),
    url("../fonts/Tajawal-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tajawal";
  src:
    url("../fonts/Tajawal-Light.woff2") format("woff2"),
    url("../fonts/Tajawal-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tajawal";
  src:
    url("../fonts/Tajawal-Regular.woff2") format("woff2"),
    url("../fonts/Tajawal-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tajawal";
  src:
    url("../fonts/Tajawal-Medium.woff2") format("woff2"),
    url("../fonts/Tajawal-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tajawal";
  src:
    url("../fonts/Tajawal-Bold.woff2") format("woff2"),
    url("../fonts/Tajawal-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tajawal";
  src:
    url("../fonts/Tajawal-ExtraBold.woff2") format("woff2"),
    url("../fonts/Tajawal-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tajawal";
  src:
    url("../fonts/Tajawal-Black.woff2") format("woff2"),
    url("../fonts/Tajawal-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

* {
  font-family: "Tajawal", sans-serif;
}

:root {
  --primary: #0d7377;
  --primary-light: #14919b;
  --primary-dark: #064e52;
  --bg-light: #f8fafc;
  --bg-card: rgba(255, 255, 255, 0.7);
  --border-glass: rgba(13, 115, 119, 0.15);
}

/* ========== OVERFLOW FIX – prevents left/right scrollbars ========== */
/* overflow-x: clip does NOT create a scroll container so            */
/* position:fixed elements keep working correctly in RTL layouts.    */
html,
body {
  overflow-x: clip !important;
  max-width: 100%;
}

body {
  background: var(--bg-light);
  color: #1e293b;
}

/* ========== GLASS EFFECTS ========== */
.glass {
  background: rgba(255, 255, 255, .60);
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  border: 1px solid rgba(13, 115, 119, 0.1);
  box-shadow: 0 4px 15px -5px rgba(0, 0, 0, 0.05);
}

.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(13, 115, 119, 0.15);
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* FIX: give cards a top margin so the translateY(-5px) hover   */
  /* lift is never clipped by the section's padding edge.          */
  /* margin-top: 6px; */
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(13, 115, 119, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 30px 60px -20px rgba(13, 115, 119, 0.2);
}

.glass-input {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(13, 115, 119, 0.2);
  transition: all 0.3s ease;
  color: #1e293b;
}

.glass-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(13, 115, 119, 0.1);
  background: #ffffff;
}

/* ========== GRADIENTS ========== */
.gradient-text {
  background: linear-gradient(
    135deg,
    #064e52 0%,
    #0d7377 40%,
    #14919b 70%,
    #0d7377 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 8s ease infinite;
}

.gradient-border {
  position: relative;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #0d7377, #14919b, #0d7377) border-box;
  border: 1px solid transparent;
  box-shadow: 0 10px 25px -12px rgba(13, 115, 119, 0.2);
}

.gradient-bg {
  background: linear-gradient(135deg, #0d7377 0%, #14919b 50%, #0d7377 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(2deg);
  }
  75% {
    transform: translateY(15px) rotate(-2deg);
  }
}

@keyframes borderPulse {
  0%,
  100% {
    border-color: rgba(13, 115, 119, 0.1);
  }
  50% {
    border-color: rgba(13, 115, 119, 0.4);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ========== BUTTONS ========== */
.btn-primary {
  position: relative;
  background: linear-gradient(135deg, #0d7377 0%, #14919b 50%, #0d7377 100%);
  background-size: 200% 200%;
  color: #ffffff;
  font-weight: 800;
  padding: 16px 40px;
  border-radius: 60px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: gradientShift 8s ease infinite;
  box-shadow: 0 10px 30px -10px rgba(13, 115, 119, 0.4);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 40px -10px rgba(13, 115, 119, 0.6);
}

/* ========== COUNTDOWN ========== */
.countdown-wrapper {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  border: 3px solid red;
  border-radius: 30px;
  padding: 25px 20px;
  min-width: 130px;
  text-align: center;
  transition: all 0.3s ease;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 8px 20px -8px rgba(13, 115, 119, 0.1);
  color: red !important;
}

.countdown-item:nth-child(2) {
  animation-delay: 0.5s;
}
.countdown-item:nth-child(3) {
  animation-delay: 1s;
}
.countdown-item:nth-child(4) {
  animation-delay: 1.5s;
}

.countdown-item * {
  color: red !important;
}

.countdown-number {
  font-size: 4.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #064e52, #ff0606);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

/* ========== BACKGROUND EFFECTS ========== */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  z-index: -1;
  animation: float 20s ease-in-out infinite;
}

.bg-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #0d7377, transparent);
  top: -200px;
  right: -200px;
}

.bg-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #14919b, transparent);
  bottom: -150px;
  left: -150px;
  animation-delay: 5s;
}

.bg-orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #064e52, transparent);
  top: 50%;
  left: 30%;
  animation-delay: 10s;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 115, 119, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 115, 119, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -1;
}

/* ========== FORM STYLES ========== */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1e293b;
  font-size: 1rem;
}

.form-input {
  width: 100%;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(13, 115, 119, 0.2);
  border-radius: 16px;
  color: #1e293b;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input::placeholder {
  color: #64748b;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(13, 115, 119, 0.1);
  background: #ffffff;
}

/* ── Validation error state ─────────────────────── */
.form-input.is-invalid {
  border-color: #ef4444 !important;
}

.form-input.is-invalid:focus {
  outline: none;
  box-shadow: none !important;
  border-color: #ef4444 !important;
}

/* ========== MODAL ========== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  max-width: 500px;
  width: 90%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(13, 115, 119, 0.3);
  border-radius: 40px;
  padding: 40px;
  animation: scaleIn 0.4s ease;
  box-shadow: 0 30px 60px rgba(13, 115, 119, 0.15);
}

/* ========== TESTIMONIAL ========== */
.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(13, 115, 119, 0.15);
  border-radius: 30px;
  padding: 25px;
  box-shadow: 0 10px 25px -15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Quote fills available space */
.testimonial-card p {
  flex: 1;
}

/* Name stays pinned to bottom */
.testimonial-card p.font-bold {
  flex: 0;
  margin-top: 16px;
}

/* ========== SWIPER ========== */
.testimonial-swiper.swiper {
  padding: 20px 10px 60px !important;
}

/* All slides stretch to the tallest */
.testimonial-swiper .swiper-wrapper {
  align-items: stretch;
}

.testimonial-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.testimonial-swiper .swiper-pagination-bullet {
  background: rgba(13, 115, 119, 0.3) !important;
}

.testimonial-swiper .swiper-pagination-bullet-active {
  background: var(--primary) !important;
}

.testimonial-swiper .swiper-button-next,
.testimonial-swiper .swiper-button-prev {
  color: var(--primary) !important;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem !important;
  }
  h2 {
    font-size: 1.5rem !important;
  }

  .countdown-item {
    min-width: 70px;
    padding: 15px 10px;
  }
  .countdown-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .countdown-item {
    min-width: 60px;
    padding: 12px 8px;
  }
  .countdown-number {
    font-size: 2rem;
  }
}

/* ========== RTL FIXES ========== */
[dir="rtl"] .fa-arrow-left,
[dir="rtl"] .fa-arrow-right {
  transform: scaleX(-1);
}

/* Header – mobile logo */
@media (max-width: 768px) {
  header .flex.items-center.gap-3 img {
    height: 36px !important;
    max-width: 120px;
    object-fit: contain;
  }

  header .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  header .btn-primary {
    padding: 8px 12px !important;
    font-size: 12px !important;
  }

  header .live-badge {
    padding: 4px 8px !important;
    font-size: 11px !important;
  }
}

@media (max-width: 480px) {
  header .flex.items-center.gap-3 img {
    height: 30px !important;
  }

  header .live-badge .live-dot {
    margin: 0;
  }
}

/* ========== TAILWIND COLOUR OVERRIDES ========== */
.text-white\/80,
.text-white\/70,
.text-white\/50,
.text-white\/40,
.text-white\/30 {
  color: #475569 !important;
}
.text-white {
  color: #1e293b !important;
}
.bg-black\/50 {
  background: rgba(0, 0, 0, 0.05) !important;
}
.bg-black\/30 {
  background: rgba(0, 0, 0, 0.03) !important;
}
.border-white\/5,
.border-white\/10 {
  border-color: rgba(13, 115, 119, 0.1) !important;
}
.from-black\/50 {
  --tw-gradient-from: transparent !important;
}

/* Force white text inside coloured elements */
.btn-primary,
.gradient-bg {
  color: #ffffff !important;
}
.gradient-text {
  color: transparent !important;
}
.countdown-number {
  color: transparent !important;
}

/* ========== SECTION TITLE SIZES ========== */
span.glass-card.inline-block.px-6.py-2.rounded-full.mb-4.titlee1 {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 900;
}

h2.text-3xl.md\:text-4xl.lg\:text-5xl.font-black.mb-3.text-gray-800.titlee2 {
  font-size: 26px;
  font-weight: 700;
}

h2.text-3xl.md\:text-4xl.font-black.mb-6.text-gray-800 {
  color: #0d7377;
}

span.gradient-text.block.text-3xl.md\:text-4xl.lg\:text-5xl {
  line-height: 1.5;
}

span.titlee1.glass-card.inline-block.px-6.py-2.rounded-full.mb-4 {
  line-height: 1.5;
}

p {
  color: #14909ac2 !important;
  font-weight: 600;
}

/* ========== PARTNERS SECTION ========== */
.partners-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
  position: relative;
  direction: ltr;
}

@media (prefers-color-scheme: dark) {
  .partners-section {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  }
}

.partners-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 30px;
}

.partners-header {
  text-align: center;
  margin-bottom: 50px;
}

.partners-title {
  font-size: 36px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  letter-spacing: -0.5px;
}

@media (prefers-color-scheme: dark) {
  .partners-title {
    color: #f1f5f9;
  }
}

.partners-divider {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #0d7377, #14919b);
  margin: 0 auto;
  border-radius: 4px;
}

.partners-slider-wrapper {
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.partners-slider {
  overflow: hidden;
  user-select: none;
  width: 100%;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 30px 0;
  animation: scrollPartners 45s linear infinite;
  width: fit-content;
  white-space: nowrap;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partner-item {
  flex-shrink: 0;
  width: 200px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(13, 115, 119, 0.1);
}

.partner-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.partner-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 30px rgba(13, 115, 119, 0.15);
  border-color: rgba(13, 115, 119, 0.3);
  background: #ffffff;
}

.partner-item:hover img {
  transform: scale(1.05);
}

@media (prefers-color-scheme: dark) {
  .partner-item {
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(13, 115, 119, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  .partner-item:hover {
    background: #1e293b;
    border-color: rgba(13, 115, 119, 0.4);
    box-shadow: 0 12px 30px rgba(13, 115, 119, 0.2);
  }
}

.partners-fade {
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.partners-fade-left {
  left: 0;
  background: linear-gradient(
    to right,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.partners-fade-right {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

@media (prefers-color-scheme: dark) {
  .partners-fade-left {
    background: linear-gradient(to right, #0f172a 0%, rgba(15, 23, 42, 0) 100%);
  }
  .partners-fade-right {
    background: linear-gradient(to left, #0f172a 0%, rgba(15, 23, 42, 0) 100%);
  }
}

@keyframes scrollPartners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ========== FLOATING COUNTDOWN BAR ========== */
.floating-countdown-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 997;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 2px solid rgba(13, 115, 119, 0.3);
  box-shadow: 0 -10px 40px -10px rgba(13, 115, 119, 0.2);
  padding: 12px 0;
  animation: slideUpBar 0.5s ease-out;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.floating-countdown-bar.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

@keyframes slideUpBar {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.floating-countdown-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.floating-countdown-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  white-space: nowrap;
}

.floating-countdown-title i {
  color: #0d7377;
  font-size: 22px;
}

.floating-icon-pulse {
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

.floating-countdown-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    135deg,
    rgba(13, 115, 119, 0.05),
    rgba(20, 145, 155, 0.1)
  );
  padding: 8px 24px;
  border-radius: 60px;
  border: 3px solid red !important;
}

.floating-time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 65px;
}

.floating-time-block * {
  color: red !important;
}

.floating-time-number {
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, #064e52, #ff0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  letter-spacing: 1px;
}

.floating-time-label {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.floating-time-separator {
  font-size: 28px;
  font-weight: 700;
  color: #0d7377;
  margin: 0 2px;
  animation: separatorBlink 1s ease-in-out infinite;
}

@keyframes separatorBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.floating-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #0d7377 0%, #14919b 50%, #0d7377 100%);
  background-size: 200% 200%;
  color: #ffffff;
  font-weight: 800;
  padding: 14px 36px;
  border-radius: 60px;
  box-shadow: 0 10px 30px -10px rgba(13, 115, 119, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation:
    gradientShift 8s ease infinite,
    ctaPulse 2s ease-in-out infinite;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  white-space: nowrap;
  font-size: 16px;
}

.floating-cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 40px -10px rgba(13, 115, 119, 0.7);
  gap: 16px;
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 10px 30px -10px rgba(13, 115, 119, 0.5);
  }
  50% {
    box-shadow: 0 15px 40px -5px rgba(13, 115, 119, 0.7);
  }
}

.floating-cta-button i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.floating-cta-button:hover i {
  transform: translateX(-5px);
}
[dir="rtl"] .floating-cta-button:hover i {
  transform: translateX(5px);
}

/* ========== ITI (INTL-TEL-INPUT) STYLES ========== */
.iti {
  width: 100%;
}

.iti__selected-country-primary {
  border-start-start-radius: 16px; /* Top-left */
  border-end-start-radius: 16px;   /* Bottom-left */
}

/* ========== PARTNERS RESPONSIVE ========== */
@media (min-width: 1600px) {
  .partner-item {
    width: 220px;
    height: 130px;
  }
  .partners-track {
    gap: 90px;
  }
}

@media (max-width: 1200px) {
  .partner-item {
    width: 180px;
    height: 110px;
  }
  .partners-track {
    gap: 60px;
  }
  .partners-fade {
    width: 150px;
  }
}

@media (max-width: 992px) {
  .partners-section {
    padding: 60px 0;
  }
  .partners-title {
    font-size: 32px;
  }
  .partner-item {
    width: 160px;
    height: 100px;
    padding: 12px;
  }
  .partners-track {
    gap: 40px;
    animation-duration: 40s;
  }
  .partners-fade {
    width: 100px;
  }
}

@media (max-width: 768px) {
  .partners-section {
    padding: 50px 0;
  }
  .partners-title {
    font-size: 28px;
  }
  .partners-header {
    margin-bottom: 35px;
  }
  .partner-item {
    width: 140px;
    height: 90px;
    border-radius: 12px;
  }
  .partners-track {
    gap: 30px;
    animation-duration: 35s;
  }
  .partners-fade {
    width: 70px;
  }
}

@media (max-width: 576px) {
  .partners-section {
    padding: 40px 0;
  }
  .partners-container {
    padding: 0 15px;
  }
  .partners-title {
    font-size: 24px;
  }
  .partners-divider {
    width: 70px;
    height: 3px;
  }
  .partner-item {
    width: 120px;
    height: 80px;
    padding: 10px;
    border-radius: 10px;
  }
  .partners-track {
    gap: 20px;
    padding: 20px 0;
    animation-duration: 30s;
  }
  .partners-fade {
    width: 40px;
  }
}

@media (max-width: 400px) {
  .partner-item {
    width: 100px;
    height: 70px;
  }
  .partners-track {
    gap: 15px;
  }
  .partners-title {
    font-size: 20px;
  }
}

/* ========== FLOATING BAR RESPONSIVE ========== */
@media (max-width: 1024px) {
  .floating-countdown-container {
    justify-content: center;
  }
  .floating-countdown-title {
    font-size: 16px;
  }
  .floating-time-number {
    font-size: 28px;
  }
  .floating-time-block {
    min-width: 55px;
  }
}

@media (max-width: 768px) {
  .floating-countdown-bar {
    padding: 10px 0;
  }
  .floating-countdown-container {
    padding: 0 16px;
    gap: 15px;
  }
  .floating-countdown-title span {
    display: none;
  }
  .floating-countdown-title i {
    font-size: 20px;
  }
  .floating-countdown-timer {
    padding: 6px 16px;
    gap: 4px;
  }
  .floating-time-number {
    font-size: 24px;
  }
  .floating-time-block {
    min-width: 45px;
  }
  .floating-time-label {
    font-size: 10px;
  }
  .floating-time-separator {
    font-size: 22px;
  }
  .floating-cta-button {
    padding: 12px 24px;
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .floating-countdown-container {
    flex-direction: column;
    gap: 12px;
  }
  .floating-countdown-title span {
    display: inline;
    font-size: 14px;
  }
  .floating-cta-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .floating-countdown-bar {
    padding: 8px 0;
  }
  .floating-time-number {
    font-size: 22px;
  }
  .floating-time-block {
    min-width: 40px;
  }
  .floating-time-separator {
    font-size: 20px;
    margin: 0 1px;
  }
  .floating-cta-button {
    padding: 12px 20px;
  }
}

/* ========== PRINT ========== */
@media print {
  .partners-section {
    break-inside: avoid;
    padding: 30px 0;
    background: #ffffff;
  }
  .partners-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  .partners-fade {
    display: none;
  }
  .partner-item {
    box-shadow: none;
    border: 1px solid #e2e8f0;
    break-inside: avoid;
  }
}
