@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");

:root {
  --button-color: #4a4239;
  --mainText-color: #8b7355;
  --secondary-color: #4a4239;
  --mainBg-color: rgba(255, 255, 255, 0.95);
  --subtitle-color: #6b5d4f;
  --highlight-color: #8795bf;
}

body {
  font-family: "Cairo", sans-serif;
  background: linear-gradient(135deg, #f8f6f3 0%, #f1ede7 50%, #ede7dd 100%);
  color: #4a4239;
}

/*
 Header Styles
*/
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(209, 196, 180, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 35px 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 0;
}

.logo {
  font-family: "Amiri", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #8b7355;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.logo:hover {
  color: #a08668;
}

.logo::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #c4a484, #8b7355);
  transition: width 0.3s ease;
}

.logo:hover::after {
  width: 100%;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #6b5d4f;
  font-weight: 400;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-link:hover {
  color: #8b7355;
  transform: translateY(-2px);
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #c4a484, #8b7355);
  transition: all 0.3s ease;
}

.nav-link:hover::before {
  width: 100%;
  right: 0;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #8b7355;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Hero Section Styles */
.hero-section {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--mainText-color);
  margin-bottom: 30px;
  line-height: 1.2;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--subtitle-color);
  margin-bottom: 40px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

.cta-button {
  display: inline-block;
  background: var(--button-color);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(139, 115, 85, 0.3);
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.9s forwards;
  position: relative;
  overflow: hidden;
}

.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeInRight 1s ease-out 0.5s forwards;
}

.conversation-bubbles {
  position: relative;
  width: 100%;
  height: 100%;
}

.bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 25px;
  padding: 20px 25px;
  box-shadow: 0 10px 30px rgba(139, 115, 85, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(209, 196, 180, 0.3);
  animation: float 3s ease-in-out infinite;
}

.bubble-1 {
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.bubble-2 {
  top: 40%;
  left: 15%;
  animation-delay: 1s;
}

.bubble-3 {
  bottom: 30%;
  right: 20%;
  animation-delay: 2s;
}

.bubble p {
  font-size: 0.9rem;
  color: #6b5d4f;
  margin: 0;
  font-style: italic;
}

.heart-accent {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  color: #d4a574;
  font-size: 2rem;
  opacity: 0.6;
  animation: pulse 2s ease-in-out infinite;
}

/* Background Elements */
.bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: radial-gradient(
      circle at 25% 25%,
      #8b7355 2px,
      transparent 2px
    ),
    radial-gradient(circle at 75% 75%, #c4a484 1px, transparent 1px);
  background-size: 100px 100px, 150px 150px;
  animation: patternMove 20s linear infinite;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 0.8;
    transform: translateX(-50%) scale(1.1);
  }
}

@keyframes patternMove {
  0% {
    background-position: 0 0, 0 0;
  }

  100% {
    background-position: 100px 100px, -150px -150px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-visual {
    height: 200px;
    order: -1;
  }

  .bubble {
    padding: 15px 20px;
  }

  .bubble p {
    font-size: 0.8rem;
  }

  .bubble-1 {
    top: 5%;
    right: 40%;
  }

  .bubble-2 {
    top: 50%;
    left: 40%;
  }

  .bubble-3 {
    bottom: 50%;
    right: 20%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .nav-container {
    height: 50px;
  }

  .logo {
    font-size: 1.5rem;
  }

  .cta-button {
    padding: 15px 30px;
    font-size: 1rem;
  }
}

/*
 About us
 */

.about-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.about-section .floating-hearts {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.about-section .heart {
  position: absolute;
  font-size: 20px;
  color: rgba(51, 24, 24, 0.3);
  animation: float 6s ease-in-out infinite;
}

.about-section .section-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

.about-section .section-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--mainText-color);
  margin-bottom: 20px;
}

.about-section .section-subtitle {
  font-size: 1.2rem;
  color: var(--subtitle-color);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.about-section .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-section .text-content {
  opacity: 0;
  animation: slideInRight 1s ease-out 0.3s forwards;
}

.about-section .main-text {
  font-size: 1.3rem;
  line-height: 2;
  color: var(--mainText-color);
  margin-bottom: 30px;
  text-align: justify;
}

.about-section .highlight-text {
  color: var(--highlight-color);
  font-weight: 600;
  position: relative;
}

.about-section .highlight-text::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #8795bf, transparent);
  opacity: 0.6;
}

.about-section .visual-content {
  position: relative;
  opacity: 0;
  animation: slideInLeft 1s ease-out 0.5s forwards;
}

.about-section .quote-bubble {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(139, 115, 85, 0.1);
  position: relative;
  margin-bottom: 20px;
  transform: translateX(20px);
  transition: all 0.3s ease;
}

.about-section .quote-bubble:hover {
  transform: translateX(0px) translateY(-5px);
  box-shadow: 0 15px 40px rgba(139, 115, 85, 0.15);
}

.about-section .quote-bubble::before {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 30px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid rgba(255, 255, 255, 0.9);
}

.about-section .quote-text {
  font-size: 1.1rem;
  color: #6b5b4d;
  font-style: italic;
  line-height: 1.6;
}

.about-section .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.about-section .value-card {
  background: rgba(255, 255, 255, 0.7);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(139, 115, 85, 0.08);
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  position: relative;
  overflow: hidden;
}

.about-section .value-card:nth-child(1) {
  animation-delay: 0.7s;
}

.about-section .value-card:nth-child(2) {
  animation-delay: 0.9s;
}

.about-section .about-section .value-card:nth-child(3) {
  animation-delay: 1.1s;
}

.about-section .value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(135, 149, 191, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.value-card:hover::before {
  left: 100%;
}

.about-section .value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(139, 115, 85, 0.15);
}

.about-section .value-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #8795bf, #a8b5d1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-section .value-title {
  font-size: 1.4rem;
  color: #8b7355;
  margin-bottom: 15px;
  font-weight: 600;
}

.about-section .value-description {
  color: #9d8b7a;
  line-height: 1.7;
  font-size: 1rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .about-section .content-grid {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }

  .about-section .section-title {
    font-size: 2.5rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .visual-content {
    order: -1;
  }
}

@media (max-width: 480px) {
  .about-section .section-title {
    font-size: 2rem;
  }

  .about-section .section-subtitle {
    font-size: 1rem;
    line-height: 1.2;
  }

  .about-section .main-text {
    font-size: 1rem;
  }
}

.about-section .decorative-line {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #8795bf, #a8b5d1);
  margin: 20px auto;
  border-radius: 2px;
  opacity: 0.6;
}

* articles */ #articles {
  min-height: 100vh;
  padding: 2rem 0;
}

#articles .article-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  position: relative;
}

#articles .article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

#articles .article-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

#articles .article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#articles .article-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

#articles .article-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

#articles .article-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  z-index: 3;
}

#articles .article-content {
  padding: 1.5rem;
}

#articles .article-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--mainText-color);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

#articles .article-description {
  color: var(--subtitle-color);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

#articles .article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
  font-size: 0.8rem;
  color: #a0aec0;
}

#articles .read-more-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

#articles .read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

#articles .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--mainText-color);
  margin-bottom: 1rem;
}

#articles .section-subtitle {
  text-align: center;
  color: var(--subtitle-color);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  #articles {
    padding: 1rem 0;
  }

  #articles .article-card {
    margin-bottom: 1.5rem;
  }

  #articles .section-title {
    font-size: 2rem;
  }

  #articles .article-image {
    height: 150px;
  }

  #articles .article-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* Different gradient backgrounds for variety */
#articles .article-image.tech {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

#articles .article-image.health {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

#articles .article-image.lifestyle {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

#articles .article-image.business {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

#articles .article-image.education {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

#articles .article-image.travel {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

/*
 Stories
 */

#stories {
  min-height: 100vh;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#stories .floating-hearts {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

#stories .heart {
  position: absolute;
  font-size: 24px;
  color: rgba(135, 149, 191, 0.2);
  animation: storyFloat 8s ease-in-out infinite;
}

#stories .section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

#stories .section-title {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  color: var(--mainText-color);
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(139, 115, 85, 0.1);
}

#stories .section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--subtitle-color);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

#stories .decorative-line {
  width: 120px;
  height: 3px;
  background: var(--highlight-color);
  margin: 1.5rem auto;
  border-radius: 2px;
  opacity: 0.7;
}

/* #stories - Cards Grid */
#stories .stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}

/* #stories - Individual Story Card */
#stories .story-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(139, 115, 85, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(50px);
  animation: slideUpStory 0.8s ease-out forwards;
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

#stories .story-card:nth-child(1) {
  animation-delay: 0.2s;
}

#stories .story-card:nth-child(2) {
  animation-delay: 0.4s;
}

#stories .story-card:nth-child(3) {
  animation-delay: 0.6s;
}

#stories .story-card:nth-child(4) {
  animation-delay: 0.8s;
}

#stories .story-card:nth-child(5) {
  animation-delay: 1s;
}

#stories .story-card:nth-child(6) {
  animation-delay: 1.2s;
}

#stories .story-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 50px rgba(135, 149, 191, 0.15);
}

#stories .story-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(135, 149, 191, 0.1),
    transparent
  );
  transition: left 0.8s ease;
  z-index: 1;
}

#stories .story-card:hover::before {
  left: 100%;
}

/* #stories - Story Image */
#stories .story-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #8795bf 0%, #a8b5d1 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#stories .story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#stories .story-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}

#stories .story-avatar {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

/* #stories - Story Content */
#stories .story-content {
  padding: 2rem;
  position: relative;
  z-index: 2;
}

#stories .story-category {
  display: inline-block;
  background: linear-gradient(135deg, #8795bf, #a8b5d1);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#stories .story-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--mainText-color);
  margin-bottom: 1rem;
  line-height: 1.4;
}

#stories .story-excerpt {
  color: var(--subtitle-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

#stories .story-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(139, 115, 85, 0.1);
}

#stories .story-date {
  color: #9d8b7a;
  font-size: 0.9rem;
  opacity: 0.8;
}

#stories .story-read-more {
  color: var(--highlight-color);
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

#stories .story-read-more:hover {
  background: rgba(135, 149, 191, 0.1);
  border-color: #8795bf;
  transform: translateX(-5px);
}

/* #stories - Emotional Impact Elements */
#stories .story-impact {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

/* #stories - CTA Section */
#stories .cta-section {
  text-align: center;
  margin-top: 4rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.5s forwards;
}

/* #stories - Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUpStory {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* #stories - Responsive Design */
@media (max-width: 768px) {
  #stories {
    padding: 60px 0;
  }

  #stories .stories-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  #stories .story-card {
    max-width: 100%;
  }

  #stories .story-content {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  #stories .story-content {
    padding: 1rem;
  }

  #stories .story-meta {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

/* #stories - Loading Animation */
#stories .story-card.loading {
  animation: pulse 2s ease-in-out infinite;
}

/*
 Single story
*/
#story {
  background: linear-gradient(135deg, #f7f6f4 0%, #ebe8e3 50%, #ddd8d1 100%);
  min-height: 100vh;
}

#story .story-header {
  background: linear-gradient(135deg, #a5a3c7 0%, #8b89b5 50%, #7a78a8 100%);
  border-radius: 0 0 30px 30px;
  position: relative;
  overflow: hidden;
}

#story .story-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

#story .story-hero-image {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f7f5 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}

#story .story-hero-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}

#story .story-category {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--highlight-color);
  position: relative;
  z-index: 10;
}

#story .story-title {
  font-family: "Amiri", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}

#story .story-meta {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  position: relative;
  z-index: 10;
}

#story .story-content-wrapper {
  background: #ffffff;
  border-radius: 25px 25px 0 0;
  margin-top: -20px;
  position: relative;
  z-index: 5;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

#story .story-content {
  line-height: 1.8;
  color: #4a4a4a;
  font-size: 1.1rem;
}

#story .story-content p {
  margin-bottom: 1.5rem;
}

#story .story-tags {
  background: linear-gradient(135deg, #f8f7f5 0%, #ede9e4 100%);
  border-radius: 20px;
  padding: 1.5rem;
}

#story .story-tag {
  background: rgba(139, 137, 181, 0.1);
  color: var(--highlight-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

#story .story-tag:hover {
  background: rgba(139, 137, 181, 0.2);
  transform: translateY(-2px);
}

#story .story-actions {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

#story .action-button {
  background: linear-gradient(135deg, #8b89b5 0%, #7a78a8 100%);
  color: white;
  border: none;
  border-radius: 15px;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(139, 137, 181, 0.3);
}

#story .action-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 137, 181, 0.4);
}

#story .secondary-button {
  background: rgba(139, 137, 181, 0.1);
  color: #7a78a8;
  border: 2px solid rgba(139, 137, 181, 0.2);
}

#story .secondary-button:hover {
  background: rgba(139, 137, 181, 0.2);
  border-color: rgba(139, 137, 181, 0.3);
}

#story .related-stories {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  margin-top: 2rem;
}

#story .related-story-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

#story .related-story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

#story .related-story-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #a5a3c7 0%, #8b89b5 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  #story .story-title {
    font-size: 2rem;
  }

  #story .story-hero-image {
    width: 100px;
    height: 100px;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.8;
  }

  50% {
    opacity: 1;
  }
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  position: relative;
  padding-right: 2.5rem;
}

.woocommerce-message__dismiss {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #000;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
}

/*
 Contact
*/
#contact {
    min-height: 100vh;
    padding: 4rem 0;
}

#contact .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--mainText-color);
    margin-bottom: 1rem;
}

#contact .section-subtitle {
    text-align: center;
    color: var(--subtitle-color);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

#contact .contact-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

#contact .contact-info {
    background: var(--button-color);
    color: white;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

#contact .contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

#contact .contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

#contact .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

#contact .contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    font-size: 1.2rem;
}

#contact .contact-item div h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

#contact .contact-item div p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.95rem;
}

#contact .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

#contact .social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

#contact .social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
}

#contact .contact-form {
    padding: 3rem;
}

#contact .form-group {
    margin-bottom: 1.5rem;
}

#contact .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--mainText-color);
    font-size: 0.95rem;
}

#contact .form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

#contact .form-control:focus {
    outline: none;
    border-color: var(--highlight-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

#contact .form-control::placeholder {
    color: var(--highlight-color);
}

#contact textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

#contact .submit-btn {
    background: var(--button-color);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

#contact .submit-btn:hover::before {
    left: 100%;
}

#contact .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    #contact .contact-container {
        margin: 0 1rem;
    }

    #contact .contact-info,
    #contact .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    #contact {
        padding: 2rem 0;
    }

    #contact .section-title {
        font-size: 2rem;
    }

    #contact .contact-container {
        margin: 0 0.5rem;
        border-radius: 20px;
    }

    #contact .contact-info,
    #contact .contact-form {
        padding: 1.5rem;
    }

    #contact .form-row {
        grid-template-columns: 1fr;
    }

    #contact .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    #contact .contact-info h3 {
        font-size: 1.5rem;
    }
}
