/* ============================================
   SECTION STYLES (Hero, Services, Content, CTA, Footer)
   ============================================ */

/* Hero Section */
.hero-section {
    background: var(--gradient-overlay-dark);
    color: var(--text-white);
    padding: 100px 0;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    margin: 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px var(--shadow-darkest);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
    font-weight: bolder
}

.mobile-bg {
    display: none;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.video-bg,
.mobile-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-dark);
    z-index: 0;
    pointer-events: none;
}

/* CTA Buttons Container */
.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Base Hero Phone Button */
.hero-phone {
    border: none;
    padding: 15px 40px;
    font-size: 2rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 30px var(--shadow-dark);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1s ease-out both;
    margin-bottom: 15px;
}

    /* Primary Phone Button */
    .hero-phone.primary {
        background: var(--gradient-primary);
        color: var(--text-white);
        animation-delay: 0.4s;
    }

    /* Secondary Phone Button */
    .hero-phone.secondary {
        background: var(--gradient-primary);
        border: 2px solid var(--border-blue);
        color: var(--text-white);
        animation-delay: 0.6s;
    }

    .hero-phone:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px var(--shadow-darker);
        text-decoration: none;
        color: var(--text-white);
    }

    .hero-phone.primary:hover {
        color: var(--text-white);
    }

    .hero-phone.secondary:hover {
        background: var(--gradient-blue);
        border-color: var(--border-blue-dark);
        color: var(--text-white);
    }

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--bg-sections);
    backdrop-filter: blur(10px);
}

.services-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 60px;
}

.service-card {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid var(--border-transparent);
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px var(--shadow-dark);
        border-color: var(--border-blue);
    }

.service-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Content Sections */
.content-section {
    background: var(--bg-sections);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    margin: 40px auto;
    max-width: 900px;
    position: relative;
    overflow: hidden;
    direction: rtl;
    text-align: right;
}

    .content-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 5px;
        height: 100%;
        background: var(--gradient-primary);
    }

    .content-section p {
        color: var(--text-primary);
        font-size: 1.2rem;
        line-height: 1.8;
        text-align: justify;
        margin-bottom: 0;
    }

    .content-section.highlight {
        background: var(--gradient-primary-reverse);
        color: var(--text-white);
    }

        .content-section.highlight p {
            color: var(--text-white);
        }

        .content-section.highlight::before {
            background: var(--overlay-white-light);
        }

/* Steps Section */
.steps-section {
    background: var(--bg-sections);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.steps-title {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.steps-intro {
    color: var(--text-muted);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    font-style: italic;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 10px var(--color-primary-glow);
}

.step-content {
    flex: 1;
}

.step-title {
    color: var(--color-primary);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: justify;
    margin: 0;
}

/* RTL Support for Steps */
[dir="rtl"] .step-item {
    flex-direction: row-reverse;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 60px 0;
    background: var(--gradient-bg-main);
    color: var(--text-secondary);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* CTA Buttons Container */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Base CTA Phone Button */
.cta-phone {
    border: none;
    padding: 15px 40px;
    font-size: 2.0rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 30px var(--shadow-dark);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    background: var(--gradient-primary);
}

    .cta-phone:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px var(--shadow-darker);
        color: var(--text-white);
        text-decoration: none;
    }

/* Footer */
.modern-footer {
    background: var(--bg-footer);
    color: var(--text-white);
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-link {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.1rem;
}

    .footer-link:hover {
        color: var(--color-primary);
        text-decoration: none;
    }

/* Article Section */
.article-section {
    padding: 60px 0;
    background: var(--bg-sections);
    backdrop-filter: blur(10px);
    margin: 20px 0;
}

.article-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px var(--shadow-light);
}

.article-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.article-item {
    background: var(--bg-secondary);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    border-right: 5px solid var(--color-accent-blue);
}

    .article-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px var(--shadow-medium);
    }

    .article-item h3 {
        color: var(--text-primary);
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

        .article-item h3 .number {
            background: var(--gradient-blue);
            color: var(--text-white);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-left: 15px;
            font-size: 1.2rem;
        }

    .article-item p {
        color: var(--text-secondary);
        font-size: 1.1rem;
        text-align: justify;
    }

/* Breadcrumb */
.breadcrumb {
    background: var(--overlay-white-light);
    padding: 15px 0;
    margin-bottom: 30px;
}

    .breadcrumb a {
        color: var(--color-accent-blue);
        text-decoration: none;
        font-weight: 500;
    }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

/* Doreen Sasson Opera Singer Hero Styles */
.hero {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
  background-color: var(--bg-pure-black);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--text-white);
  text-align: center;
  padding: clamp(2rem,6vw,6rem) 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 80vh;
}

.hero__content h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 1rem;
  font-weight: bold;
}

.hero__content p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  opacity: 0.9;
}

/* Custom unmute button */
.hero__unmute-button {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 4;
}

.unmute-btn {
  background: var(--overlay-gold);
  border: 2px solid var(--color-accent-gold);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--shadow-black-medium);
}

.unmute-btn:hover {
  background: var(--color-accent-gold);
  transform: scale(1.1);
  box-shadow: 0 6px 20px var(--shadow-gold-light);
}

/* Loading indicator */
.loading-indicator {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--overlay-black);
  color: var(--text-white);
}

/* ============================================
   END SECTION STYLES
   ============================================ */
