/* ===========================
   CSS Custom Properties
   =========================== */
:root {
  /* Colors */
  --color-navy: #15102e;
  --color-pink: #fbb9c2;
  --color-light-pink: #fdf0f0;
  --color-white: #ffffff;
  --color-text: #333333;
  --color-text-light: #666666;

  /* Typography */
  --font-primary: "Cairo", "Tajawal", sans-serif;
  --font-size-base: 14px;
  --font-size-h1: 48px;
  --font-size-h2: 36px;
  --font-size-h3: 24px;
  --line-height: 1.6;

  /* Spacing */
  --spacing-xs: 6px;
  --spacing-sm: 14px;
  --spacing-md: 24px;
  --spacing-lg: 48px;
  --spacing-xl: 80px;
}

/* Responsive Typography */
@media (max-width: 768px) {
  :root {
    --font-size-h1: 24px;
    --font-size-h2: 20px;
    --font-size-h3: 18px;
  }
}

/* ===========================
   CSS Reset and Base Styles
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  direction: rtl;
  text-align: right;
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background-color: var(--color-white);
}

/* ===========================
   Container
   =========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* ===========================
   Button Styles
   =========================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
}

.btn-primary {
  background-color: var(--color-navy);
  color: white;
}

.btn-primary:hover {
  box-shadow: 0 4px 12px rgba(251, 185, 194, 0.4);
}

/* ===========================
   Typography Utilities
   =========================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: var(--line-height);
  color: var(--color-navy);
}

h1 {
  font-size: var(--font-size-h1);
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

p {
  margin-bottom: var(--spacing-sm);
}

a {
  color: var(--color-navy);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-pink);
}

/* ===========================
   Section Utilities
   =========================== */
.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  color: var(--color-navy);
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-pink),
    transparent
  );
  border-radius: 2px;
}

.section-title::before {
  content: "✦";
  display: block;
  color: var(--color-pink);
  font-size: 24px;
  margin-bottom: 10px;
  opacity: 0.6;
}

/* ===========================
   Navigation Bar
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: var(--color-navy);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 65px;
  width: auto;
  display: block;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle .line {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--color-white);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-toggle.active .line-1 {
  transform: rotate(45deg) translateY(6.5px);
}

.nav-toggle.active .line-2 {
  transform: rotate(-45deg) translateY(-6.5px);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: var(--color-white);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: block;
}

.nav-menu a:hover {
  background-color: rgba(251, 185, 194, 0.2);
  color: var(--color-pink);
}

.nav-menu a.active {
  background-color: rgba(251, 185, 194, 0.2);
  color: var(--color-pink);
}

/* Add padding to body to account for fixed navbar */
body {
  padding-top: 70px;
}

/* ===========================
   Mobile Navigation
   =========================== */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    z-index: -1;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-navy);
    flex-direction: column;
    padding: 100px 30px 30px;
    gap: 0;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    margin-bottom: var(--spacing-sm);
  }

  .nav-menu a {
    padding: 12px 16px;
    font-size: 16px;
  }

  .nav-menu.active::before {
    opacity: 1;
    visibility: visible;
  }
}

/* ===========================
   Page Header (for internal pages)
   =========================== */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--color-light-pink) 0%, #fff 100%);
  text-align: center;
}

.page-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.page-subtitle {
  font-size: 20px;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .page-header {
    padding: 100px 0 40px;
  }

  .page-title {
    font-size: 24px;
  }

  .page-subtitle {
    font-size: 14px;
  }
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  min-height: 600px;
  height: 80vh;
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
  background: linear-gradient(135deg, var(--color-light-pink) 20%, #fff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl) 0;
  position: relative;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-image {
  z-index: -1;
  width: 300px;
  min-height: 160px;
  height: auto;
  margin-bottom: var(--spacing-md);
  display: block;
  margin: 20px auto;
  position: relative;
  padding: 30px;
  background: radial-gradient(
    circle,
    rgba(251, 185, 194, 0.4) 0%,
    rgba(255, 255, 255, 0.6) 30%,
    transparent 70%
  );
  filter: drop-shadow(0 15px 35px rgb(254, 160, 172));
}

.hero-title {
  font-size: var(--font-size-h1);
  font-weight: bold;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.148);
  color: var(--color-navy);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--color-text);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

.hero .btn-primary {
  font-size: 18px;
  padding: 12px 40px;
}

/* Responsive Hero Styles */
@media (max-width: 768px) {
  .hero {
    min-height: 500px;
    height: auto;
    padding: var(--spacing-lg) 0;
  }

  .hero-image {
    width: 220px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero .btn-primary {
    font-size: 15px;
    padding: 10px 32px;
  }
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply fade-in animation to hero content */
.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

/* ===========================
   Features Section
   =========================== */
.features {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-white);
}

.features-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) 0;
  font-size: 18px;
  line-height: 1.8;
}

.feature-item i {
  color: var(--color-pink);
  font-size: 20px;
  margin-top: 4px;
  flex-shrink: 0;
}

.feature-item span {
  color: var(--color-text);
}

/* Responsive Features Styles */
@media (max-width: 768px) {
  .features {
    padding: var(--spacing-lg) 0;
  }

  .feature-item {
    font-size: 14px;
  }

  .feature-item i {
    font-size: 16px;
  }
}

/* ===========================
   Packages Section
   =========================== */
.packages {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-white);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

/* Reorder cards on desktop: featured card in middle */
@media (min-width: 768px) {
  .package-card-featured {
    order: 2;
  }

  .package-card:nth-child(2) {
    order: 1;
  }

  .package-card:nth-child(3) {
    order: 3;
  }
}

.package-card {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: var(--spacing-lg);
  box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset,
    rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* Featured Package Card (Navy Background) */
.package-card-featured {
  background-color: var(--color-navy);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2),
    0 4px 20px rgba(21, 16, 46, 0.3);
}

.package-card-featured:hover {
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2),
    0 8px 30px rgba(21, 16, 46, 0.4);
}

.package-card-featured .package-name {
  color: var(--color-white);
}

.package-card-featured .price-amount {
  color: var(--color-pink);
}

.package-card-featured .price-currency,
.package-card-featured .price-period {
  color: rgba(255, 255, 255, 0.8);
}

.package-card-featured .package-discount p {
  color: var(--color-pink);
}

.package-card-featured .package-features li {
  color: rgba(255, 255, 255, 0.9);
}

.package-card-featured .package-features i {
  color: var(--color-pink);
}

.package-name {
  font-size: var(--font-size-h3);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.package-price {
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

.price-amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
}

.price-currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
  margin-right: var(--spacing-xs);
}

.price-period {
  font-size: 16px;
  color: var(--color-text-light);
}

.package-discount {
  text-align: center;
  margin-bottom: var(--spacing-md);
  min-height: 24px;
}

.package-discount p {
  font-size: 14px;
  color: var(--color-pink);
  font-weight: 600;
  margin: 0;
}

.package-features {
  list-style: none;
  margin: var(--spacing-md) 0;
  padding: 0;
  flex-grow: 1;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
}

.package-features li:last-child {
  margin-bottom: 0;
}

.package-features i {
  color: var(--color-pink);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* SAR Currency Icon Styling */
.price-currency-icon {
  height: 24px;
  width: auto;
  display: inline-block;
  vertical-align: baseline;
  transform: translateY(-2px);
}

.discount-currency-icon {
  height: 14px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

/* Adjust icon brightness for featured card */
.package-card-featured .price-currency-icon,
.package-card-featured .discount-currency-icon {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.btn-subscribe {
  width: 100%;
  margin-top: var(--spacing-md);
  background-color: var(--color-navy);
  color: var(--color-white);
  font-weight: 700;
  font-size: 18px;
  padding: 8px 32px;
}

.btn-subscribe:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21, 16, 46, 0.4);
  background-color: #1f1840;
}

/* Featured card button styling */
.package-card-featured .btn-subscribe {
  background-color: var(--color-light-pink);
  color: var(--color-navy);
}

.package-card-featured .btn-subscribe:hover {
  background-color: #f9a5b0;
  box-shadow: 0 6px 20px rgba(251, 185, 194, 0.5);
}

/* Responsive Packages Styles */
@media (max-width: 768px) {
  .packages {
    padding: var(--spacing-lg) 0;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .package-card {
    padding: var(--spacing-md);
  }

  .price-amount {
    font-size: 40px;
  }

  .price-currency {
    font-size: 18px;
  }

  .package-features li {
    font-size: 14px;
  }

  .btn-subscribe {
    font-size: 16px;
    padding: 6px 28px;
  }
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonials {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, var(--color-light-pink) 20%, #fff 100%);
}

.testimonials-swiper {
  padding: var(--spacing-md) 0 var(--spacing-lg);
  position: relative;
}

.testimonial-card {
  background-color: var(--color-white);
  padding: var(--spacing-lg);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  position: relative;
}

.testimonial-quote {
  font-size: 32px;
  color: var(--color-pink);
  opacity: 0.3;
  position: absolute;
  top: 20px;
  right: 20px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
  margin-top: var(--spacing-md);
  flex-grow: 1;
  text-align: center;
}

.testimonial-author {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
  text-align: right;
  margin: 0;
}

/* Swiper Navigation Buttons */
.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
  color: var(--color-navy);
  width: 44px;
  height: 44px;
  background-color: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonials-swiper .swiper-button-prev:hover,
.testimonials-swiper .swiper-button-next:hover {
  background-color: var(--color-pink);
  color: var(--color-white);
  transform: scale(1.1);
}

.testimonials-swiper .swiper-button-prev::after,
.testimonials-swiper .swiper-button-next::after {
  font-size: 20px;
  font-weight: 700;
}

/* Swiper Pagination */
.testimonials-swiper .swiper-pagination-bullet {
  background-color: var(--color-pink);
  opacity: 0.5;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 5px;
}

/* Responsive Testimonials Styles */
@media (max-width: 768px) {
  .testimonials {
    padding: var(--spacing-lg) 15px;
  }

  .testimonial-card {
    padding: var(--spacing-md);
    min-height: 180px;
  }

  .testimonial-quote {
    font-size: 24px;
    top: 15px;
    right: 15px;
  }

  .testimonial-text {
    font-size: 13px;
  }

  .testimonial-author {
    font-size: 14px;
  }

  .testimonials-swiper .swiper-button-prev,
  .testimonials-swiper .swiper-button-next {
    width: 28px;
    height: 28px;
  }

  .testimonials-swiper .swiper-button-prev::after,
  .testimonials-swiper .swiper-button-next::after {
    font-size: 12px;
  }
}

/* ===========================
   Footer
   =========================== */
.footer {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 20px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.footer .social-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer .social-links a {
  color: var(--color-white);
  font-size: 24px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer .social-links a:hover {
  color: var(--color-pink);
  transform: translateY(-3px);
}

.footer .social-links .social-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.footer .social-links a:hover .social-icon {
  filter: brightness(0) saturate(100%) invert(79%) sepia(18%) saturate(1234%) hue-rotate(299deg) brightness(101%) contrast(96%);
  transform: translateY(-3px);
}

/* Responsive Footer Styles */
@media (max-width: 768px) {
  .footer {
    padding: 16px 0;
  }

  .footer p {
    font-size: 13px;
  }

  .footer .social-links {
    gap: 15px;
  }

  .footer .social-links a {
    font-size: 20px;
  }

  .footer .social-links .social-icon {
    width: 20px;
    height: 20px;
  }
}

/* ===========================
   Subscription Modal
   =========================== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(21, 16, 46, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background-color: var(--color-white);
  border-radius: 16px;
  padding: var(--spacing-lg);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  left: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--color-text-light);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background-color: var(--color-light-pink);
  color: var(--color-navy);
}

.modal-title {
  text-align: center;
  color: var(--color-navy);
  font-size: var(--font-size-h2);
  margin-bottom: var(--spacing-lg);
  padding-top: 10px;
}

.subscription-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: var(--color-navy);
  font-size: 16px;
}

.form-group input,
.form-group select {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 16px;
  color: var(--color-text);
  transition: all 0.3s ease;
  background-color: var(--color-white);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-pink);
  box-shadow: 0 0 0 3px rgba(251, 185, 194, 0.2);
}

.form-group input::placeholder {
  color: var(--color-text-light);
}

.form-group select {
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  margin-top: var(--spacing-sm);
  padding: 16px;
  font-size: 18px;
  font-weight: 700;
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
  .modal-content {
    padding: var(--spacing-md);
    width: 95%;
  }

  .modal-title {
    font-size: var(--font-size-h3);
    margin-bottom: var(--spacing-md);
  }

  .form-group label {
    font-size: 14px;
  }

  .form-group input,
  .form-group select {
    padding: 10px 14px;
    font-size: 14px;
  }

  .btn-submit {
    font-size: 16px;
    padding: 14px;
  }
}

/* ===========================
   FAQ Section
   =========================== */
.faq-section {
  padding: var(--spacing-xl) 0;
  background-color: #fff;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--spacing-sm);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  background-color: white;
  color: var(--color-navy);
  border: none;
  padding: 20px 24px;
  text-align: right;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  font-family: var(--font-primary);
}

.faq-question span {
  flex: 1;
  text-align: right;
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  background-color: #fdf0f08a;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 24px;
}

.faq-answer p {
  margin: 0;
  color: var(--color-text);
  line-height: 1.8;
  font-size: 16px;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 16px 20px;
    font-size: 14px;
  }

  .faq-icon {
    font-size: 16px;
    margin-left: 12px;
  }

  .faq-item.active .faq-answer {
    padding: 20px;
  }

  .faq-answer p {
    font-size: 13px;
  }
}

/* ===========================
   About Page
   =========================== */
.about-content {
  padding: var(--spacing-xl) 0;
  background-color: #fff;
}

.about-section {
  margin-bottom: var(--spacing-xl);
  text-align: right;
}

.about-section:last-child {
  margin-bottom: 0;
}

.about-heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--spacing-md);
  position: relative;
  display: inline-block;
}

.about-heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 60px;
  height: 4px;
  background-color: var(--color-pink);
  border-radius: 2px;
}

.about-text {
  font-size: 18px;
  line-height: 2;
  color: var(--color-text);
  max-width: 900px;
  margin: 0;
}

/* About CTA Section */
.about-cta {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, var(--color-light-pink) 0%, #fff 100%);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--spacing-sm);
}

.cta-text {
  font-size: 20px;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-lg);
}

.cta-content .btn {
  font-size: 18px;
  padding: 12px 48px;
}

@media (max-width: 768px) {
  .about-section {
    margin-bottom: var(--spacing-lg);
  }

  .about-heading {
    font-size: 24px;
  }

  .about-text {
    font-size: 16px;
    line-height: 1.8;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-text {
    font-size: 16px;
  }

  .cta-content .btn {
    font-size: 16px;
    padding: 8px 32px;
  }
}

/* ===========================
   Empty State (Blog Coming Soon)
   =========================== */
.empty-state {
  padding: var(--spacing-xl) 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.empty-state-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.empty-state-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--spacing-lg);
  background: linear-gradient(135deg, var(--color-light-pink) 0%, #fff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(251, 185, 194, 0.3);
}

.empty-state-icon i {
  font-size: 48px;
  color: var(--color-navy);
}

.empty-state-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--spacing-sm);
}

.empty-state-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-lg);
}

.empty-state-actions {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}

.btn-secondary:hover {
  background-color: var(--color-navy);
  color: var(--color-white);
}

@media (max-width: 768px) {
  .empty-state {
    min-height: 50vh;
  }

  .empty-state-icon {
    width: 100px;
    height: 100px;
  }

  .empty-state-icon i {
    font-size: 40px;
  }

  .empty-state-title {
    font-size: 28px;
  }

  .empty-state-text {
    font-size: 16px;
  }

  .empty-state-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .empty-state-actions .btn {
    width: 100%;
  }
}

/* ===========================
   Resources Page Styles
   =========================== */

/* Resources Buttons in Header */
.resources-buttons-wrapper {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.resources-buttons-wrapper .btn {
  padding: 10px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.resources-buttons-wrapper .btn:last-child {
  background: none;
  color: var(--color-navy);
  border: 1px solid var(--color-navy);
}

.resources-buttons-wrapper .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 107, 0.3);
}

/* Download Form Section */
.download-form-section {
  padding: 60px 0;
  background-color: var(--color-white);
}

.download-form-wrapper {
  max-width: 500px;
  margin: 0 auto;
}

.download-form .form-group {
  margin-bottom: 20px;
}

.download-form label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.download-form input {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  border: 1px solid #b5b5b5;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: "Cairo", sans-serif;
}

.download-form input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.download-form .btn-submit {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  padding: 10px 0;
  font-weight: 600;
  margin-top: 8px;
}

/* Responsive Resources Page */
@media (max-width: 768px) {
  .resources-buttons-wrapper {
    flex-direction: column;
    gap: 12px;
  }

  .resources-buttons-wrapper .btn {
    width: 55%;
    margin: 0 auto;
    font-size: 12px;
    padding: 8px 0;
  }

  .download-form-section {
    padding: 40px 0;
  }
}

/* Blog Posts Section */
.blog-posts {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.blog-card-content {
  padding: 30px;
}

.blog-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #15102e;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-card-date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-card-date i {
  color: #fbb9c2;
}

.blog-card-excerpt {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-card .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-card .btn i {
  transition: transform 0.3s ease;
}

.blog-card .btn:hover i {
  transform: translateX(-5px);
}

/* Responsive Blog Grid */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .blog-card-content {
    padding: 20px;
  }
  
  .blog-card-title {
    font-size: 1.3rem;
  }
}

/* Blog Post Page */
.blog-post {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.blog-post-nav {
  margin-bottom: 30px;
}

.blog-post-nav-bottom {
  margin-top: 40px;
  margin-bottom: 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #15102e;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #fbb9c2;
}

.back-link i {
  transition: transform 0.3s ease;
}

.back-link:hover i {
  transform: translateX(5px);
}

.blog-post-content {
  background: white;
  border-radius: 12px;
  padding: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-post-header {
  border-bottom: 2px solid #f8f9fa;
  padding-bottom: 30px;
  margin-bottom: 40px;
}

.blog-post-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #15102e;
  line-height: 1.3;
  margin-bottom: 20px;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-post-date {
  font-size: 1rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-post-date i {
  color: #fbb9c2;
}

.blog-post-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.blog-post-body p {
  margin-bottom: 20px;
}

/* Responsive Blog Post */
@media (max-width: 768px) {
  .blog-post-content {
    padding: 30px 20px;
  }
  
  .blog-post-title {
    font-size: 1.8rem;
  }
  
  .blog-post-body {
    font-size: 1rem;
  }
}
