/* طيف الجزيرة للخدمات التسويقية - Main Stylesheet */

/* Import Arabic fonts */
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900&display=swap");

/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Root Variables - Brand Colors and Typography */
:root {
  --primary-color: #1891c8;
  --secondary-color: #ffffff;
  --accent-color: #f8f9fa;
  --text-color: #333333;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --error-color: #dc3545;

  --primary-font: "Tajawal", "Cairo", Arial, sans-serif;
  --secondary-font: "Cairo", "Tajawal", Arial, sans-serif;

  --base-font-size: 1rem;
  --line-height: 1.6;
  --border-radius: 8px;
  --transition: 0.3s ease-in-out;

  --container-max-width: 1400px;
  --section-padding: 60px 20px;
  --card-margin: 20px;
  --form-spacing: 16px;
}

/* Base HTML and Body Styles */
html {
  font-size: clamp(14px, 2.5vw, 16px);
  scroll-behavior: smooth;
}

body {
  font-family: var(--primary-font);
  font-size: var(--base-font-size);
  line-height: var(--line-height);
  color: var(--text-color);
  background-color: var(--secondary-color);
  direction: rtl;
  text-align: right;
}

/* Container and Layout System */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* CSS Grid Layout System */
.grid {
  display: grid;
  gap: 20px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Flexbox Layout System with RTL Support */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

/* Typography Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primary-font);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-color);
}

h1 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  font-weight: 500;
}

p {
  margin-bottom: 1rem;
  line-height: var(--line-height);
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-family: var(--primary-font);
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition);
  min-width: 120px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24, 145, 200, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24, 145, 200, 0.3);
}

.btn-large {
  padding: 16px 32px;
  font-size: clamp(1rem, 2.8vw, 1.1rem);
  font-weight: 600;
}

.btn-small {
  padding: 8px 16px;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
}

/* Form Styles */
.form-group {
  margin-bottom: var(--form-spacing);
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-color);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--primary-font);
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius);
  background-color: var(--secondary-color);
  color: var(--text-color);
  direction: rtl;
  text-align: right;
  transition: border-color var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(24, 145, 200, 0.1);
}

.form-control::placeholder {
  color: #999;
  opacity: 1;
}

/* Radio Button and Checkbox Styles */
.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  direction: rtl;
}

.form-check-input {
  margin-left: 8px;
  margin-right: 0;
}

.form-check-label {
  font-weight: 400;
  cursor: pointer;
}

/* Select Dropdown Styles */
.form-select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--primary-font);
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius);
  background-color: var(--secondary-color);
  color: var(--text-color);
  direction: rtl;
  cursor: pointer;
  transition: border-color var(--transition);
}

.form-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(24, 145, 200, 0.1);
}

/* Card Component Styles */
.card {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius);
  padding: 24px;
  margin-bottom: var(--card-margin);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card-header {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
}

.card-title {
  font-size: clamp(1.1rem, 2.8vw, 1.25rem);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.card-body {
  margin-bottom: 16px;
}

.card-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
}

/* Section Styles */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.section-subtitle {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-color);
  font-weight: 400;
}

/* Header Styles */
.header {
  background-color: #2b2b2b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 70px;
  width: auto;
}

.company-name {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 800;
  color: var(--primary-color);
  margin: 0;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 1.8rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition);
  padding: 10px 14px;
  border-radius: var(--border-radius);
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  white-space: nowrap;
  border: 1px solid transparent;
}

.nav-link:hover {
  color: var(--primary-color);
  background-color: rgba(24, 145, 200, 0.1);
  border-color: rgba(24, 145, 200, 0.3);
  transform: translateY(-1px);
}

.nav-link.active {
  color: var(--secondary-color);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 2px 8px rgba(24, 145, 200, 0.3);
}

.contact-info {
  display: flex;
  align-items: center;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  background-color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  transition: all var(--transition);
}

.contact-link:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

/* Hero Section Styles */
.hero {
  background: url("../img/background.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--secondary-color);
  padding: 80px 0;
  min-height: 800px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-color), #0f7aa8);
  opacity: 0.8;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  text-align: right;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.25rem);
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.secondary-hero {
  background: linear-gradient(135deg, var(--primary-color), #0f7aa8);
  color: var(--secondary-color);
  padding: 80px 0;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.secondary-hero .hero-subtitle {
  font-size: 1rem;
  max-width: 800px;
}

.hero-cta {
  margin-top: 2rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 16px 32px;
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  background-color: #f8f9fa;
}

.cta-button i {
  font-size: 1.3rem;
}

.cta-note {
  margin-top: 1rem;
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
  opacity: 0.8;
  margin-bottom: 0;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.phone-showcase img {
  width: 100%;
  max-width: 600px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Service Benefits Section Styles */
.benefits {
  padding: 60px 0;
  background-color: var(--accent-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-card {
  background-color: var(--secondary-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: clamp(1.1rem, 2.8vw, 1.25rem);
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.benefit-card p {
  color: #666;
  margin-bottom: 0;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  text-decoration: none;
}

/* Footer Styles */
.footer {
  background: url("../img/background2.jpg");
  background-size: cover;
  background-position: 10px 0;
  background-repeat: no-repeat;
  color: var(--secondary-color);
  text-align: center;
  padding: 2rem 0;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--text-color);
  opacity: 0.85;
  z-index: 1;
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: var(--secondary-color);
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--primary-color);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--text-color);
}

.bg-primary {
  background-color: var(--primary-color);
}

.bg-secondary {
  background-color: var(--accent-color);
}

.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}
.mb-5 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}
.mt-5 {
  margin-top: 3rem;
}

.p-1 {
  padding: 0.5rem;
}
.p-2 {
  padding: 1rem;
}
.p-3 {
  padding: 1.5rem;
}
.p-4 {
  padding: 2rem;
}
.p-5 {
  padding: 3rem;
}

/* RTL Support Utilities */
.rtl {
  direction: rtl;
  text-align: right;
}

.ltr {
  direction: ltr;
  text-align: left;
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.6s ease-in-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.spinner {
  border: 3px solid #f3f3f3;
  border-top: 3px solid var(--primary-color);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin 1s linear infinite;
  display: inline-block;
  margin-left: 8px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} /* iPhone
 Products Gallery Section Styles */
.products-gallery {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.product-card {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all var(--transition);
  border: 1px solid #e0e0e0;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.product-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition);
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
  text-align: center;
}

.product-title {
  font-size: clamp(1.1rem, 2.8vw, 1.25rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.product-description {
  color: #666;
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
  margin-bottom: 0;
  line-height: 1.4;
}

.gallery-cta {
  text-align: center;
  margin-top: 3rem;
}

.cta-button.secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 16px 32px;
  font-size: clamp(1rem, 2.8vw, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.cta-button.secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(24, 145, 200, 0.3);
}

.cta-button.secondary i {
  font-size: 1.2rem;
}
* Footer Bottom Styles */ .footer-bottom {
  border-top: 1px solid #555;
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  color: #ccc;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-section i {
  margin-left: 8px;
  color: var(--primary-color);
}

/* Eligibility Requirements Section Styles */
.eligibility {
  padding: 80px 0;
  background-color: var(--accent-color);
}

.eligibility-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin: 3rem 0;
}

.requirements-section,
.exclusions-section {
  background-color: var(--secondary-color);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.requirements-title,
.exclusions-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e0e0e0;
}

.requirements-title {
  color: var(--success-color);
}

.requirements-title i {
  color: var(--success-color);
  font-size: 1.8rem;
}

.exclusions-title {
  color: var(--warning-color);
}

.exclusions-title i {
  color: var(--warning-color);
  font-size: 1.8rem;
}

.requirements-grid,
.exclusions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.requirement-item,
.exclusion-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: var(--border-radius);
  border: 2px solid transparent;
  transition: all var(--transition);
}

.requirement-item:hover {
  border-color: var(--success-color);
  background-color: rgba(40, 167, 69, 0.05);
  transform: translateY(-2px);
}

.exclusion-item:hover {
  border-color: var(--warning-color);
  background-color: rgba(255, 193, 7, 0.05);
  transform: translateY(-2px);
}

.requirement-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
}

.requirement-icon.success {
  background-color: var(--success-color);
  color: var(--secondary-color);
}

.requirement-icon.warning {
  background-color: var(--warning-color);
  color: var(--secondary-color);
}

.requirement-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.requirement-content p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0;
  line-height: 1.5;
}

.eligibility-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--primary-color), #0f7aa8);
  border-radius: var(--border-radius);
  color: var(--secondary-color);
}

.cta-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.eligibility-cta .cta-button {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 16px 32px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.eligibility-cta .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  background-color: #f8f9fa;
}

.eligibility-cta .cta-button i {
  font-size: 1.3rem;
}

/* About Page Specific Styles */
.secondary-hero {
  background: linear-gradient(135deg, var(--accent-color), #e9ecef);
  padding: 60px 0;
}

.secondary-hero .hero-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.secondary-hero .hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-color);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.mission-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 2rem;
}

.company-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.info-card {
  background: var(--secondary-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform var(--transition);
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #0f7aa8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.info-icon i {
  font-size: 2rem;
  color: white;
}

.info-card h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.info-card p {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.info-card small {
  color: #666;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.quality-card {
  background: var(--secondary-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-right: 4px solid var(--primary-color);
  transition: transform var(--transition);
}

.quality-card:hover {
  transform: translateY(-3px);
}

.quality-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.quality-icon {
  width: 60px;
  height: 60px;
  background: rgba(24, 145, 200, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quality-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.quality-text h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.quality-text p {
  margin: 0;
  line-height: 1.6;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.coverage-card {
  background: var(--secondary-color);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition);
}

.coverage-card:hover {
  transform: translateY(-5px);
}

.coverage-header {
  text-align: center;
  margin-bottom: 2rem;
}

.coverage-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-color), #0f7aa8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.coverage-icon i {
  font-size: 2.5rem;
  color: white;
}

.coverage-header h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.coverage-description {
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.coverage-list {
  list-style: none;
  padding: 0;
}

.coverage-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: rgba(24, 145, 200, 0.05);
  border-radius: 6px;
}

.coverage-item i {
  color: var(--primary-color);
  margin-left: 12px;
  font-size: 1.1rem;
}

.cta-container {
  max-width: 600px;
  margin: 0 auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.footer-logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 40px;
  width: auto;
}

.footer-company-name {
  color: var(--primary-color);
  margin: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.5rem;
}

.footer-services {
  list-style: none;
  padding: 0;
}

.footer-services li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #555;
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  color: #ccc;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* Order Form Specific Styles */
.form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--secondary-color);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.form-header {
  background: linear-gradient(135deg, var(--primary-color), #0f7aa8);
  color: var(--secondary-color);
  padding: 2.5rem;
  text-align: center;
}

.form-header .section-title {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.form-description {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.order-form {
  padding: 2.5rem;
}
.form-section:last-child {
  margin-bottom: 0;
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.form-section-title i {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.form-label {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.form-label.required::after {
  content: " *";
  color: var(--error-color);
  font-weight: bold;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--primary-font);
  font-size: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius);
  background-color: var(--secondary-color);
  color: var(--text-color);
  direction: rtl;
  text-align: right;
  transition: all var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(24, 145, 200, 0.1);
  background-color: rgba(24, 145, 200, 0.02);
}

.form-input::placeholder {
  color: #999;
  opacity: 1;
}

.input-group {
  display: flex;
  align-items: center;
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius);
  background-color: var(--secondary-color);
  transition: border-color var(--transition);
}

.input-group:focus-within {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(24, 145, 200, 0.1);
}

.input-prefix,
.input-suffix {
  padding: 16px 20px;
  background-color: #f8f9fa;
  color: var(--text-color);
  font-weight: 600;
  border-right: 1px solid #e0e0e0;
  white-space: nowrap;
}

.input-suffix {
  border-right: none;
  border-left: 1px solid #e0e0e0;
}

.input-group .form-input {
  border: none;
  box-shadow: none;
  flex: 1;
}

.input-group .form-input:focus {
  box-shadow: none;
  background-color: transparent;
}

.form-help {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.radio-option {
  position: relative;
}

.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background-color: #f8f9fa;
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition);
  font-weight: 500;
}

.radio-label:hover {
  background-color: rgba(24, 145, 200, 0.05);
  border-color: var(--primary-color);
}

.radio-option input[type="radio"]:checked + .radio-label {
  background-color: rgba(24, 145, 200, 0.1);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  position: relative;
  transition: all var(--transition);
}

.radio-option input[type="radio"]:checked + .radio-label .radio-custom {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

.radio-option input[type="radio"]:checked + .radio-label .radio-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: var(--secondary-color);
  border-radius: 50%;
}

.form-actions {
  text-align: center;
  padding-top: 2rem;
  border-top: 2px solid #f0f0f0;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary-color), #0f7aa8);
  color: var(--secondary-color);
  padding: 18px 36px;
  font-size: 1.2rem;
  font-weight: 700;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(24, 145, 200, 0.3);
  min-width: 200px;
}

.submit-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(24, 145, 200, 0.4);
}

.submit-button:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.submit-button i {
  font-size: 1.3rem;
}

.form-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.form-note a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.form-note a:hover {
  text-decoration: underline;
}

.additional-info {
  margin-top: 4rem;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.additional-info .info-card {
  background-color: var(--secondary-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition);
}

.additional-info .info-card:hover {
  transform: translateY(-5px);
}

.additional-info .info-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), #0f7aa8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.additional-info .info-icon i {
  font-size: 1.8rem;
  color: white;
}

.additional-info .info-card h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.additional-info .info-card p {
  color: #666;
  margin-bottom: 0;
  line-height: 1.5;
} /* Checkbo
x Styles */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkbox-option {
  position: relative;
}

.checkbox-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-color);
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 4px;
  position: relative;
  transition: all var(--transition);
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-option
  input[type="checkbox"]:checked
  + .checkbox-label
  .checkbox-custom {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

.checkbox-option
  input[type="checkbox"]:checked
  + .checkbox-label
  .checkbox-custom::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 10px;
  border: solid var(--secondary-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.terms-link {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 600;
  transition: color var(--transition);
}

.terms-link:hover {
  color: #0f7aa8;
  text-decoration: none;
}

/* Submit Button Styles */
.submit-button {
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--primary-color), #0f7aa8);
  color: var(--secondary-color);
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--primary-font);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(24, 145, 200, 0.3);
}

.submit-button:hover {
  background: linear-gradient(135deg, #0f7aa8, var(--primary-color));
}

.submit-button:active {
  background: linear-gradient(135deg, #0f7aa8, var(--primary-color));
}

.submit-button:disabled {
  background: #ccc;
  color: #666;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.submit-button:disabled:hover {
  background: #ccc;
  transform: none;
  box-shadow: none;
}

.submit-button i {
  font-size: 1.3rem;
}

.form-actions {
  text-align: center;
}

.form-note {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* Additional Information Cards */
.additional-info {
  margin-top: 4rem;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.info-card {
  background: var(--secondary-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.info-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #0f7aa8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.info-icon i {
  font-size: 2rem;
  color: white;
}

.info-card h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.info-card p {
  color: #666;
  margin-bottom: 0;
  line-height: 1.5;
}
/* Priv
acy Policy Page Styles */
.privacy-content {
  max-width: 1000px;
  margin: 0 auto;
}

.privacy-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.privacy-section:last-child {
  border-bottom: none;
}

.privacy-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.privacy-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 2rem 0 1rem 0;
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.privacy-list li {
  padding: 8px 0;
  padding-right: 1.5rem;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.6;
}

.privacy-list li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  right: 0;
  font-size: 1.2rem;
}

/* Usage Cards Grid */
.usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.usage-card {
  background: var(--secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.usage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.usage-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), #0f7aa8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}

.usage-icon i {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.usage-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.usage-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 0;
}

/* Protection Measures */
.protection-measures {
  margin: 2rem 0;
}

.measure-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--accent-color);
  border-radius: var(--border-radius);
  border-right: 4px solid var(--primary-color);
}

.measure-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.measure-icon i {
  font-size: 1.3rem;
  color: var(--secondary-color);
}

.measure-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.measure-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 0;
}

/* Sharing Conditions */
.sharing-conditions {
  margin: 2rem 0;
}

.condition-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: var(--border-radius);
}

.condition-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.condition-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.condition-content p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-color);
  margin-bottom: 0;
}

/* Rights Grid */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.right-card {
  background: var(--secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition);
}

.right-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.right-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), #0f7aa8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}

.right-icon i {
  font-size: 1.3rem;
  color: var(--secondary-color);
}

.right-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.right-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-color);
  margin-bottom: 0;
}

/* Contact Information Grid */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-card {
  background: var(--accent-color);
  border: 1px solid #e0e0e0;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition);
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}

.contact-icon i {
  font-size: 1.3rem;
  color: var(--secondary-color);
}

.contact-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-color);
  margin-bottom: 0;
  font-weight: 500;
}

/* Contact Section Styling */
.contact-section {
  background: var(--accent-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid #e0e0e0;
}

/* Text Utilities */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

/* Background Utilities */
.bg-secondary {
  background-color: var(--accent-color);
} /* S
imple Privacy Policy Styles */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-section h3 {
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.privacy-section ul {
  margin: 1rem 0;
  padding-right: 1.5rem;
}

.privacy-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Registration Info Styles */
.registration-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.registration-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.5rem;
}

.registration-icon {
  width: auto;
  height: 60px;
}
