/* Creative Writing Hero Section Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    padding-top: 80px;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(21, 50, 35, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d4af37;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-icon {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta-btn {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #153223;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-cta-btn:hover {
    background: transparent;
    border-color: #d4af37;
    color: #d4af37;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #d4af37;
    transition: 0.3s;
    border-radius: 2px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-section {
    background: linear-gradient(135deg, #0f2419 0%, #1a3d2e 50%, #153223 100%);
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1.4fr 1.2fr;
    align-items: stretch;
    gap: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Hero Columns */
.hero-stats {
    position: relative;
    z-index: 2;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-main {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 100px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-cta {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 100px 40px 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #d4af37;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 500;
    margin-bottom: 40px;
    font-size: 1.5rem;
}

.fire-emoji {
    font-size: 18px;
}

/* Hero Title */
.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
   
    font-weight: 400;
    line-height: 1.5;
}

/* Program Highlight */
.program-highlight {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 32px;
}

.program-highlight h2 {
    font-size: 2rem;
    margin-bottom: 28px;
    font-weight: 600;
    text-align: center;
    letter-spacing: -0.01em;
}

.program-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-number {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #d4af37;
}

.stat-text {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.3;
}

/* Program Details in Hero */
.program-details {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    width: 100%;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 18px 24px;
    border-radius: 12px;
    width: 100%;
}

.detail-item .icon {
    font-size: 1.4rem;
    opacity: 0.9;
}

.detail-item .text {
    font-weight: 500;
    color: white;
    font-size: 1rem;
}

/* WhatsApp Button in Hero Main */
.hero-main .whatsapp-btn {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 2rem;
}

.hero-main .whatsapp-btn:hover {
    background: linear-gradient(45deg, #22c55e, #10b981);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.hero-main .phone-number {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 8px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-weight: 700;
}






/* Target Audience */
.target-audience {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.target-audience h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.6rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.target-audience p {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 28px;
    border-radius: 16px;
    text-align: center;
}

.original-price {
    margin-bottom: 24px;
}

.price-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ef4444;
    margin-right: 8px;
}

.crossed {
    text-decoration: line-through;
    opacity: 0.6;
}

.special-offers {
    display: grid;
    gap: 16px;
}

.offer-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.main-offer {
    border: 1px solid #d4af37;
    background: rgba(212, 175, 55, 0.15);
}

.student-offer {
    border: 1px solid #b8860b;
    background: rgba(184, 134, 11, 0.15);
}

.offer-emoji {
    font-size: 1.4rem;
}

.offer-text {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

.offer-price {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
}

.offer-currency {
    font-weight: 500;
    color: white;
    font-size: 0.95rem;
}

.offer-limit {
    background: #dc2626;
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Benefits Section */
.benefits-section {
    text-align: center;
    margin-top: 32px;
}

.urgency-text {
    margin-top: 28px;
    width: 100%;
    background-color: #0f241941;
    border-radius: 15px;
    padding: 10px;
}

.register-now {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d4af37;
    display: block;
    margin: 10px 5px;
    width: 100%;
   
    
}

.limited-seats {
    font-size: 1.rem;
   
    font-weight: 600;
    background: rgba(239, 68, 68, 0.1);
    padding: 4px 12px;
    width: 100%;
    border-radius: 12px;
   
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 16px;
    border-radius: 12px;
    
    
}

.guarantee-icon {
    font-size: 1.8rem;
}

.guarantee-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
}

.guarantee-title {
    font-size: 1rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 4px;
}

.guarantee-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.bonus-items {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 20px;
    border-radius: 12px;
    text-align: right;
}

.bonus-title {
    font-size: 1rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 16px;
    text-align: center;
}

.bonus-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bonus-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    padding-right: 24px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.bonus-list li:before {
    content: "✨";
    position: absolute;
    right: 0;
    font-size: 1rem;
}

.bonus-list li:last-child {
    border-bottom: none;
}

/* Legacy CTA Section (if needed) */
.cta-section {
    text-align: center;
    font-size: 1.5rem;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
   
    margin: 10px 0;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    width: 100%;
    background-color: #128c7e;
    padding: 15px 10px ;
    border-radius: 10px;
    text-decoration: none;
   
}

.contact-emoji {
    font-size: 1.4rem;
}

/* Main CTA Section in Hero Center */
.main-cta-section {
    margin-top: 40px;
    text-align: center;
}

.inspiration-text {
    margin-bottom: 32px;
}

.creative-call {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.motivation-text {
    display: block;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.4;
}

/* Creative WhatsApp Button */
.creative-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 20px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    border: 2px solid transparent;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.creative-whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.creative-whatsapp-btn:hover::before {
    left: 100%;
}

.creative-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-icon {
    font-size: 1.8rem;
    animation: rocket 2s ease-in-out infinite;
}

@keyframes rocket {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

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

.btn-main-text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.btn-sub-text {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.phone-display {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 12px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.encouragement-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 12px 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.note-icon {
    font-size: 1.2rem;
}

.note-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-style: italic;
}

/* Original WhatsApp Button (for right column) */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.whatsapp-btn:hover {
    background: #22c55e;
    transform: translateY(-2px);
}

.phone-number {
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 8px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-weight: 600;
}

/* Details Section */
.details-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.details-section .program-includes {
    background: white;
    border: 1px solid #e9ecef;
    color: #333;
    text-align: right;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.details-section .program-includes h3 {
    color: #2c3e50;
    text-shadow: none;
}

.details-section .includes-list li {
    color: #555;
    border-bottom: 1px solid #e9ecef;
}

.details-section .includes-list li:before {
    color: #28a745;
    text-shadow: none;
}

.details-section .program-features {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.details-section .program-features h3 {
    color: #2c3e50;
    text-shadow: none;
}

.details-section .feature-item {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
}

.details-section .target-audience {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
}

.details-section .target-audience h3 {
    color: #856404;
    text-shadow: none;
}

.details-section .target-audience p {
    color: #856404;
}

/* Navbar Responsive */
@media (max-width: 968px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(21, 50, 35, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 40px 0;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }

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

    .nav-item {
        margin: 16px 0;
    }

    .nav-link {
        font-size: 1.1rem;
        display: block;
        padding: 12px 0;
    }

    .nav-cta-btn {
        margin-top: 20px;
        display: inline-block;
    }

    .hamburger {
        display: flex;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* Hero Responsive Design */
@media (max-width: 1200px) {
    .hero-main {
        padding: 80px 40px 80px 30px;
    }

    .hero-stats {
        padding: 40px 20px;
    }

    .hero-cta {
        padding: 80px 30px 80px 40px;
    }
}

@media (max-width: 968px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        padding: 70px 20px;
    }

    .hero-main {
        text-align: center;
        order: 1;
        background: transparent;
        border: none;
        padding: 60px 20px;
    }

    .hero-stats {
        order: 2;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 40px 20px;
    }

    .hero-cta {
        order: 3;
        padding: 60px 20px;
    }

    .program-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .program-details {
        align-items: center;
        max-width: 400px;

        margin: 0 auto 48px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .program-highlight h2 {
        font-size: 2rem;
    }

    .program-stats {
        grid-template-columns: 1fr;
    }

    .hero-left .program-details {
        align-items: center;
    }

    .offer-item {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-btn {
        flex-direction: column;
        gap: 10px;
    }

    .details-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-section {
        padding: 40px 0;
    }

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

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

    .program-highlight {
        padding: 25px;
    }

    .program-highlight h2 {
        font-size: 1.6rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .whatsapp-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .details-section {
        padding: 40px 0;
    }

    .details-section .program-includes,
    .details-section .program-features,
    .details-section .target-audience {
        padding: 20px;
    }
}