/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Heebo', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    direction: rtl;
    text-align: right;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Header and Navigation */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    color: #692465;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #692465;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
.site-main {
    margin-top: 80px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(105, 36, 101, 0.7);
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 800px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 2.2rem;
    margin: 2rem 0;
    color: #FFFEF9;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-info {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background-color: #692465;
    color: white;
}

.btn-primary:hover {
    background-color: #5a1e56;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(105, 36, 101, 0.3);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #20b954;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-cta {
    background-color: #FFFEF9;
    color: #692465;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    margin-top: 2rem;
}

.btn-cta:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-whatsapp-large {
    background-color: white;
    color: #25D366;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-whatsapp-large:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #692465;
    margin-bottom: 3rem;
    font-weight: 600;
}

/* Key Points Section */
.key-points {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.point-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.point-card h3 {
    color: #692465;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.point-card p {
    color: #666;
    line-height: 1.6;
}

/* Training Details Section */
.training-details {
    padding: 80px 0;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.training-item {
    padding: 2rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.training-item:hover {
    background-color: #f9f9f9;
}

.training-item h3 {
    color: #692465;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.training-item p {
    color: #555;
    line-height: 1.7;
}

/* Pricing Section */
.pricing {
    position: relative;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}

.pricing-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.pricing-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pricing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(105, 36, 101, 0.85);
    z-index: -1;
}

.pricing-content {
    position: relative;
    z-index: 2;
    color: #FFFEF9;
}

.pricing-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #FFFEF9;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.pricing-subtitle {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    opacity: 0.95;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.pricing-note {
    font-size: 1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.insurance-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem auto 3rem;
    max-width: 600px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.insurance-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.insurance-link {
    display: block;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.insurance-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 1);
}

.insurance-logo {
    height: 50px;
    width: auto;
    filter: none;
    transition: transform 0.3s ease;
}

/* About Dorit Section */
.about-dorit {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-image {
    text-align: center;
}

.dorit-image {
    border-radius: 50%;
    max-width: 100%;
    box-shadow: 0 10px 30px rgba(105, 36, 101, 0.2);
    transition: transform 0.3s ease;
}

.dorit-image:hover {
    transform: scale(1.05);
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
}

.about-text strong {
    color: #692465;
}

.about-cta {
    color: #692465;
    font-weight: 600;
    font-size: 1.3rem;
}

/* Experience Section */
.experience-section {
    background-color: #f9f9f9;
    padding: 3rem;
    border-radius: 12px;
}

.experience-title {
    text-align: center;
    color: #692465;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.experience-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border-right: 4px solid #692465;
}

.experience-item h4 {
    color: #692465;
    margin-bottom: 1rem;
}

.experience-item p {
    line-height: 1.7;
    color: #555;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    border-right: 4px solid #692465;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: #692465;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.faq-item p {
    line-height: 1.8;
    color: #555;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-item {
    text-align: center;
    padding: 3rem 2rem;
    background: #f9f9f9;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: #692465;
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.contact-item h3 {
    color: #692465;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-item a {
    color: #333;
    font-size: 1.3rem;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: #692465;
}

.contact-item p {
    color: #666;
    margin-top: 1rem;
}

/* WhatsApp CTA */
.whatsapp-cta {
    background-color: #25D366;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.whatsapp-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.whatsapp-cta p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: white;
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 12px;
}

.contact-form h3 {
    text-align: center;
    color: #692465;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #692465;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Heebo', sans-serif;
    direction: rtl;
    text-align: right;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #692465;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Social Media */
.social-media {
    background-color: #692465;
    color: #FFFEF9;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.social-media h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #FFFEF9;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-links a {
    width: 60px;
    height: 60px;
    background: #FFFEF9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}

.social-links img {
    width: 30px;
    height: 30px;
}

.social-media p {
    font-size: 1.1rem;
    color: #FFFEF9;
}

/* Footer */
.site-footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
}

.footer-section p {
    color: #ecf0f1;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-section a:hover {
    color: #5dade2;
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-social a:hover {
    color: #3498db;
    text-decoration: underline;
}

/* Footer SEO Section */
.footer-seo {
    margin-top: 2rem;
    padding: 1rem 0;
    border-top: 1px solid #34495e;
}

.seo-keywords {
    text-align: center;
}

.seo-keywords p {
    color: #7f8c8d;
    font-size: 0.75rem;
    line-height: 1.4;
    margin: 0;
    opacity: 0.7;
    font-weight: 300;
    word-wrap: break-word;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #ecf0f1;
    font-weight: 500;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .points-grid,
    .training-grid,
    .experience-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pricing-title {
        font-size: 2.2rem;
    }

    .pricing-subtitle {
        font-size: 1.4rem;
    }

    .insurance-section {
        padding: 1.5rem;
        margin: 1.5rem auto 2rem;
    }

    .insurance-logos {
        gap: 1rem;
    }

    .insurance-link {
        padding: 0.8rem;
    }

    .insurance-logo {
        height: 40px;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .key-points, .training-details, .about-dorit, .faq, .contact {
        padding: 60px 0;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .pricing-title {
        font-size: 2rem;
    }

    .point-card,
    .contact-form,
    .experience-item,
    .faq-item {
        padding: 1.5rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-links a {
        width: 50px;
        height: 50px;
    }
}

/* RTL Specific Adjustments */
[dir="rtl"] .nav-item {
    margin-left: 0;
    margin-right: 2rem;
}

[dir="rtl"] .nav-menu {
    right: -100%;
}

[dir="rtl"] .nav-menu.active {
    right: 0;
}

[dir="rtl"] .social-links {
    justify-content: center;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Welcome Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    position: relative;
    max-width: 900px;
    max-height: 90vh;
    margin: 20px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.7) translateY(50px);
    transition: all 0.3s ease;
}

.popup-overlay.show .popup-container {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #692465;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.popup-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    color: #5a1e56;
}

.popup-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    min-height: 500px;
}

.popup-image {
    background: linear-gradient(135deg, #692465 0%, #5a1e56 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.popup-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.popup-text {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    direction: rtl;
    text-align: right;
}

.popup-title {
    font-size: 2.2rem;
    color: #692465;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.popup-subtitle {
    font-size: 1.5rem;
    color: #5a1e56;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.popup-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.popup-benefits {
    margin: 1.5rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #555;
}

.benefit-icon {
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
}

.popup-location {
    background: rgba(105, 36, 101, 0.05);
    padding: 1rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    text-align: center;
    color: #692465;
    font-size: 1rem;
}

.location-icon {
    font-size: 1.2rem;
    margin-left: 0.5rem;
}

.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1.5rem 0 1rem;
}

.popup-btn {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
}

.popup-btn-primary {
    background: #692465;
    color: white;
}

.popup-btn-primary:hover {
    background: #5a1e56;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(105, 36, 101, 0.3);
}

.popup-btn-secondary {
    background: transparent;
    color: #666;
    border: 2px solid #ddd;
}

.popup-btn-secondary:hover {
    background: #f8f9fa;
    border-color: #692465;
    color: #692465;
}

.popup-note {
    text-align: center;
    font-size: 0.95rem;
    color: #28a745;
    font-weight: 600;
    margin: 0;
}

/* Mobile Responsive Popup */
@media screen and (max-width: 768px) {
    .popup-container {
        max-width: 95%;
        margin: 10px;
        max-height: 95vh;
    }

    .popup-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .popup-image {
        order: 1;
        padding: 1rem;
        min-height: 300px;
    }

    .popup-text {
        order: 2;
        padding: 1.5rem 1.5rem;
    }

    .popup-title {
        font-size: 1.8rem;
    }

    .popup-subtitle {
        font-size: 1.3rem;
    }

    .popup-description {
        font-size: 1rem;
    }

    .popup-buttons {
        flex-direction: column;
    }

    .popup-btn {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .popup-text {
        padding: 1.5rem 1rem;
    }

    .popup-title {
        font-size: 1.6rem;
    }

    .popup-subtitle {
        font-size: 1.2rem;
    }

    .popup-close {
        width: 35px;
        height: 35px;
        font-size: 20px;
        top: 10px;
        left: 10px;
    }

    .benefit-item {
        font-size: 0.95rem;
    }

    .popup-location {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
}

/* Animation for popup appearance */
@keyframes popupSlideIn {
    from {
        transform: scale(0.7) translateY(50px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.popup-overlay.animate-in .popup-container {
    animation: popupSlideIn 0.4s ease-out;
}

/* Hide popup content from screen readers when not visible */
.popup-overlay:not(.show) {
    display: none;
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .nav-toggle,
    .btn,
    .popup-overlay {
        display: none !important;
    }

    .hero-section {
        background: none;
        color: black;
        min-height: auto;
    }

    .hero-content {
        position: static;
    }
}