﻿        :root {
            --navy: #0a1f44;
            --blue: #1a3a6e;
            --blue-mid: #1e4a8a;
            --blue-light: #2563b0;
            --sky: #4a90d9;
            --gold: #c9a84c;
            --gold-light: #e8c97a;
            --gold-shine: #f5e0a0;
            --white: #ffffff;
            --off-white: #f7f9fc;
            --silver: #e8eef8;
            --text-dark: #0a1f44;
            --text-mid: #334d7a;
            --text-muted: #6a82a8;
            --shadow-blue: rgba(10,31,68,0.18);
            --shadow-gold: rgba(201,168,76,0.25);

              --primary: #1f4f74;
            --primary-dark: #163953;
            --secondary: #d8ab45;
            --secondary-dark: #b88f2e;
            --text: #24323f;
            --muted: #6b7a88;
            --bg: #f6fbff;
            --card: #ffffff;
            --border: #e6eef5;
            --shadow: 0 18px 45px rgba(17, 43, 68, .08);
            --radius: 28px;
            --radius-sm: 18px;
        }

     
        /* ===== HERO BANNER ===== */
        .hero {
               position: relative;
    min-height: 70vh;
    background:linear-gradient(to bottom, #4da4c7, #247fa3, #156b8d, #094664);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 38px 20px;
    border-radius: 29px;
        }

            .hero::before {
                content: '';
                position: absolute;
                inset: 0;
                background: radial-gradient(ellipse 80% 60% at 20% 80%, rgba(201,168,76,0.12) 0%, transparent 60%), radial-gradient(ellipse 60% 50% at 80% 20%, rgba(74,144,217,0.15) 0%, transparent 50%);
            }

        .hero-pattern {
            position: absolute;
            inset: 0;
            background-image: repeating-linear-gradient( 45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 40px ), repeating-linear-gradient( -45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 40px );
        }

        .orchid-bg {
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            border: 1px solid rgba(201,168,76,0.15);
            top: -100px;
            left: -100px;
            animation: rotateSlow 30s linear infinite;
        }

            .orchid-bg::before {
                content: '';
                position: absolute;
                width: 350px;
                height: 350px;
                border-radius: 50%;
                border: 1px solid rgba(201,168,76,0.1);
                top: 75px;
                left: 75px;
            }

        .orchid-bg-2 {
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            border: 1px solid rgba(74,144,217,0.12);
            bottom: -80px;
            right: -80px;
            animation: rotateSlow 25s linear infinite reverse;
        }

        @keyframes rotateSlow {
            to {
                transform: rotate(360deg);
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(201,168,76,0.15);
            border: 1px solid rgba(201,168,76,0.4);
            color: var(--gold-light);
            padding: 8px 22px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1px;
            margin-bottom: 28px;
            backdrop-filter: blur(10px);
            animation: fadeDown 0.8s ease forwards;
        }

            .hero-badge::before {
                content: '✦';
                color: var(--gold);
                font-size: 10px;
            }

        .hero-logo {
            position: absolute;
            top: 28px;
            right: 40px;
            display: flex;
            align-items: center;
            gap: 12px;
            color: white;
            text-decoration: none;
        }

        .logo-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            box-shadow: 0 4px 15px var(--shadow-gold);
        }

        .logo-text {
            font-size: 20px;
            font-weight: 700;
            background: linear-gradient(to left, var(--white), var(--gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 910px;
            animation: fadeUp 1s ease 0.3s both;
        }

        .hero-title {
               font-size: 46px;
    font-weight: 900;
    color: white;
    line-height: 1.3;
    margin-bottom: 20px;
        }

            .hero-title .gold-text {
                background: linear-gradient(to left, var(--gold), var(--gold-shine));
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                display: block;
            }

        .hero-subtitle {
               font-size: 14px;
    color: rgb(255 255 255);
    /*max-width: 600px;*/
    margin: 0 auto 36px;
    line-height: 31px;
    font-weight: 300;
    direction: rtl;
        }

        .hero-pills {
            display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 44px;
    flex-direction: row-reverse;
        }

        .pill {
            display: flex;
            align-items: center;
            gap: 7px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.18);
            color: white;
            padding: 9px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;direction: rtl;
        }

            .pill span {
                color: var(--gold-light);
                font-size: 16px;
            }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: var(--navy);
            font-weight: 800;
            font-size: 13px;
            padding: 16px 38px;
            border-radius: 14px;
            text-decoration: none;
            box-shadow: 0 8px 30px var(--shadow-gold), 0 2px 8px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

            .hero-cta:hover {
                transform: translateY(-3px);
                box-shadow: 0 14px 40px rgba(201,168,76,0.45), 0 4px 12px rgba(0,0,0,0.2);
            }

        .scroll-hint {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: rgba(255,255,255,0.4);
            font-size: 12px;
            animation: bounce 2s ease-in-out infinite;
        }

            .scroll-hint::after {
                content: '';
                width: 1px;
                height: 40px;
                background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
            }

        @keyframes bounce {
            0%,100% {
                transform: translateX(-50%) translateY(0);
            }

            50% {
                transform: translateX(-50%) translateY(8px);
            }
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
             /* Sections */
        .section {
            padding: 28px 0;
        }
        .section h2
 {
    font-size: 23px;
    font-weight: bold;
    padding: 15px 0px;
    background: linear-gradient(to bottom, #ae802a, #ba9125, #dcac5a, #f5cb7a);
    -webkit-text-fill-color: transparent;
    background-color: transparent;
    -webkit-background-clip: text;
}.section  h3 {
    font-weight: bold;
    padding: 15px 0px;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 0px;
    background: linear-gradient(to bottom, #00405c, #60a8c5, #346376, #47bae8);
    -webkit-text-fill-color: transparent;
    background-color: transparent;
    -webkit-background-clip: text;
}
       .section .section-title {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 18px;
            flex-wrap: wrap;
        }

          .section  .section-title p:first-child {
                margin: 0;
    font-size: 18px;
    font-weight: 900;
    color: var(--primary-dark);
    background: none;
    -webkit-text-fill-color: var(--primary-dark);
            }

           .section .section-title p {
               margin: 0;
    color: var(--muted);
    line-height: 37px;
    font-size: 15px;
    font-weight: normal;
            }
            
        .card {
            background: rgba(255,255,255,.92);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);direction: rtl;
        }

        .two-col {
            display: grid;
            grid-template-columns: 1.5fr .95fr;
            gap: 22px;
            align-items: start;    direction: rtl;
        }

        .content-card {
            padding: 28px;
        }

        .workshop-image {
            border-radius: 24px;
            overflow: hidden;
            margin-bottom: 22px;
            aspect-ratio: 800/700; 
            position: relative;
            background: #edf4fa;    direction: ltr;
          
        }
       .workshop-image li {
           
            overflow: hidden;
        
            aspect-ratio: 800/700; 
         
          
        }
            .workshop-image img {
                width: 100%;
                height: 100% !important;
                object-fit: cover;aspect-ratio: auto !important;
            }

        .lead {
            color: var(--muted);
            line-height: 2.2;
            font-size: 16px;
            margin: 0;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0,1fr));
            gap: 14px;
            margin-top: 22px;
        }

        .info-item {
            border: 1px solid var(--border);
            background: #fbfdff;
            border-radius: 20px;
            padding: 16px 18px;
        }

            .info-item .k {
                color: var(--muted);
                font-size: 13px;
                margin-bottom: 6px;
            }

            .info-item .v {
                font-size: 16px;
                font-weight: 800;
                color: var(--primary-dark);
                line-height: 1.8;
            }

        /* Pricing */
        .pricing {
            padding: 26px;
            position: sticky;
            top: 10px;
        }

            .pricing h3 {
                margin: 0 0 16px;
                font-size: 22px;
                color: var(--primary-dark);
            }

        .price-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            padding: 14px 0;
            border-bottom: 1px dashed var(--border);
        }

            .price-row:last-child {
                border-bottom: none;
            }

        .price-label {
            color: var(--muted);
            font-weight: 600;
        }

        .price-value {
            font-weight: 900;
            color: var(--primary-dark);
            font-size: 18px;
        }

        .old-price {
            text-decoration: line-through;
            color: #a6b3bf;
            font-size: 15px;
        }

        .new-price {
            color: var(--secondary-dark);
            font-size: 22px;
        }

        .qty-control {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 18px;
            background: #f8fbfe;
            border: 1px solid var(--border);
            border-radius: 22px;
            padding: 10px;
        }

            .qty-control label {
                min-width: max-content;
                color: var(--muted);
                font-size: 14px;
                font-weight: 600;
                padding-inline: 8px;
            }

            .qty-control input {
                flex: 1;
                min-width: 0;
                border: none;
                background: transparent;
                outline: none;
                font-family: inherit;
                font-size: 16px;
                color: var(--text);
                padding: 10px 8px;
            }

        .pricing .btn {
            width: 100%;
            margin-top: 16px;
            padding: 15px 20px;
            font-size: 16px;
        }

        .mini-note {
            margin-top: 16px;
            padding: 14px 16px;
            border-radius: 18px;
            background: #f5fafc;
            color: var(--muted);
            line-height: 1.9;
            font-size: 14px;
        }.btn-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, #e0bd67 100%);
    color: #fff;
    box-shadow: 0 14px 28px rgba(216, 171, 69, .2);
}
        .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(31, 79, 116, .23);
}.btn-secondary:hover {
    transform: translateY(-2px);
}

        /* ===== SECTION STYLES ===== */
        section {
            padding: 80px 20px;
        }

        .container {
            max-width: 1160px;
            margin: 0 auto;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--gold);
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

            .section-label::before, .section-label::after {
                content: '';
                height: 1px;
                width: 24px;
                background: var(--gold);
                display: block;
            }

        .section-title {
            font-size: clamp(1.6rem, 3vw, 2.4rem);
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 16px;
            line-height: 1.4;
        }

        .section-desc {
            color: var(--text-mid);
            font-size: 14px;
            line-height: 1.9;
            max-width: 660px;
        }

   
        /* ===== ABOUT WORKSHOP ===== */
        .about-section {
            background: var(--white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
        }

        .about-img-wrap {
            position: relative;
        }

        .about-img {
            width: 100%;
            height: 440px;
            border-radius: 24px;
            overflow: hidden;
            position: relative;
        }

        .workshop-visual {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 50%, var(--blue-light) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

            .workshop-visual::before {
                content: '';
                position: absolute;
                width: 300px;
                height: 300px;
                border-radius: 50%;
                border: 40px solid rgba(201,168,76,0.12);
                top: -50px;
                right: -50px;
            }

        .workshop-visual-icon {
            font-size: 80px;
            position: relative;
            z-index: 2;
            filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
            animation: float 4s ease-in-out infinite;
        }

        @keyframes float {
            0%,100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-12px);
            }
        }

        .img-badge {
            position: absolute;
            bottom: 0px;
            left: -20px;
            background: white;
            border-radius: 16px;
            padding: 16px 22px;
            box-shadow: 0 10px 40px var(--shadow-blue);
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 2;
        }

        .img-badge-num {
            font-size: 28px;
            font-weight: 900;
            color: var(--navy);
        }

        .img-badge-text {
            font-size: 13px;
            color: var(--text-mid);
            line-height: 1.5;
        }

        .gold-line {
            width: 60px;
            height: 4px;
            background: linear-gradient(to left, var(--gold), var(--gold-light));
            border-radius: 2px;
            margin-bottom: 20px;
        }

        .about-points {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-top: 28px;
        }

        .about-point {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 16px 18px;
            background: var(--off-white);
            border-radius: 12px;
            border-right: 3px solid var(--gold);
            transition: all 0.3s;
        }

            .about-point:hover {
                background: var(--silver);
                transform: translateX(-4px);
            }

        .point-icon {
            font-size: 22px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .point-title {
            font-weight: 700;
            font-size: 15px;
            color: var(--navy);
            margin-bottom: 4px;
        }

        .point-text {
            font-size: 13.5px;
            color: var(--text-mid);
            line-height: 1.7;
        }
         /* Instructor */
        .instructor {
           display: flex;
    gap: 55px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
        }

        .instructor-photo {
            overflow: hidden;
            border-radius: 26px;
            aspect-ratio: 5/5;
            background: #edf4fa;    flex: 0 0 33.333%;
    max-width: 33.333%;
        }
        .instructor .instructor-content {
    flex: 1;
    min-width: 0;
}
            .instructor-photo img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
           

.instructor:nth-child(odd) .instructor-photo {
   order: 2; /* تصویر میره ستون دوم */
}
.instructor:nth-child(odd) .instructor-content {
   order: 1; /* متن میره ستون اول */
}
        .instructor-content h3 {
            margin: 0 0 10px;
            font-size: 26px;
            color: var(--primary-dark);
            font-weight: 900;
        }

        .bullets {
            margin: 18px 0 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 10px;
        }

            .bullets li {
                display: flex;
                gap: 10px;
                align-items: flex-start;
                line-height: 1.9;
                color: var(--text);
            }

            .bullets i {
                color: var(--secondary-dark);
                margin-top: 5px;
            }

        /* ===== SCHEDULE ===== */
        .schedule-section {
           background: #f7f9fca3;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    direction: rtl;
        }

        .schedule-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 48px;
        }

        .schedule-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 4px 20px var(--shadow-blue);
            display: flex;
            align-items: flex-start;
            gap: 20px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

            .schedule-card::before {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                width: 4px;
                height: 100%;
                background: linear-gradient(to bottom, var(--gold), var(--gold-light));
            }

            .schedule-card:hover {
                transform: translateY(-4px);
                box-shadow: 0 12px 40px var(--shadow-blue);
            }

        .schedule-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--navy), var(--blue));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
            box-shadow: 0 6px 20px rgba(10,31,68,0.25);
        }

        .schedule-info {
        }

        .schedule-label {
            font-size: 15px;
            color: var(--text-muted);
            font-weight: 500;
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .schedule-value {
            font-size: 14px;
            font-weight: 700;
            color: var(--navy);
        }

        .schedule-sub {
            font-size: 13px;
            color: var(--text-mid);
            margin-top: 5px;
        }

      
        /* ===== FAQ ===== */
        .faq-section {
            background: var(--off-white);border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    direction: rtl;
        }

       .faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 48px;
}

        .faq-item {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(10,31,68,0.07);
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

            .faq-item:hover, .faq-item.open {
                border-color: rgba(201,168,76,0.4);
            }

        .faq-q {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 20px 22px;
            font-weight: 600;
            font-size: 15px;
            color: var(--navy);
            user-select: none;
        }

            .faq-q::before {
                content: '؟';
                width: 34px;
                height: 34px;
                background: var(--navy);
                color: var(--gold-light);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 16px;
                font-weight: 800;
                flex-shrink: 0;
            }

        .faq-arrow {
            margin-right: auto;
            font-size: 18px;
            color: var(--gold);
            transition: transform 0.3s;
        }

        .faq-item.open .faq-arrow {
            transform: rotate(180deg);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s;
            font-size: 14px;
            color: var(--text-mid);
            line-height: 1.8;
            padding: 0 22px 0 22px;
        }

        .faq-item.open .faq-a {
            max-height: 200px;
            padding: 0 22px 20px 22px;
        }

        /* ===== OTHER WORKSHOPS ===== */
        .other-section {
            background: white;border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);    margin-top: 25px;
    direction: rtl;
        }

        .other-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 48px;
        }

        .other-card {
            border-radius: 20px;
            overflow: hidden;
            border: 2px solid var(--silver);
            transition: all 0.3s;
            cursor: pointer;
        }

            .other-card:hover {
                border-color: var(--gold);
                transform: translateY(-6px);
                box-shadow: 0 16px 40px var(--shadow-blue);
            }

        .other-cover {
           /* height: 140px;*/
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            position: relative;
        }

        .other-cover-1 {
            background: linear-gradient(135deg, #0a2f5e, #1a5a9a);
        }

        .other-cover-2 {
            background: linear-gradient(135deg, #0d3d2e, #1a7a55);
        }

        .other-cover-3 {
            background: linear-gradient(135deg, #3d0a2f, #8a1a5a);
        }

        .other-body {
            padding: 22px 20px;
        }

        .other-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .other-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 14px;
        }

        .other-date {
            font-size: 13px;
            color: var(--text-muted);
        }

        .other-price {
            font-size: 14px;
            font-weight: 700;
            color: var(--gold);
        }

        .other-desc {
            font-size: 13px;
            color: var(--text-mid);
            line-height: 1.7;
        }

      

        /* ===== RESPONSIVE ===== */
             /* Responsive */
        @media (max-width: 1100px) {
            .hero-meta,
            .features-grid,
            .workshops-grid,
            .footer-grid,
            .comments,
            .faq-layout,
            .instructor,
            .two-col {
                grid-template-columns: 1fr;
            }

            .pricing {
                position: static;
            }

            .hero-card {
                min-height: auto;
            }

            .hero-content {
                padding: 28px;
            }
        }

        @media (max-width: 900px) {
            .about-grid, .schedule-grid, .pricing-grid, .instructors-grid, .faq-grid, .other-grid {
                grid-template-columns: 1fr;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .info-bar {
                flex-direction: column;
            }

            .info-item {
                border-right: none;
                border-bottom: 1px solid rgba(255,255,255,0.12);
            }

            .hero-logo {
                top: 16px;
                right: 20px;
            }

            .pricing-card.featured {
                transform: none;
            }

            .payment-steps::before {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .instructor .instructor-content ,.instructor-photo{
    flex: 1;
    min-width: 100%;
}.instructor:nth-child(odd) .instructor-photo {
    order: 1;
}

            .section-title h2 {
                font-size: 24px;
            }

            .content-card,
            .pricing,
            .form,
            .comments-list,
            .faq-right {
                padding: 20px;
            }
        }