* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* Video styling */
#product-video {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  margin: 20px auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background-color: #000; /* Ensures black background while video loads */
  object-fit: contain;
}

::selection {
  background: rgba(0, 0, 0, 0.1);
  color: #333;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Tajawal';;
  direction: rtl;
  background-color: #ffffff;
  color: #333;
  line-height: 1.8;
}

.hero-wrapper {
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.hero-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  animation: pulseGlow 4s ease-in-out infinite;
  z-index: 1;
}

.hero {
  position: relative;
  text-align: center;
  padding: 100px 20px 0px;
  color: #fff;
  z-index: 2;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.2); }
}

.hero h1 {
  font-size: 1.8rem;
  color: #f1f1f1;
  margin: 0 auto;
  font-weight: 700;
  line-height: 1.6;
  padding: 0 10px;
  position: relative;
  z-index: 2;
}

.hero img {
  width: 100%;
  height: auto;
  margin-top: 60px;
  animation: shakeY 5s ease-in-out infinite;
  z-index: 2;
  position: relative;
}

.hero-logo {
  width: 250px;
  height: auto;
  display: block;
  margin: 10px auto 10px auto;
  filter: brightness(1.2) contrast(1.1);
  transition: transform 0.3s ease;
}

.hero-logo:hover {
  transform: scale(1.1);
}

/* Desktop hero image - larger size */
@media (min-width: 769px) {
  .hero img {
    width: 33% !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@keyframes shakeY {
  0%, 100% { transform: translateY(0); }
  20%, 80% { transform: translateY(-5px); }
  40%, 60% { transform: translateY(5px); }
}

.counter-section {
  padding: 60px 20px;
  margin-top: 0px;
  text-align: center;
  position: relative;
  z-index: 2;
}

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

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


.counter-container {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.counter-title {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.counter-display {
  font-size: 5rem;
  font-weight: 900;
  color: #ffffff;
  margin: 10px 0;
  position: relative;
  line-height: 1;
  direction: ltr;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.counter-number {
  color: #ffffff;
  display: inline-block;
}

.plus-symbol {
  color: #ffffff;
  font-size: 3rem;
  margin-right: 5px;
  animation: bounce 2s infinite;
}

.counter-unit {
  color: #ffffff;
  font-size: 2rem;
  margin-left: 10px;
  font-weight: 700;
}

.charging-description, .durability-intro, .durability-conclusion {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  max-width: 800px;
  margin: 20px auto;
  text-align: center;
}

.durability-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 30px auto;
  padding: 0 20px;
}

.durability-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 1px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  perspective: 1000px;
  color: #333;
  animation: cardAppear 0.6s backwards;
}

.durability-card:nth-child(1) { animation-delay: 0.1s; }
.durability-card:nth-child(2) { animation-delay: 0.2s; }
.durability-card:nth-child(3) { animation-delay: 0.3s; }
.durability-card:nth-child(4) { animation-delay: 0.4s; }

.durability-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.15), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.durability-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

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

.durability-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  animation: pulseIcon 2s infinite;
  transition: all 0.3s ease;
    position: relative;
  display: inline-block;
}

.durability-icon { color: #28a745; }

/* Removed hover color change effects as requested */

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.1);
    opacity: 0.3;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
}

.durability-card h3 {
  font-size: 1.3rem;
  color: #222;
  margin: 0 0 15px;
  transition: transform 0.3s ease;
}

.durability-card p {
  font-size: 1rem;
  color: #666;
  margin: 0;
  transition: transform 0.3s ease;
}

/* Removed hover color change effects as requested */

@media (max-width: 768px) {
  .durability-cards {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 15px;
  }
  
  .durability-intro, .durability-conclusion {
    font-size: 1.1rem;
    padding: 0 20px;
  }
}

.cable-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 30px auto;
  padding: 0 20px;
}

.cable-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform-style: preserve-3d;
  animation: cardAppear 0.6s backwards;
}

.cable-card:nth-child(1) { animation-delay: 0.1s; }
.cable-card:nth-child(2) { animation-delay: 0.2s; }
.cable-card:nth-child(3) { animation-delay: 0.3s; }
.cable-card:nth-child(4) { animation-delay: 0.4s; }

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

.cable-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.1), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cable-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

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

.cable-card:hover .cable-icon {
  transform: translateZ(20px);
  color: #0056b3;
}

.cable-card:hover h3 {
  transform: translateZ(15px);
  color: #222;
}

.cable-card:hover p {
  transform: translateZ(10px);
  color: #444;
}

.cable-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #007bff;
  animation: pulseIcon 2s infinite;
}

.cable-card h3 {
  font-size: 1.4rem;
  margin: 10px 0;
  color: #333;
}

.cable-card p {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

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

@media (max-width: 768px) {
  .cable-types {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 15px;
  }

  .charging-description {
    font-size: 1.1rem;
    padding: 0 20px;
  }

  .full-width-mobile {
    max-width: 100% !important;
    margin: 15px 0 !important;
  }
}

.charging-methods {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
  perspective: 1000px;
}

.charging-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 180px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.charging-method::before,
.charging-method::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.charging-method::before {
  background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y),
    rgba(255, 255, 255, 0.1),
    transparent 40%);
}

.charging-method::after {
  background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y),
    rgba(255, 255, 255, 0.4),
    transparent 40%);
  opacity: 0;
}

.charging-method:hover {
  transform: translateY(-10px) rotateX(10deg);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.charging-method:hover::after {
  opacity: 1;
}

.charging-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.charging-method:hover .charging-icon {
  transform: scale(1.1) translateZ(20px);
}

.solar-icon {
  color: #ffd700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.electric-icon {
  color: #00aaff;
  text-shadow: 0 0 20px rgba(0, 170, 255, 0.4);
}

.charging-label {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.charging-method:hover .charging-label {
  transform: translateZ(10px);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Updated Feature Cards - 2 columns for tablet/desktop, responsive for mobile */
.feature-cards {
  display: grid;
  grid-template-columns: 1fr; /* Single column for mobile */
  gap: 30px;
  margin: 40px auto;
  padding: 0 20px;
  max-width: 900px;
}

/* Tablet and up - 2 columns */
@media (min-width: 768px) {
  .feature-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 0 40px;
  }
}

.feature-card {
  position: relative;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 140%;
  height: 140%;
  background-size: cover;
  background-position: center;
  animation: backgroundMove 3s linear infinite;
  opacity: 0.8;
  z-index: 0;
}

.feature-watt::before        { background-image: url('images/background21watt.webp'); }
.feature-solar::before       { background-image: url('images/backgroundsolarpower.webp'); }
.feature-multicharge::before{ background-image: url('images/backgroundautoID.webp'); }
.feature-protection::before { background-image: url('images/backgroundchargingpower.webp'); }
.feature-light::before      { background-image: url('images/background100lumens.webp'); }
.feature-shockproof::before { background-image: url('images/backgroundantishocks.webp'); }

@keyframes backgroundMove {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.1) translate(-10px, -10px); }
  100% { transform: scale(1) translate(0, 0); }
}

.feature-overlay {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
  padding: 25px;
  border-radius: 15px;
  max-width: 90%;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background 0.3s ease;
  opacity:0.92;
}

.feature-card:hover .feature-overlay {
  background: rgba(255, 255, 255, 0.95);
  opacity: 0.91;
  transform: scale(1.02);
}

.feature-title {
  font-size: 1.5rem; /* Increased from 1.3rem */
  font-weight: bold;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.3;
}

.feature-description {
  font-size: 1.1rem; /* Increased from 0.9rem */
  font-weight: 500;
  color: #333;
  line-height: 1.6;
}

/* Mobile adjustments for feature cards */
@media (max-width: 767px) {
  .feature-card {
    height: 260px;
  }

  .feature-title {
    font-size: 1.3rem;
  }

  .feature-description {
    font-size: 1rem;
  }
  
  .feature-overlay {
    padding: 20px;
  }
}

/* Desktop larger screens */
@media (min-width: 1024px) {
  .feature-title {
    font-size: 1.6rem;
  }

  .feature-description {
    font-size: 1.2rem;
  }
  
  .feature-overlay {
    padding: 30px;
  }
}

/* Floating background animation */
@keyframes floatBg {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.content {
  padding: 20px;
}

.content p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

.content h2{
  color: #333;
  max-width: 900px;
  margin-top: 40px;
  margin-inline-start: auto; /* يسار LTR / يمين RTL */
  margin-inline-end:   auto; /* يمين LTR / يسار RTL */
  text-align: center;
}

/* Media query للجوال */
@media (max-width: 480px) {
  .content h2 {
    font-size: 1.9rem; /* حجم متناسق للجوال */
    text-align: center;
  }
}

.content ul {
  list-style: none;
  padding-right: 20px;
}

.content li {
  padding: 8px 0;
  color: #333;
  position: relative;
  padding-right: 25px;
}

.content li::before {
  content: "✓";
  color: #00ff88;
  font-weight: bold;
  position: absolute;
  right: 0;
}

/* Mobile Styles */
@media (max-width: 480px) {
  .counter-display {
    font-size: 4rem;
  }

  .counter-unit {
    font-size: 1.5rem;
  }

  .plus-symbol {
    font-size: 2rem;
  }

  .counter-title {
    font-size: 1rem;
    font-weight: 400;
  }

  .charging-methods {
    gap: 20px;
  }

  .charging-method {
    min-width: max-content;
    padding: max-content;
  }

  .charging-icon {
    font-size: 2rem;
  }

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


/* Desktop Styles */
@media (min-width: 768px) {
  .hero {
    padding: 60px 40px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero img {
    max-width: 250px;
  }

  .counter-section {
    padding: 80px 40px;
  }

  .counter-display {
    font-size: 7rem;
  }

  .counter-unit {
    font-size: 3rem;
  }

  .counter-title {
    font-size: 1rem;
  }

  .plus-symbol {
    font-size: 4rem;
  }

  .charging-methods {
    gap: 60px;
  }

  .charging-method {
    min-width: 180px;
    padding: 25px;
  }

  .charging-icon {
    font-size: 3rem;
  }

  .charging-label {
    font-size: 1.1rem;
  }

  .content {
    padding: 30px 60px;
  }

  .content h2 {
    font-size: 2.5rem;
  }

  .content p {
    font-size: 1.1rem;
  }

  .content ul {
    padding-right: 60px;
  }
}

.led-icon, .shock-icon {
  font-size: 3.5rem;
  animation: pulse 2s ease-in-out infinite;
  color: #ffaa00;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.content img.reveal-on-scroll{
  overflow: hidden;        /* يضمن عدم ظهور الحواف خارج الإطار */
}

.interactive-container {
  width: 100%;
  max-width: 100%;
  background: #ffffff;
  text-align: center;
  color: #ffffff;
  margin: 0 auto;
  padding: 10px 20px;
  position: relative;
  overflow: hidden;
}

.interactive-container h2 {
  font-size: 2.5rem; /* same as .content h2 for desktop */
  color: #333;
  margin: 30px 0 20px;
  text-align: center;
}
@media (max-width: 500px) {
  .interactive-container h2 {
    font-size: 1.9rem;
  }
}

/* SVG and related styles removed */

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


/* ===== جدول المواصفات ===== */
.product-specs{
  background: linear-gradient(145deg, #ffffff, #f5f5f5);
  border-radius: 16px;
  box-shadow: 10px 10px 20px rgba(0,0,0,0.05), -10px -10px 20px rgba(255,255,255,0.8);
  padding: 30px 20px;
  margin: 40px auto;
  max-width: 700px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-specs:hover {
  transform: translateY(-5px);
  box-shadow: 12px 12px 25px rgba(0,0,0,0.08), -12px -12px 25px rgba(255,255,255,0.9);
}
.product-specs h3{
  font-size:2rem;
  margin-bottom:20px;
  color:#222;
  text-align:center;
}
.specs-table-wrapper{overflow-x:auto;}

.specs-table{
  width:100%;
  border-collapse:collapse;
  font-size:1.1rem;
  direction:rtl;
  background:#fff;
  border-radius:12px;
  overflow:hidden;
}
.specs-table th,
.specs-table td{
  padding:14px 18px;
  border-bottom:1px solid #eee;
  text-align:right;
}
.specs-table th{
  background:#f1f1f1;
  color:#333;
  font-weight:700;
  width:40%;
  white-space:nowrap;
}
.specs-table td{
  color:#444;
  font-weight:500;
}
.specs-table tr:last-child th,
.specs-table tr:last-child td{border-bottom:none;}

/* تحجيم للجوال */
@media(max-width:480px){
  .product-specs h3{font-size:1.6rem;}
  .specs-table th,
  .specs-table td{
    font-size:1rem;
    padding:12px;
  }
}

/* ===== قسم التقييمات (من دون صور) ===== */
.reviews-section{
  background:#ffffff;
  max-width:730px;
  margin:50px auto;
  padding:30px 20px;
  border-radius:16px;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  text-align:center;
}
.reviews-section h3{
  font-size:2rem;
  margin-bottom:25px;
  color:#222;
}

/* بطاقات المراجعة */
.review-card{
  background: linear-gradient(145deg, #ffffff, #f5f5f5);
  border-radius: 14px;
  box-shadow: 8px 8px 16px rgba(0,0,0,0.05), -8px -8px 16px rgba(255,255,255,0.8);
  padding: 25px 20px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  transform: perspective(1000px) rotateX(0deg);
}

.review-card:hover {
  transform: perspective(1000px) rotateX(2deg);
  box-shadow: 10px 10px 20px rgba(0,0,0,0.08), -10px -10px 20px rgba(255,255,255,0.9);
}

.reviewer-name{
  font-weight:700;
  margin-bottom:8px;
  font-size:1.15rem;
  color:#333;
}

.stars{
  font-family:inherit;
  color:#ffbb00;
  margin-bottom:10px;
  letter-spacing:1px;
}

.review-text{
  font-size:1rem;
  color:#444;
  line-height:1.7;
  text-align:center;
  max-width:220px;
}

/* إعدادات السلايدر */
.reviews-carousel .swiper-slide{
  width:auto;          /* يسمح بالتكيف */
}
.swiper{padding:10px 5px 40px;}

/* مؤشّر النقاط */
.reviews-carousel .swiper-pagination-bullet{
  background:#666;
  opacity:.3;
}
.reviews-carousel .swiper-pagination-bullet-active{
  background:#101010;
  opacity:1;
}

/* استجابة الشاشات */
@media(max-width:480px){
  .reviews-section h3{font-size:1.6rem;}
  .review-text{max-width:100%;}
}

.cta-order-form {
  background: linear-gradient(135deg, #ffffff, #fdfdfd);
  border: 2px solid #e0e0e0;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  padding: 40px 25px;
  margin: 70px auto;
  max-width: 700px;
  text-align: center;
  animation: fadeInUp 1s ease both;
  transition: transform 0.4s ease;
}

.cta-order-form:hover {
  transform: translateY(-5px);
}

.cta-order-form h2 {
  font-size: 2.2rem;
  color: #111;
  margin-bottom: 15px;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 20px;
  background: #f5f5f5;
  padding: 12px 15px;
  border-radius: 12px;
  display: inline-block;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.05);
}

.cta-price {
  font-size: 1.6rem;
  font-weight: bold;
  color: #ff6b35;
  margin-bottom: 25px;
}

.cta-offers {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.cta-offers label {
  background: #fafafa;
  padding: 14px;
  border-radius: 12px;
  border: 2px solid #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.05rem;
  font-weight: 600;
}

.cta-offers input[type="radio"] {
  margin-left: 10px;
  transform: scale(1.2);
}

.cta-offers label:hover,
.cta-offers input[type="radio"]:checked + label {
  border-color: #101010;
  background-color: #f0f0f0;
}

.cta-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 25px;
}

.cta-fields input {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #bbb;
  font-size: 1rem;
  background-color: #fff;
  box-shadow: inset 0 1px 4px rgba(0,0,0,0.03);
  transition: border-color 0.3s ease;
}

.cta-fields input:focus {
  border-color: #101010;
  outline: none;
}

#submitBtn {
  background: linear-gradient(145deg, #ff7519, #ff6600);
  color: #fff;
  padding: 18px;
  border: none;
  border-radius: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

#submitBtn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.6s ease;
}

#submitBtn:hover::before {
  left: 100%;
}

#submitBtn:hover:not(:disabled) {
  background: #e65c00;
  transform: scale(1.02);
}

#submitBtn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 400px) {
  .cta-order-form {
    padding: 25px 15px;
  }

  .cta-order-form h2 {
    font-size: 1.6rem;
  }

  .cta-price {
    font-size: 1.3rem;
  }

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

  #submitBtn {
    font-size: 1.7rem;
    padding: 14px;
  }

  .cta-offers label {
    font-size: 0.95rem;
  }
}

.certified-section {
  max-width: 850px;
  margin: auto;
  padding: 10px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.certified-title {
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 22px;
  color: #333;
}

.logo-slider {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  background: linear-gradient(to right, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.9) 10%, rgba(255,255,255,0.9) 90%, rgba(255,255,255,0.5) 100%);
  width: calc(100% + 40px);
  max-width: 790px;
  margin: 0 -20px;
  touch-action: pan-y;
}

.logo-slider .swiper-wrapper {
  transition-timing-function: linear !important;
  will-change: transform;
  transform: translate3d(0, 0, 0); /* Force hardware acceleration */
}

.logo-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%; /* Fixed width for desktop - 4 slides */
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-slider .swiper-slide-active {
  opacity: 1;
}

.logo-slider .swiper-slide img {
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: grayscale(15%);
}

.logo-slider .swiper-slide:hover {
  transform: translateY(-3px);
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo-slider .swiper-slide {
    width: 25%; /* 4 slides at this breakpoint */
  }
  .logo-slider .swiper-slide img {
    height: 70px;
  }
}

@media (max-width: 640px) {
  .logo-slider .swiper-slide {
    width: 33.333%; /* 3 slides at this breakpoint */
  }
}

@media (max-width: 480px) {
  .logo-slider .swiper-slide {
    width: 33.333%; /* 3 slides at this breakpoint */
  }
  .logo-slider .swiper-slide img {
    height: 60px;
  }
  .logo-slider {
    max-width: 100%;
    padding: 15px 0;
  }
}

@media (max-width: 320px) {
  .logo-slider .swiper-slide {
    width: 50%; /* 2 slides at this breakpoint */
  }
}

.logo-slider .swiper-slide img:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
  }

/* ===== قسم الأسئلة الشائعة ===== */
.faq-section {
  margin: 60px auto;
  max-width: 800px;
  padding: 0 20px;
}

.faq-title {
  text-align: center;
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 40px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question:hover {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.faq-question span:first-child {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  flex: 1;
  margin-left: 15px;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff6b35;
  transition: transform 0.3s ease;
  min-width: 30px;
  text-align: center;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #ffffff;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 20px 25px;
}

.faq-answer div {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  padding: 0;
}

@media (max-width: 768px) {
  .faq-section {
    margin: 40px auto;
    padding: 0 15px;
  }
  
  .faq-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .faq-question {
    padding: 15px 20px;
  }
  
  .faq-question span:first-child {
    font-size: 1rem;
    margin-left: 10px;
  }
  
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  
  .faq-answer div {
    font-size: 0.95rem;
  }
}

/* ===== قسم الضمان الذهبي ===== */
.warranty-section {
  margin: 60px auto;
  max-width: 730px;
  padding: 0 20px;
}

.warranty-container {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  padding: 40px;
  border: 2px solid #e8ecf0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.warranty-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.warranty-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
  border-radius: 20px 20px 0 0;
}

.warranty-image {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 100px;
  height: 150px;
  z-index: 10;
}

.warranty-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.warranty-content {
  padding-right: 100px;
  text-align: right;
}

.warranty-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 25px;
  background: linear-gradient(45deg, #ffd700, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
  line-height: 1.2;
}

.warranty-text {
  color: #444;
  line-height: 1.8;
  font-size: 1.1rem;
}

.warranty-text p {
  margin-bottom: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  border-right: 4px solid #ffd700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.warranty-text p:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(-5px);
}

.warranty-text p:last-child {
  margin-bottom: 0;
  border-right-color: #ff6b35;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 215, 0, 0.1));
}

/* استجابة للشاشات الصغيرة */
@media (max-width: 768px) {
  .warranty-container {
    padding: 40px 25px;
  }
  
  .warranty-image {
    position: static;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: block;
  }
  
  .warranty-content {
    padding-right: 0;
    text-align: center;
  }
  
  .warranty-title {
    font-size: 2rem;
  }
  
  .warranty-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .warranty-section {
    margin: 40px auto;
    padding: 0 15px;
  }
  
  .warranty-container {
    padding: 30px 20px;
  }
  
  .warranty-title {
    font-size: 1.8rem;
  }
  
  .warranty-text p {
    padding: 15px;
    font-size: 0.95rem;
  }
}

/* Add smooth edges */
.logo-slider::before,
.logo-slider::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none; /* Allow interaction with elements beneath */
}

.logo-slider::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.logo-slider::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

/* تحسين العرض على الموبايل */
@media (max-width: 600px) {
  .logo-slider .swiper-slide img {
    height: 70px;
    margin: 0 5px;
  }
  .certified-title {
    font-size: 16px;
  }
}
/* ===== Thank You Page Styles ===== */
.thank-you-page {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
  position: relative;
}

.thank-you-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.thankyou-container {
  max-width: 500px;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 8px 32px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
}

.thankyou-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15), 0 10px 40px rgba(0, 0, 0, 0.08);
}

.thankyou-container h1 {
  font-size: 2.5em;
  color: #059669;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(5, 150, 105, 0.2);
}

.thankyou-container > p {
  font-size: 1.2em;
  color: #555555;
  margin: 20px 0;
  line-height: 1.6;
}

.thankyou-details {
  margin: 30px 0;
  padding: 25px;
  background: rgba(248, 250, 252, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  text-align: right;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.thankyou-details:hover {
  background: rgba(248, 250, 252, 1);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.thankyou-details p {
   font-size: 1.1em;
   margin: 10px 0;
   color: #444444;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 8px 0;
 }
 
 .important-notice {
   margin: 30px 0;
   padding: 30px;
   background: rgba(59, 130, 246, 0.08);
   backdrop-filter: blur(15px);
   border-radius: 20px;
   border: 1px solid rgba(59, 130, 246, 0.2);
   text-align: center;
   box-shadow: 0 10px 40px rgba(59, 130, 246, 0.1);
   transition: all 0.3s ease;
 }
 
 .important-notice:hover {
   background: rgba(59, 130, 246, 0.12);
   transform: translateY(-3px);
   box-shadow: 0 15px 50px rgba(59, 130, 246, 0.15);
 }
 
 .important-notice h3 {
   color: #2563eb;
   font-size: 1.3em;
   margin-bottom: 15px;
   font-weight: 600;
 }
 
 .important-notice p {
   color: #374151;
   font-size: 1em;
   line-height: 1.6;
   margin: 15px 0;
   text-align: right;
 }
 
 .call-times {
   background: rgba(59, 130, 246, 0.9);
   color: #ffffff;
   padding: 12px 20px;
   border-radius: 8px;
   margin: 20px 0;
   font-size: 1em;
   font-weight: 600;
   border: 1px solid rgba(59, 130, 246, 0.7);
 }
 
 .urgent-note {
   background: rgba(239, 68, 68, 0.1);
   border: 1px solid rgba(239, 68, 68, 0.3);
   border-radius: 8px;
   padding: 15px;
   color: #dc2626 !important;
   font-weight: 500;
   margin: 20px 0 !important;
 }
 
 .closing-note {
   background: rgba(34, 197, 94, 0.1);
   border: 1px solid rgba(34, 197, 94, 0.3);
   border-radius: 8px;
   padding: 15px;
   color: #059669 !important;
   font-weight: 500;
   font-style: italic;
 }

.thankyou-details strong {
    color: #059669;
    font-weight: 600;
  }

.thankyou-details span {
  color: #666666;
  font-weight: 500;
}



/* Mobile Responsive */
@media (max-width: 768px) {
  .thank-you-page {
    padding: 20px 15px;
    align-items: flex-start;
  }
  
  .thankyou-container {
    margin: 0;
    padding: 40px 30px;
    max-width: none;
    width: 100%;
  }
  
  .thankyou-container h1 {
    font-size: 2.5em;
  }
  
  .thankyou-container h1::after {
    right: -25px;
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
   .thank-you-page {
     padding: 15px 10px;
     min-height: 100vh;
   }
   
   .thankyou-container {
     padding: 30px 25px;
     border-radius: 20px;
     margin: 0;
     width: 100%;
   }
   
   .thankyou-container h1 {
     font-size: 2.2em;
   }
   
   .thankyou-container > p {
     font-size: 1.1em;
   }
   
   .thankyou-details {
     padding: 20px;
     margin: 25px 0;
   }
   
   .thankyou-details p {
     font-size: 1em;
     flex-direction: column;
     align-items: flex-start;
     gap: 5px;
   }
   
   .important-notice {
     padding: 20px;
     margin: 25px 0;
   }
   
   .important-notice h3 {
     font-size: 1.2em;
   }
   
   .important-notice p {
     font-size: 1em;
   }
   
   .call-times {
     padding: 10px 15px;
     font-size: 1em;
   }
 }

/* Add safe area for mobile browsers */
body {
  padding-bottom: env(safe-area-inset-bottom);
}

/* Mobile full-width images */
@media (max-width: 768px) {
  /* Hero image - line 16 - normal size on mobile */
  .hero img {
    width: 90%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-logo {
    width: 200px !important;
    margin: 10px auto 10px auto;
  }
  
  /* Adjust hero padding for better spacing */
  .hero {
    padding: 60px 20px 0px;
  }
}

@media (max-width: 480px) {
  /* Hero image for smaller mobile screens */
  .hero img {
    width: 85% !important;
    max-width: 350px !important;
  }
  
  .hero-logo {
    width: 150px;
    margin: 10px auto 8px auto;
  }
  
  .hero {
    padding: 40px 15px 0px;
  }
}

@media (max-width: 768px) {
  /* Content images - lines 31, 88, 178 */
  .content img {
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
  }
  
  /* Specific targeting for images with reveal-on-scroll class */
  img.reveal-on-scroll {
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
  }
  
  /* Ensure images maintain aspect ratio */
  .hero img,
  .content img,
  img.reveal-on-scroll {
    height: auto !important;
    object-fit: cover;
  }
}
