/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    direction: rtl;
    text-align: right;
}

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

/* ===== HEADER & NAVIGATION ===== */
header {
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h2 {
    color: #2c3e50;
    font-size: 2em;
    font-weight: 700;
    margin: 0;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 12px;
    border-radius: 5px;
}

.nav-mobile {
    display: none;
}

nav a:hover {
    color: #f39c12;
    background: rgba(243, 156, 18, 0.1);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8em;
    cursor: pointer;
    color: #333;
    padding: 8px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(243, 156, 18, 0.1);
    color: #f39c12;
}

/* ===== SOCIAL BUTTONS ===== */
.register-btn-mobile {
    background: linear-gradient(135deg, #f39c12, #e67e22) !important;
    color: white !important;
    padding: 6px 12px !important;
    border-radius: 15px !important;
    font-size: 0.8em !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
}

.register-btn-mobile:hover {
    background: linear-gradient(135deg, #e67e22, #d35400) !important;
    transform: translateY(-2px) !important;
}

.nav-mobile .whatsapp-btn,
.nav-mobile .instagram-btn {
    background: #25D366 !important;
    color: white !important;
    padding: 0 !important;
    border-radius: 50% !important;
    font-size: 1.1em !important;
    transition: all 0.3s ease !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    border: none !important;
    box-sizing: border-box !important;
}

.nav-mobile .instagram-btn {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%) !important;
}

.nav-mobile .whatsapp-btn:hover {
    background: #128C7E !important;
    transform: translateY(-2px) !important;
}

.nav-mobile .instagram-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(188, 24, 136, 0.3) !important;
}

/* ===== HERO SECTION ===== */
#hero {
    background: white;
    min-height: auto;
    padding: 80px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#hero::before {
    display: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    width: 100%;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-register-btn {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.hero-register-btn:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
    color: white;
}

#hero h1 {
    font-size: 4.5em;
    margin-bottom: 25px;
    font-weight: 700;
    color: #2c3e50;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 2em;
    margin-bottom: 20px;
    color: #555;
    font-style: italic;
    font-weight: 300;
    text-shadow: none;
}

.hero-arabic {
    font-size: 1.8em;
    margin-bottom: 30px;
    color: #555;
    font-weight: 600;
    text-shadow: none;
}

.hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #666;
    line-height: 1.6;
    text-shadow: none;
}

.cta-button {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 15px 35px;
    font-size: 1.1em;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

/* ===== SECTIONS ===== */
section {
    padding: 100px 0;
}

section h2 {
    text-align: center;
    font-size: 3em;
    margin-bottom: 60px;
    color: #2c3e50;
    position: relative;
    font-weight: 700;
}

section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    margin: 25px auto;
    border-radius: 2px;
}

/* ===== ABOUT SECTION ===== */
#about {
    background: #f8f9fa;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.about-image {
    width: 100%;
    max-width: 1024px;
    text-align: center;
}

.section-image {
    width: 1024px;
    height: 1536px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.section-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.about-content p {
    font-size: 1.3em;
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
    color: #555;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== WORKSHOPS SECTION ===== */
#workshops {
    background: #ffffff;
}

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.workshop-item {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-right: 6px solid #f39c12;
    position: relative;
    overflow: hidden;
}

.workshop-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.workshop-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.workshop-item h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.4em;
    font-weight: 600;
}

.duration {
    color: #f39c12;
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.workshop-item p {
    text-align: right;
    margin-bottom: 10px;
    line-height: 1.7;
    color: #666;
}

.workshop-details {
    margin-top: 80px;
}

.detail-section {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    border-right: 6px solid #e67e22;
}

.detail-section h3 {
    color: #f39c12;
    margin-bottom: 25px;
    font-size: 1.6em;
    font-weight: 600;
}

.detail-section ul {
    list-style: none;
    padding: 0;
}

.detail-section ul li {
    background: #f8f9fa;
    margin: 15px 0;
    padding: 18px 25px;
    border-radius: 12px;
    border-right: 4px solid #f39c12;
    font-size: 1.1em;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.detail-section ul li:hover {
    background: #e9ecef;
    transform: translateX(-5px);
}

/* ===== SADHU BOARDS SECTION ===== */
#sadhu-boards {
    background: #f8f9fa;
}

.sadhu-content .intro {
    font-size: 1.3em;
    line-height: 2;
    margin-bottom: 50px;
    text-align: center;
    color: #555;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.benefit-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #f39c12;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.benefit-item h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3em;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    font-size: 1.1em;
}

.sadhu-workshop {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    border-right: 6px solid #e67e22;
}

.sadhu-workshop h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 600;
}

.sadhu-workshop .duration {
    color: #f39c12;
    font-weight: 600;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.sadhu-workshop .goal,
.sadhu-workshop .includes {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.important-notes {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-right: 6px solid #27ae60;
}

.important-notes h3 {
    color: #27ae60;
    margin-bottom: 25px;
    font-size: 1.6em;
    font-weight: 600;
}

.important-notes ul {
    list-style: none;
    padding: 0;
}

.important-notes ul li {
    background: #f8f9fa;
    margin: 15px 0;
    padding: 18px 25px;
    border-radius: 12px;
    border-right: 4px solid #27ae60;
    font-size: 1.1em;
    line-height: 1.6;
}

/* ===== SCHEDULE SECTION ===== */
#schedule {
    background: #ffffff;
}

.schedule-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.schedule-item {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-top: 6px solid #f39c12;
    transition: all 0.3s ease;
}

.schedule-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.schedule-item.special {
    border-top-color: #e67e22;
}

.schedule-item h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.5em;
    font-weight: 600;
}

.schedule-item p {
    color: #555;
    font-size: 1.2em;
    font-weight: 500;
}

/* ===== REGISTRATION SECTION ===== */
#register {
    background: #f8f9fa;
}

.register-intro {
    text-align: center;
    font-size: 1.4em;
    margin-bottom: 50px;
    color: #555;
    font-weight: 500;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 30px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
    font-size: 1.2em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1.1em;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #f8f9fa;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 15px center;
    background-size: 20px;
    padding-left: 50px;
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #f39c12;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.form-group select:hover {
    border-color: #f39c12;
    background: #fff;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 1.3em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.registration-terms {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    margin-top: 50px;
    border-right: 6px solid #e74c3c;
}

.registration-terms h3 {
    color: #e74c3c;
    margin-bottom: 25px;
    font-size: 1.6em;
    font-weight: 600;
}

.registration-terms ul {
    list-style: none;
    padding: 0;
}

.registration-terms ul li {
    background: #f8f9fa;
    margin: 15px 0;
    padding: 18px 25px;
    border-radius: 12px;
    border-right: 4px solid #e74c3c;
    font-size: 1.1em;
    line-height: 1.6;
}

/* ===== SUCCESS MESSAGE ===== */
.success-message {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 10px 40px rgba(39, 174, 96, 0.3);
}

.success-icon {
    font-size: 4em;
    margin-bottom: 25px;
}

.success-message h3 {
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 600;
}

.success-message p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 25px;
}

.success-note {
    background: rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 12px;
    font-size: 1.2em;
    font-weight: 600;
}

/* ===== PRICING SECTION ===== */
#pricing {
    background: #ffffff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border-color: #f39c12;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 30px;
    text-align: center;
    position: relative;
}

.pricing-card.featured .pricing-header {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.pricing-header h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: 600;
    color: #2c3e50;
}

.pricing-card.featured .pricing-header h3 {
    color: white;
}

.price {
    margin-bottom: 15px;
}

.current-price {
    font-size: 2.5em;
    font-weight: 700;
    color: #f39c12;
}

.pricing-card.featured .current-price {
    color: white;
}

.original-price {
    font-size: 1.2em;
    color: #7f8c8d;
    text-decoration: line-through;
    margin-right: 15px;
}

.duration {
    font-size: 1.1em;
    color: #555;
    font-weight: 500;
}

.pricing-card.featured .duration {
    color: rgba(255,255,255,0.9);
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.pricing-features ul li {
    padding: 12px 0;
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features ul li:last-child {
    border-bottom: none;
}

.monthly-offer,
.package-offer {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
    border-right: 4px solid #27ae60;
}

.monthly-offer strong,
.package-offer strong {
    color: #27ae60;
    font-size: 1.1em;
}

.pricing-note {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border-right: 6px solid #3498db;
}

.pricing-note p {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.pricing-note p:last-child {
    margin-bottom: 0;
}
#faq {
    background: #ffffff;
}

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

.faq-item {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 20px;
    border-right: 6px solid #f39c12;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: #fff;
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4em;
    font-weight: 600;
}

.faq-item p {
    color: #555;
    font-size: 1.2em;
    line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
#contact {
    background: #f8f9fa;
    text-align: center;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-content p {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #555;
    line-height: 1.8;
}

.whatsapp-contact-btn {
    background: #25D366;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-contact-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.contact-note {
    font-style: italic;
    color: #7f8c8d;
    margin-top: 30px;
    font-size: 1.1em;
}

/* ===== FOOTER ===== */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

footer p {
    font-size: 1.2em;
    font-weight: 500;
}

/* ===== LOADING ANIMATION ===== */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        position: relative;
    }
    
    .nav-mobile {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    nav ul {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        margin-top: 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-radius: 0 0 15px 15px;
        z-index: 1000;
        padding: 0;
    }
    
    nav ul.show {
        display: flex !important;
    }
    
    nav ul li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
        list-style: none;
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    nav a {
        display: block;
        paddi    nav a:hover {
        background: rgba(243, 156, 18, 0.1);
        color: #f39c12;
    } 
    .whatsapp-btn {
        background: #25D366 !important;
        color: white !important;
        padding: 10px !important;
        border-radius: 50% !important;
        font-size: 1.2em !important;
        display: inline-block !important;
        width: 40px !important;
        height: 40px !important;
        text-align: center !important;
        line-height: 20px !important;
        text-decoration: none !important;
    }
    
    .instagram-btn {
        background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%) !important;
        color: white !important;
        padding: 10px !important;
        border-radius: 50% !important;
        font-size: 1.2em !important;
        display: inline-block !important;
        width: 40px !important;
        height: 40px !important;
        text-align: center !important;
        line-height: 20px !important;
        text-decoration: none !important;
    }
    
    .logo h2 {
        font-size: 1.8em;
    }
        #hero {
        padding: 100px 15px 60px;
        min-height: 90vh;
    }
    
    .hero-content {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    #hero h1 {
        font-size: 2.5em;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.3em;
        margin-bottom: 15px;
    }
    
    .hero-arabic {
        font-size: 1.4em;
        margin-bottom: 25px;
    }
    
    .hero-description {
        font-size: 1.1em;
        margin-bottom: 30px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }    min-height: 90vh;
    }
    
    .hero-content {
        padding: 30px 15px;
        margin: 0;
        background: rgba(255, 255, 255, 0.95);
    }
    
    #hero h1 {
        font-size: 2.8em;
        margin-bottom: 20px;
        color: #2c3e50;
        text-shadow: none;
    }
    
    .hero-subtitle {
        font-size: 1.4em;
        margin-bottom: 15px;
        color: #7f8c8d;
        text-shadow: none;
    }
    
    .hero-arabic {
        font-size: 1.3em;
        margin-bottom: 25px;
        color: #34495e;
        text-shadow: none;
    }
    
    .hero-description {
        font-size: 1.1em;
        margin-bottom: 30px;
        color: #555;
        text-shadow: none;
    }
    
    .hero-btn {
        font-size: 1.1em;
        padding: 15px 25px;
    }
    
    section {
        padding: 60px 0;
    }
    
    section h2 {
        font-size: 2.2em;
        margin-bottom: 40px;
    }
    
    .workshop-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .workshop-item {
        padding: 25px;
    }
    
    .form-container {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .schedule-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .pricing-header {
        padding: 25px;
    }
    
    .pricing-features {
        padding: 25px;
    }
    
    .current-price {
        font-size: 2.2em;
    }
    
    .section-image {
        height: 250px;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .about-content p {
        font-size: 1.1em;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    #hero h1 {
        font-size: 2.2em;
    }
    
    .hero-subtitle {
        font-size: 1.2em;
    }
    
    .hero-arabic {
        font-size: 1.1em;
    }
    
    .hero-description {
        font-size: 1em;
    }
    
    section h2 {
        font-size: 1.8em;
    }
    
    .workshop-item,
    .detail-section,
    .sadhu-workshop,
    .important-notes,
    .registration-terms {
        padding: 20px;
        margin: 0 10px;
    }
    
    .form-container {
        padding: 20px 15px;
        margin: 0 10px;
    }
    
    .section-image {
        height: 200px;
    }
    
    .about-content p {
        font-size: 1em;
        padding: 0 10px;
    }
    
    nav {
        padding: 0.5rem;
    }
    
    .logo h2 {
        font-size: 1.5em;
    }
}

/* ===== CONTACT BUTTONS SECTION ===== */
#contact-buttons {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 60px 20px;
    text-align: center;
}

#contact-buttons h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-btn {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact-btn:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

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

.instagram-contact:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.btn-icon {
    font-size: 3em;
}

.btn-text {
    font-size: 1.3em;
    font-weight: 600;
}



/* Enhanced Form Styling */
.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label {
    color: #f39c12;
}

/* Custom Select Arrow for RTL */
.form-group select {
    background-position: left 15px center;
    padding-left: 50px;
    padding-right: 20px;
}

/* Option styling */
.form-group select option {
    padding: 10px;
    background: #fff;
    color: #2c3e50;
    font-size: 1.1em;
}

.form-group select option:hover {
    background: #f8f9fa;
}

/* Form grid layout */
.form-container form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .form-container form {
        grid-template-columns: 1fr;
    }
    
    .form-group select {
        background-position: left 10px center;
        padding-left: 40px;
    }
}

/* Enhanced submit button */
.submit-btn {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 20px;
    border: none;
    border-radius: 15px;
    font-size: 1.3em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(243, 156, 18, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}


/* Mobile responsive for larger about image */
@media (max-width: 768px) {
    .about-image {
        max-width: 100%;
    }
    
    .section-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1024/1536;
    }
}

@media (max-width: 480px) {
    .section-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1024/1536;
    }
}


/* Simple Success Message */
.success-message-simple {
    text-align: center;
    padding: 80px 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin: 50px auto;
    max-width: 600px;
}

.success-message-simple h2 {
    font-size: 3em;
    color: #27ae60;
    margin-bottom: 30px;
    font-weight: 700;
}

.success-message-simple p {
    font-size: 1.5em;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

