/* =====================================
   TDrive
   Part 1 (Fixed)
===================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Cairo',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#fff;
color:#333;
line-height:1.8;
}

/* ==========================
   Header
========================== */

header{
position:sticky;
top:0;
display:flex;
flex-direction:column;
align-items:center;
padding:20px 8%;
background:#fff;
box-shadow:0 8px 25px rgba(0,0,0,.05);
z-index:999;
}

.logo{
text-align:center;
}

.logo h1{
font-size:34px;
font-weight:800;
color:#65b7c3;
}

.logo p{
font-size:15px;
color:#888;
}

nav{
display:flex;
justify-content:flex-start;
align-items:center;
gap:22px;
width:100%;
margin-top:20px;
overflow-x:auto;
white-space:nowrap;
}


nav a{
text-decoration:none;
color:#333;
font-weight:700;
font-size:15px;
padding:8px 6px;
flex-shrink:0;
}

nav a:hover{
color:#65b7c3;
}

/* ==========================
   Hero
========================== */

.hero{
display:flex;
flex-direction:column;
align-items:center;
text-align:center;
padding:70px 8%;
}

.hero-image{
font-size:110px;
margin-bottom:20px;
}

.hero-content{
max-width:700px;
}

.hero-content h2{
font-size:40px;
color:#65b7c3;
margin-bottom:10px;
}

.hero-content p{
font-size:20px;
color:#666;
margin-bottom:25px;
line-height:1.9;
}

.hero-car{
    display:flex;
    justify-content:center;
    margin:20px 0;
}

.hero-car img{
    width:350px;
    max-width:90%;
    height:auto;
}

/* ==========================
   Current Program
========================== */

.current-program{
background:#f7fbfd;
border:2px solid #d9edf5;
border-radius:22px;
padding:30px;
margin:35px auto;
max-width:700px;
}

.current-program h3{
color:#65b7c3;
font-size:22px;
margin-bottom:15px;
}

.current-program h2{
font-size:44px;
margin-bottom:20px;
color:#333;
}

.current-program p{
font-size:20px;
color:#666;
line-height:1.8;
}

/* ==========================
   Button
========================== */

.button{
display:inline-block;
margin-top:30px;
padding:16px 42px;
background:#65b7c3;
color:#fff;
text-decoration:none;
font-weight:bold;
border-radius:14px;
transition:.3s;
}

.button:hover{
transform:translateY(-4px);
box-shadow:0 10px 25px rgba(0,0,0,.12);
}

/* ==========================
   Sections
========================== */

section{
padding:70px 8%;
}

section h2{
font-size:30px;
text-align:center;
margin-bottom:26px;
color:#333;
}

.section-text{
text-align:center;
font-size:20px;
color:#666;
max-width:800px;
margin:auto auto 40px;
}

/* ==========================
   Cards
========================== */

.card{
    background:#f7fbfd;
    border:2px solid #d9edf5;
    border-radius:18px;
    padding:20px;
    text-align:center;
    transition:.3s;
    width:85%;
    max-width:500px;
    margin:0 auto;
}


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

.card h3{
    font-size:26px;
    margin:10px 0;
    color:#65b7c3;
}

.card p{
    font-size:17px;
    line-height:1.8;
    color:#666;
}

/* ==========================
   Offer Box
========================== */

.offer-box{
background:#fff8e8;
border:2px solid #ffd166;
border-radius:22px;
padding:30px;
margin:35px auto;
max-width:700px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.offer-box h3{
font-size:28px;
color:#ff9800;
margin-bottom:16px;
}

.offer-box p{
font-size:19px;
color:#555;
margin:12px 0;
}

.offer-box .special-price{
    font-size:40px;
    font-weight:700;
    color:#66BB6A !important;
    margin:18px 0;
}

.vip-offer{
font-size:20px;
font-weight:bold;
color:#d62828;
}

/* ==========================
   Videos
========================== */

.videos-section{
background:#f8fcfc;
text-align:center;
}

.videos-section h2{
color:#65b7c3;
font-size:28px;
margin-bottom:10px;
}

.videos-text{
font-size:16px;
margin-bottom:20px;
color:#666;
}

.video-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:25px;
max-width:1100px;
margin:auto;
}

.video-card{
background:#fff;
padding:20px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.video-card h3{
color:#65b7c3;
margin-bottom:15px;
}

.video-card iframe{
width:100%;
height:380px;
border:none;
border-radius:14px;
}

/* ==========================
   Booking
========================== */
/* ===== قسم التسجيل ===== */

#booking{
    padding:45px 20px;
    font-size:15px;
}

#booking h2{
    font-size:22px;
    line-height:1.4;
    margin-bottom:25px;
    max-width:600px;
    margin-left:auto;
    margin-right:auto;
}



#bookingForm label{
    font-size:13px;
    margin-top:6px;
}

#bookingForm button{
    padding:13px;
    font-size:15px;
    background:#65b7c3;
    color:#fff;
    border:none;
    border-radius:12px;
    cursor:pointer;
}

#bookingForm button:hover{
    background:#4a9ea9;
}


.booking-note h3{
    font-size:18px;
}

.booking-note p{
    font-size:15px;
}

#bookingForm{
    max-width:550px;
    margin:auto;
    width:100%;
    display:flex;
    flex-direction:column;
    gap:14px;
}

#bookingForm input,
#bookingForm select{
    width:100%;
    padding:12px;
    font-size:14px;
}

/* ==========================
   Coming Soon
========================== */

.coming{
background:#f8fbfc;
}

.coming span{
display:inline-block;
margin-top:15px;
padding:8px 18px;
background:#65b7c3;
color:#fff;
border-radius:30px;
font-size:14px;
font-weight:bold;
}

.contact{
    background:#f8fbfc;
    text-align:center;
    padding:60px 20px;
}

.contact-text{
    color:#666;
    margin-bottom:25px;
}

.social-links{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.social-links a{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#65b7c3;
    font-size:34px;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.social-links a:hover{
    background:#65b7c3;
    color:#fff;
    transform:translateY(-5px);
}
/* ==========================
   Footer
========================== */

footer{
margin-top:70px;
padding:35px;
background:#1f2937;
color:#fff;
text-align:center;
}

/* ==========================
   Evaluation
========================== */

.evaluation{
max-width:900px;
margin:auto;
}

.evaluation .card{
max-width:700px;
margin:auto;
}

.evaluation input{
width:100%;
padding:16px;
margin-top:10px;
border:1px solid #ddd;
border-radius:12px;
font-size:16px;
}

.evaluation button{
margin-top:25px;
width:100%;
padding:16px;
border:none;
border-radius:12px;
background:#65b7c3;
color:#fff;
font-size:18px;
font-weight:bold;
cursor:pointer;
}

.stars{
display:flex;
justify-content:center;
gap:10px;
margin-top:20px;
}

.stars span{
font-size:42px;
color:#bbb;
cursor:pointer;
transition:.3s;
user-select:none;
}

.stars span:hover{
transform:scale(1.2);
color:#FFD700;
}

.progress{
display:flex;
justify-content:center;
align-items:center;
gap:20px;
margin:40px 0;
}

.step{
width:45px;
height:45px;
border-radius:50%;
background:#ddd;
display:flex;
justify-content:center;
align-items:center;
font-size:18px;
font-weight:bold;
}

.step.active{
background:#65b7c3;
color:#fff;
}

/* ==========================
   Responsive
========================== */

@media (max-width:900px){

header{
flex-direction:column;
gap:18px;
padding:20px;
}

nav{
justify-content:flex-start;
flex-wrap:nowrap;
overflow-x:auto;
white-space:nowrap;
padding-right:15px;
}

.hero{
padding:50px 25px;
}

.hero-content h2{
font-size:40px;
}

.hero-content p{
font-size:18px;
}

.hero-image{
font-size:90px;
margin-bottom:20px;
}

.current-program h2{
font-size:32px;
}

.cards{
grid-template-columns:1fr;
}

.video-grid{
grid-template-columns:1fr;
}


.button{
width:100%;
text-align:center;
}
}

@media (max-width:600px){

    .cards{
        grid-template-columns:1fr;
    }

    .current-program{
        padding:22px;
    }

    .offer-box{
        padding:22px;
    }

    .special-price{
        font-size:42px;
    }

    section{
        padding:55px 20px;
    }

/* ==========================
   Reviews - Mobile (نسخة حيوية)
========================== */

.reviews{
    padding:24px 12px;
    background:linear-gradient(180deg, #ffffff 0%, #f0fbfc 100%);
}

.reviews h2{
    font-size:26px;
    margin-bottom:12px;
    text-align:center;
    color:#3a939f;
}

.reviews .card{
    width:94%;
    max-width:420px;
    margin:auto;
    padding:16px 14px;
    border-radius:16px;
    background:#fff;
    box-shadow:0 6px 20px rgba(101,183,195,.15);
}

.reviews p{
    font-size:13px;
    line-height:1.6;
    margin-bottom:10px;
    color:#555;
}

#reviewForm{
    display:flex;
    flex-direction:column;
    gap:8px;
}

#reviewForm label{
    font-size:13px;
    font-weight:700;
    margin-bottom:2px;
    color:#3a939f;
}

#reviewForm select,
#reviewForm textarea{
    width:100%;
    font-size:14px;
    padding:10px 12px;
    border-radius:10px;
    border:1.5px solid #cdeef2;
    background:#fbfeff;
}

#reviewForm textarea{
    min-height:60px;
}

.stars{
    display:flex;
    justify-content:center;
    gap:6px;
    margin:4px 0;
    position:relative;
    z-index:9999;
}

.stars span{
    font-size:26px;
    color:#e0c9a6;
    cursor:pointer;
    user-select:none;
    pointer-events:auto;
    transition:.3s;
}

.review-btn{
    width:100%;
    padding:11px;
    font-size:14px;
    font-weight:700;
    color:#fff;
    background:linear-gradient(135deg, #65b7c3, #4a9ea9);
    border:none;
    border-radius:10px;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 8px 16px rgba(101,183,195,.35);
}

.review-btn:hover,
.review-btn:active{
    background:#56a9b6;
    transform:translateY(-2px);
}

.reviews h3{
    font-size:16px !important;
    margin-top:16px !important;
    text-align:center;
    color:#3a939f;
}

/* ===== بطاقات الآراء - سلايدر أفقي ===== */
#reviewsContainer{
    margin-top:14px;
    display:flex;
    flex-direction:row;
    gap:12px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    padding:4px 4px 10px;
}

#reviewsContainer::-webkit-scrollbar{
    height:4px;
}
#reviewsContainer::-webkit-scrollbar-thumb{
    background:#a8dee5;
    border-radius:10px;
}

.review-card{
    flex:0 0 auto;
    scroll-snap-align:start;
    width:80%;
    max-width:270px;
    min-height:150px;
    background:linear-gradient(160deg, #ffffff, #eaf8fa);
    border:1px solid #d3eef2;
    border-radius:14px;
    padding:14px;
    box-shadow:0 6px 14px rgba(101,183,195,.18);
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

.review-card .review-stars{
    color:#FFC107;
    font-size:15px;
    margin-bottom:6px;
}

.review-card h4{
    font-size:14px;
    margin:0 0 6px;
    color:#2e7d8a;
    font-weight:800;
}

.review-card p{
    font-size:12px;
    line-height:1.6;
    margin:0;
    color:#555;
}


    /* Contact - Mobile */

    .contact{
        padding:40px 20px;
    }

    .contact h2{
        font-size:30px;
        margin-bottom:10px;
    }


    .contact-text{
        margin-bottom:18px;
        font-size:17px;
    }

    .social-links{
        gap:18px;
    }

.social-links a{
    width:60px;
    height:60px;
    font-size:28px;
}

}   /* هذا يقفل @media */

 /* ===== أعلى الصفحة ===== */



.program-title{
text-align:center;
color:#65b7c3;
font-size:32px;
margin-bottom:20px;
}

.section-space{
height:70px;
}

.features-grid{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px;
    max-width:700px;
    margin:25px auto;
}

.coming-grid{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px;
}

/* ===== Payment ===== */

#payment{
    max-width:700px;
    margin:60px auto;
    padding:20px;
}

.payment-card{
    background:#fff;
    border:2px solid #d9edf5;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.payment-card p{
    margin-bottom:15px;
    color:#555;
}

.payment-card label{
    display:block;
    font-weight:bold;
    margin:15px 0 8px;
}

.copy-box{
    display:flex;
    gap:10px;
    margin-bottom:20px;
}

.copy-box input{
    flex:1;
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;
    background:#f8f8f8;
}

.copy-box button{
    background:#65b7c3;
    color:#fff;
    border:none;
    padding:0 20px;
    border-radius:10px;
    cursor:pointer;
}

.whatsapp{
    display:block;
    margin-top:25px;
    text-align:center;
    text-decoration:none;
    background:#25D366;
    color:#fff;
    padding:16px;
    border-radius:12px;
    font-weight:bold;
}
.booking-note{

background:#FFF8D9;
border:2px solid #F4D35E;
border-radius:16px;
padding:18px;
margin:25px 0;
text-align:right;

}

.booking-note h3{

margin-bottom:10px;
font-size:22px;
color:#9A6700;
font-weight:700;

}

.booking-note p{

margin:0;
font-size:18px;
line-height:1.8;
color:#555;

}
/* =====================================
   Featured Program - Home Page
===================================== */

/* بطاقة البرنامج المميز */
.featured-program {
    width: 100%;
    max-width: 1100px;
    margin: 20px auto;
    padding: 20px 20px;
}

.featured-program .card {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding: 18px;
    background: #FFF8EF; /* خلفية كريمية دافئة ومميزة */
    border: 2px solid #FFE6BF;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(245, 158, 11, .08);
    text-align: right;
}

.top-badge {
    display: inline-block;
    background: #F59E0B;
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 6px 15px rgba(245, 158, 11, .25);
    margin-bottom: 10px;
}

.featured-program h2 {
    color: #2f8ea1;
    font-size: 20px;
    font-weight: 800;
    text-align: right;
    margin-bottom: 10px;
}

.quote {
    font-size: 50px;
    color: #65b7c3;
    line-height: 1;
    margin-bottom: 10px;
}

.featured-program p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    text-align: right;
    margin-bottom: 14px;
}

/* تنسيق مستطيلات الميزات الثلاثة */
.features {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin: 14px 0;
}

.features div {
    flex: 1;
    min-width: 160px;
    background: #f8fbfc;
    border: 1px solid #d9edf5;
    border-radius: 14px;
    padding: 10px 8px; /* مسافة مريحة لظهور الأيقونات */
    text-align: center;
    font-weight: 700;
    color: #444;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* مسافة بين الأيقونة والنص */
}

/* تنسيق لون الأيقونات داخل المستطيلات */
.features div i {
    color: #65b7c3;
    font-size: 15px;
}

/* تنسيق السعر القديم مع خط التشطيب الأحمر الجذاب */
.old-price {
    text-align: right;
    color: #777;
    font-size: 14px;
    text-decoration: line-through;
    text-decoration-color: #e53935; /* خط أحمر ملفت لتأكيد الخصم */
    font-weight: 600;
}

.price-box {
    text-align: center;
    margin: 14px 0;
}

.price {
    font-size: 40px;
    font-weight: 800;
    color: #ff8a00;
    line-height: 1;
}

.price-text {
    color: #ff8a00;
    font-size: 18px;
    font-weight: 700;
}

.offer {
    display: inline-block;
    margin-top: 8px;
    background: #fff3e4;
    color: #ff8a00;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.featured-program .register-btn {
    display: block;
    width: 100%;
    background: #ff8a00;
    color: #fff;
    text-align: center;
    text-decoration: none;
    padding: 12px;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 700;
    margin-top: 14px;
    transition: .3s;
}

.featured-program .register-btn:hover {
    background: #f57c00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 138, 0, 0.2);
}

/* تحسين التجاوب على الجوال والأجهزة الذكية */
@media(max-width:768px){
    .featured-program .card {
        padding: 16px;
    }

    .featured-program h2 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .featured-program p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .features {
        flex-direction: column;
        gap: 8px;
        margin: 10px 0;
    }

    .price {
        font-size: 34px;
    }

    .price-text {
        font-size: 16px;
    }

    .featured-program .register-btn {
        font-size: 16px;
        padding: 11px;
        margin-top: 10px;
    }
}

.nav-register {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 15px;
    padding: 8px 6px;
}

.nav-register:hover {
    color: #65b7c3;
}


/* ==========================
   About Page
========================== */

.about-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 0px 25px 40px; /* إلغاء الفراغ العلوي تماماً */
}

/* تم حذف القوس الزائد بنجاح */

.about-intro {
    text-align: center;
    margin-top: -30px;    /* سحب الشعار للأعلى ليقترب جداً من القائمة */
    margin-bottom: -40px; /* سحب المحتوى السفلي للأعلى ليقترب من الشعار */
    padding: 0;
}

.about-icon {
    width: 180px;         /* حجم مثالي ومتناسق جداً على الجوال */
    max-width: 75%;
    height: auto;
    display: block;
    margin: 0 auto;       /* إلغاء أي هوامش إضافية */
}

.about-page section {
    padding: 5px 0;       /* تقليل الفراغات بين جميع أقسام الصفحة */
}

.about-section:first-of-type {
    padding-top: 0;
    border-top: none;
}



.about-section h2{
    color:#65b7c3;
    font-size:32px;
    font-weight:800;
    margin-bottom:18px;
    margin-top:0;
    text-align:right;
}

.about-section p{
    color:#555;
    font-size:18px;
    line-height:2;
    text-align:right;
}

.about-section .quality-list{
    text-align:right;
}

.quality-note{
    margin-top:30px;
    text-align:right;
}

@media (max-width:768px){

    .about-page{
        padding:25px 20px 60px;
    }

    .about-icon{
        width:260px;
    }

    .about-intro h1{
        font-size:38px;
    }

    .about-intro p{
        font-size:18px;
    }

    .about-section h2{
        font-size:26px;
    }

    .about-section p{
        font-size:17px;
    }

}
#services .program-title{
    font-size:22px;
}

#services .section-text{
    font-size:14px;
}

#services .current-program{
    padding:20px;
}

#services .current-program h2{
    font-size:24px;
    color:#2f8ea1;
}


#services .current-program h3,
#services .current-program p{
    font-size:14px;
}

#services .offer-box{
    padding:20px;
}

#services .offer-box h3{
    font-size:18px;
}

#services .offer-box p{
    font-size:14px;
}

#services .offer-box .special-price{
    font-size:26px;
}

#services .vip-offer{
    font-size:14px;
}

#services h2{
    font-size:20px;
}

#services .button{
    font-size:14px;
    padding:12px 28px;
}

#services .card h3{
    font-size:16px;
}

#services .card p{
    font-size:13px;
}

#services .card{
    padding:16px;
}
.services-hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    padding:20px 15px 10px;
    flex-wrap:wrap;
}

.services-hero-text{
    flex:1;
    min-width:220px;
}

.services-hero-text h2{
    font-size:20px;
    color:#2f8ea1;
    line-height:1.5;
    margin-bottom:10px;
    font-weight:800;
}

.services-hero-text p{
    font-size:13.5px;
    color:#666;
    line-height:1.8;
}

.services-hero{
    padding:20px 0 10px;
}


.services-hero-art{
    width:112vw;
    max-width:112vw;
    position:relative;
    left:50%;
    right:50%;
    margin-left:-56vw;
    margin-right:-56vw;
    overflow:hidden;
}


.services-hero-art img{
    width:100%;
    height:auto;
    display:block;
}



.services-hero-art svg{
    width:100%;
    height:auto;
    display:block;
}



/* ==========================
   Footer Pages
========================== */

.footer-links{
    width:100%;
    padding:0 20px;
    margin:0 0 40px;
    display:flex;
    flex-direction:column;
    align-items:flex-end;
}

.footer-links a{
    display:block;
    width:100%;
    text-align:right;
    color:#555;
    text-decoration:none;
    font-size:10px;
    font-weight:600;
    border-bottom:1px solid #d8eaf0;
    padding:6px 0;
    transition:.3s;
}

.footer-links a:hover{
    color:#65b7c3;
    border-color:#65b7c3;
}

/* ==========================
   Policy Pages
========================== */

.policy-page{
    max-width:900px;
    margin:50px auto;
    padding:0 20px;
}

.policy-card{
    background:#fff;
    border:2px solid #d9edf5;
    border-radius:22px;
    padding:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.policy-card h1{
    color:#65b7c3;
    font-size:34px;
    margin-bottom:10px;
    text-align:right;
}

.policy-update{
    color:#888;
    font-size:15px;
    margin-bottom:25px;
    text-align:right;
}

.policy-card h2{
    color:#333;
    font-size:24px;
    margin:30px 0 15px;
    text-align:right;
}

.policy-card p{
    color:#555;
    font-size:18px;
    line-height:2;
    text-align:right;
}

.policy-card ul{
    margin:15px 25px;
}

.policy-card li{
    color:#555;
    font-size:18px;
    line-height:2;
    margin-bottom:10px;
}

.back-home{
    display:inline-block;
    margin-top:35px;
    background:#65b7c3;
    color:#fff;
    text-decoration:none;
    padding:14px 30px;
    border-radius:14px;
    font-weight:700;
    transition:.3s;
}

.back-home:hover{
    background:#4a9ea9;
}

@media(max-width:768px){

.policy-page{
    margin:30px auto;
}

.policy-card{
    padding:22px;
}

.policy-card h1{
    font-size:28px;
}

.policy-card h2{
    font-size:22px;
}

.policy-card p,
.policy-card li{
    font-size:17px;
}

.back-home{
    width:100%;
    text-align:center;
}

}

/* ==========================
   Booking Hero
========================== */

.booking-hero{
    text-align:center;
    margin-bottom:30px;
}

.booking-hero h2{
    font-size:26px;
    font-weight:800;
    color:#2f8ea1;
    margin-bottom:8px;
}

.booking-hero .subtitle{
    font-size:15px;
    color:#777;
}

/* ==========================
   Service Tabs
========================== */

.service-tabs{
    display:flex;
    gap:10px;
    max-width:560px;
    margin:0 auto 35px;
    flex-wrap:wrap;
    justify-content:center;
}

.tab-btn{
    flex:1;
    min-width:100px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:6px;
    padding:14px 8px;
    border:1.5px solid #d9edf5;
    border-radius:16px;
    background:#f7fbfd;
    color:#555;
    font-family:'Cairo',sans-serif;
    font-weight:700;
    font-size:12.5px;
    cursor:pointer;
    transition:.25s ease;
}

.tab-btn i{
    font-size:19px;
    color:#65b7c3;
    transition:.25s ease;
}

.tab-btn:hover{
    transform:translateY(-2px);
    border-color:#65b7c3;
}

.tab-btn.active{
    background:#65b7c3;
    border-color:#65b7c3;
    color:#fff;
}

.tab-btn.active i{
    color:#fff;
}

/* ==========================
   Service Panel / Forms
========================== */

.service-panel{
    max-width:550px;
    margin:0 auto;
}

.booking-program-title{
    font-size:20px;
    font-weight:800;
    line-height:1.5;
    text-align:center;
    color:#333;
    margin-bottom:20px;
}

#bookingForm,
#captainForm{
    display:flex;
    flex-direction:column;
    gap:14px;
    width:100%;
}

#bookingForm label,
#captainForm label{
    font-size:13px;
    font-weight:700;
    color:#3a939f;
    margin-top:2px;
}

#bookingForm input,
#bookingForm select,
#captainForm input{
    width:100%;
    padding:14px 16px;
    font-size:14px;
    border:1.5px solid #e2eef2;
    border-radius:12px;
    background:#fbfeff;
    font-family:'Cairo',sans-serif;
    color:#333;
    transition:.2s ease;
}

#bookingForm input:focus,
#bookingForm select:focus,
#captainForm input:focus{
    outline:none;
    border-color:#65b7c3;
    box-shadow:0 0 0 3px rgba(101,183,195,.15);
}

#bookingForm button,
#captainForm button{
    padding:15px;
    font-size:15px;
    font-weight:700;
    background:#65b7c3;
    color:#fff;
    border:none;
    border-radius:12px;
    cursor:pointer;
    transition:.2s ease;
}

#bookingForm button:hover,
#captainForm button:hover{
    background:#4a9ea9;
    transform:translateY(-1px);
}

#bookingForm button:active,
#captainForm button:active{
    transform:scale(.97);
}

@media (max-width:480px){
    .tab-btn span{
        font-size:11.5px;
    }
    .tab-btn i{
        font-size:17px;
    }
}

/* ==========================
   Stepper
========================== */

.stepper{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    margin:30px auto 25px;
}

.step-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:6px;
}

.step-circle{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#e2eef2;
    color:#888;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    font-size:15px;
    transition:.25s ease;
}

.step-circle.active,
.step-circle.done{
    background:#65b7c3;
    color:#fff;
}

.step-item span{
    font-size:11.5px;
    color:#666;
    font-weight:700;
}

.step-line{
    width:40px;
    height:3px;
    background:#e2eef2;
    border-radius:2px;
    margin-bottom:20px;
}

.step-line.active{
    background:#65b7c3;
}

/* ==========================
   Form Steps
========================== */

.form-step{
    display:none;
    flex-direction:column;
    gap:14px;
}

.form-step.active{
    display:flex;
}

.step-title{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:16px;
    color:#333;
    margin-bottom:4px;
}

.step-title i{
    color:#65b7c3;
}

.input-icon{
    position:relative;
}

.input-icon input{
    width:100%;
    padding:14px 44px 14px 16px;
    border:1.5px solid #e2eef2;
    border-radius:12px;
    font-family:'Cairo',sans-serif;
    font-size:14px;
    background:#fbfeff;
}

.input-icon input:focus{
    outline:none;
    border-color:#65b7c3;
    box-shadow:0 0 0 3px rgba(101,183,195,.15);
}

.input-icon i{
    position:absolute;
    right:16px;
    top:50%;
    transform:translateY(-50%);
    color:#65b7c3;
    font-size:15px;
}

#bookingForm label{
    font-size:13px;
    font-weight:700;
    color:#3a939f;
}

/* ==========================
   Time Slots
========================== */

.time-slots-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
}

.time-slot-btn{
    padding:12px 6px;
    border:1.5px solid #e2eef2;
    border-radius:10px;
    background:#fbfeff;
    font-family:'Cairo',sans-serif;
    font-size:13px;
    font-weight:700;
    color:#444;
    cursor:pointer;
    transition:.2s ease;
}

.time-slot-btn.selected{
    background:#65b7c3;
    border-color:#65b7c3;
    color:#fff;
}

.time-slot-btn:disabled{
    opacity:.4;
    cursor:not-allowed;
    text-decoration:line-through;
}

/* ==========================
   Step Buttons
========================== */

.step-buttons{
    display:flex;
    gap:10px;
}

.step-buttons button{
    flex:1;
}

.back-btn{
    background:#f0f0f0 !important;
    color:#555 !important;
}

.back-btn:hover{
    background:#e2e2e2 !important;
}

.next-btn{
    background:#65b7c3;
    color:#fff;
    border:none;
    border-radius:12px;
    padding:14px;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    transition:.2s ease;
}

.next-btn:hover{
    background:#4a9ea9;
}
