*{
    box-sizing: border-box;padding: 0;margin: 0;scroll-behavior: smooth;
}
:root {
    --main-color: #C7A45D;
    --darkmain-color: #9E7C3A;
    --secondary-color: #047B48;
    --lable-color: #444444;
}

body {
  font-family: "Cairo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "slnt" 0;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}
h1 {
    font-weight: 700;
}
p {
    font-weight: 400;
    line-height: 1.6;
}
.main-color {
    color: var(--main-color);
}
.bg-main {
    background-color: var(--main-color);
}
.darkmain-color {
    color: var(--darkmain-color);
}
.secondary-color {
    color: var(--secondary-color);
}



.mt-6 {
    margin-top: 6rem !important;
}
.mt-8 {
    margin-top: 8rem !important;
}
.w-60 {
    width: 60% !important;
}

/* ========== تحسينات عامة - General Enhancements ========== */

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--main-color), var(--secondary-color));
    width: 0%;
    z-index: 1001;
    transition: width 0.1s linear;
}

/* Header Sticky Improvements */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    backdrop-filter: blur(0px);
    background: rgba(4, 123, 72, 0);
}

header.scrolled {
    backdrop-filter: blur(10px);
    background: rgba(4, 123, 72, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

header nav {
    transition: all 0.3s ease;
}

header nav a {
    position: relative;
    color: white;
    font-weight: 500;
    text-decoration: none;
    mix-blend-mode: normal;
    transition: color 0.3s ease;
}

header nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}

header nav a:hover::after {
    width: 100%;
}

/* تحسين الـ Apply Button */
.apply-now {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-style: solid;
    border-width: 1px;
    border-color: #e1e1e1;
    background-color: var(--main-color);
    color: white;
    font-weight: 600;
}

.apply-now::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.apply-now:hover::before {
    width: 300px;
    height: 300px;
}

.apply-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(199, 164, 93, 0.4);
}
main {
    min-height:55vh;
}

/* Hero Section Improvements */
main .hero .imgdiv h1 {
    animation: slideInDown 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    opacity: 0;
}

main .hero .imgdiv h2 {
    animation: slideInUp 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0.2s forwards;
    opacity: 0;
}

@keyframes slideInDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Loading Animation */
@keyframes fadeInPage {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    animation: fadeInPage 0.6s ease-out;
}

/* Smooth Transitions */
* {
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Back to Top Button Animation */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(199, 164, 93, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(199, 164, 93, 0);
    }
}

.scroll-to-top.show {
    animation: pulse 2s infinite;
}

/* Hover Effects for Cards */
.litter-border {
    transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    position: relative;
    overflow: hidden;
}

.litter-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.litter-border:hover::before {
    left: 100%;
}

.litter-border:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles */
button:focus,
a:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(199, 164, 93, 0.3);
    border-radius: 0.5rem;
}

/* Print Styles */
@media print {
    header,
    footer,
    .scroll-to-top {
        display: none;
    }
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

header .logo img {
    width: 60px;
}

header nav a, header nav .lang {
    color: white;
    font-weight: 500;
    text-decoration: none;
}

main section {  
    margin-top: 5rem;
    scroll-margin-top: 100px;
}

/* Hero - mobile-first: immersive, touch-friendly CTA */

main .hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1rem;
    margin-top: 0;
}

main .hero .imgdiv {
    width: 100%;
    min-height: 54vh;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    border-radius: 2rem;
    z-index: 0;
}

main .hero .imgdiv::before {
    content: '';
    position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.46) 60%);
    border-radius: 2rem;
}
main .hero .imgdiv > div { position: relative; z-index: 1; padding: 2rem 1rem; }
main .hero h1 { font-size: clamp(1.4rem, 5vw, 2.4rem); color: #fff; margin-bottom: .35rem; }
main .hero h2 { font-size: clamp(1rem, 3.5vw, 1.4rem); color: #fff; font-weight: 400; margin-bottom: 1rem; }
/* hero CTA */
.hero .cta { margin-top: .75rem; display: inline-flex; gap: .5rem; align-items: center; }
.hero .cta .apply-now { padding: .6rem 1.1rem; font-weight: 700; border-radius: 999px; }

@media (min-width: 768px) {
  header .logo img {width: 90px;}
  main section {margin-top: 8rem;}
  main .hero .imgdiv { min-height: 72vh; border-radius: 2rem; }
  main .hero h1 { font-size: 2.8rem; }
}


/* ========== قسم الأهداف - Goals Section ========== */
main .sec2 h1 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
}
main .sec2 p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

main .sec2 .img1 {
    background-image: url('../images/sec2-img4.jpeg');
    background-size: cover;
    background-position: center;
    height: 95%;
    border-radius: 1rem;
    border: 0.35rem solid var(--main-color);
    position: absolute;
    width: 70%;
    top: 10%;
    left: 0;
}
main .sec2 .img2 {
    background-image: url('../images/sec2-img3.jpeg');
    background-size: cover;
    background-position: center;
    height: 55%;
    border-radius: 1rem;
    border: 0.35rem solid var(--main-color);
    position: absolute;
    width: 40%;
    top: 55%;
    left: 40%;
}

.litter-border {
    border:1px solid #EFE5D1;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.16);
    border-radius: 1rem;
}


.goals h1 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.goal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #F9F4E9;
}

.goal-icon svg {
    width: 40px;
    height: 40px;
}

.goals .col-12 {
    margin-bottom: 2rem;
}
.goals h3 {
    margin-top: 1rem;
    font-size: 1.5rem;
}

.goals p {
    font-size: 1.1rem;
}
.goals .flex-column:hover {
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    transition: box-shadow 0.3s ease-in-out;
}
.goals .flex-column div:hover .goal-icon {
    background-color: var(--main-color);
    transition: background-color 0.3s ease-in-out;
}
.goals .flex-column div:hover .goal-icon svg path {
    stroke: white;
    transition: stroke 0.3s ease-in-out;
}
@media (max-width: 768px) {
    main .sec2 .img1 {
        width: 80%;
        height: 200px;
        top: 5%;
        left: 10%;
    }
    main .sec2 .img2 {
        width: 50%;
        height: 120px;
        top: 50px;
        left: 10%;
    }
}

@media (min-width: 768px) {
    .mt-md-8 {
        margin-top: 8rem !important;
    }
    main section {  
    scroll-margin-top: 130px;
}

}


/* ========== قسم الشركاء - Partners Section ========== */

.sec4 {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-header h1 span {
    margin-left: 1rem;
    color: var(--secondary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    font-weight: 400;
}

/* Partners Carousel Styling */
.partners-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partners-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.partners-track {
    display: flex;
    gap: 3rem;
    padding: 2rem 0;
    will-change: transform;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-infinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-1 * var(--scroll-width)));
    }
}

.partner-item {
    flex: 0 0 auto;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-wrapper {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.partner-logo-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.partner-logo-wrapper:hover::before {
    left: 100%;
}

.partner-logo-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(199, 164, 93, 0.2);
    border-color: var(--main-color);
}

.partner-logo {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(100%);
}

.partner-logo-wrapper:hover .partner-logo {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Responsive Design */
@media (max-width: 992px) {
    .sec4 {
        padding: 4rem 0;
    }
    
    .section-header h1 {
        font-size: 2rem;
    }
    
    .partner-item {
        min-width: 180px;
    }
    
    .partner-logo-wrapper {
        height: 100px;
    }
    
    .partners-track {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .sec4 {
        padding: 3rem 0;
    }
    
    .section-header h1 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .partner-item {
        min-width: 150px;
    }
    
    .partner-logo-wrapper {
        height: 90px;
        padding: 1rem;
    }
    
    .partners-track {
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .sec4 {
        padding: 2.5rem 0;
    }
    
    .section-header h1 {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .partner-item {
        min-width: 130px;
    }
    
    .partner-logo-wrapper {
        height: 80px;
        padding: 0.8rem;
        border-radius: 0.8rem;
    }
    
    .partners-track {
        gap: 1rem;
    }
}


/* ========== قسم الفنادق - Hotels Section ========== */


/* التبويبات */
.tabs-container {
    margin-bottom: 3rem;
}

.tabs-wrapper {
    display: inline-flex;
    gap: 1rem;
    background: #ffffff;
    border-radius: 2rem;
    padding: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tab-btn {
    padding: 0.8rem 2.5rem;
    border: none;
    background: transparent;
    color: #9E7C3A;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn:hover {
    background: rgba(199, 164, 93, 0.1);
}

.tab-btn.active {
    background: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(4, 123, 72, 0.3);
}

/* محتوى التبويبات */
.hotels-content {
    position: relative;
}

.tab-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.tab-content.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* بطاقات الفندق */
.hotel-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    transform: translateY(0);
}

.hotel-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 35px rgba(199, 164, 93, 0.25);
}

.hotel-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1), transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.hotel-card:hover::after {
    transform: translateX(100%);
}

.hotel-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 450px;
}

.hotel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hotel-card:hover .hotel-image {
    transform: scale(1.08);
}

.hotel-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    padding: 0.5rem 0.8rem;
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hotel-rating .star {
    font-size: 1.2rem;
}
.hotel-rating .star svg {
    vertical-align: sub;
}

.hotel-rating .rating-number {
    font-weight: 600;
    color: var(--darkmain-color);
    font-size: 0.9rem;
}

.hotel-details {
    padding: 2rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.hotel-name {
    font-size: 1.3rem;
    color: var(--darkmain-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hotel-distance {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.hotel-distance:last-of-type {
    margin-bottom: 0.8rem;
}

.hotel-price {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.2rem;
}


.room-type-label {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0rem;
}

.room-types {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 0rem;
}
.hotel-room-types.season span.have{
    background-color: rgba(58,167,109,0.2);
    color: #3AA76D;
 }
.hotel-room-types.season span.havenot{
    background-color: rgba(200,78,78,0.2);
    color: #C84E4E;
 }
.hotel-amenities {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin: 0;
}

.amenity {
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s ease;
    margin-bottom: 0.5rem;
}

.amenity:hover {
    transform: scale(1.2);
}

.btn-book {
    padding: 0.9rem 2rem;
    background: var(--main-color);
    color: white;
    border: none;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    width: 100%;
    text-decoration: none;
    text-align: center;
}

.btn-book:hover {
    background: var(--darkmain-color);
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(199, 164, 93, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .sec-hotels {
        padding: 3rem 0;
    }
    
    .tabs-wrapper {
        gap: 0.5rem;
    }
    
    .tab-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hotel-image-wrapper {
        height: 200px;
    }
    
    .hotel-details {
        padding: 1.5rem;
    }
    
    .hotel-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .sec-hotels {
        padding: 2rem 0;
    }
    
    .tabs-wrapper {
        width: 100%;
        gap: 0.3rem;
    }
    
    .tab-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        flex: 1;
    }
    
    .hotel-image-wrapper {
        height: 250px;
    }
    
    .hotel-details {
        padding: 1rem;
    }
    
    .hotel-name {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
}


.sec6 h1 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
}
.sec6 p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}
.double-border {
    border: 2px solid var(--main-color);
    box-shadow: 0 0 10px rgba(199, 164, 93, 0.2);
    border-radius:50%;
    padding: 0.5rem;
    position: relative;
}
.double-border::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    width: calc(100% - 1px);
    height: calc(100% - 1px);
    border: 6px solid #F4EDDF;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(199, 164, 93, 0.2);
    pointer-events: none;
}

/* ========== قسم الأنشطة - Activities Section ========== */

.sec-activities {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%);
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-header h1 span {
    margin-right: 1rem;
    color: var(--secondary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    font-weight: 400;
}

/* السلايد الرئيسي */
.activities-slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.activities-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.activity-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.6s ease;
    top: 0;
    left: 0;
}

.activity-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    align-items: stretch;
}

.slide-image {
    position: relative;
    overflow: hidden;
    background: #000;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.activity-slide.active .slide-image img {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(4, 123, 72, 0.3) 0%, rgba(199, 164, 93, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.activity-slide.active .slide-overlay {
    opacity: 1;
}

.slide-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--main-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
    animation: slideInDown 0.6s ease;
}

@keyframes slideInDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-info {
    background: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.slide-info::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--secondary-color), var(--main-color));
    transition: height 0.6s ease;
}

.activity-slide.active .slide-info::before {
    height: 100%;
}

.activity-title {
    font-size: 1.8rem;
    color: var(--darkmain-color);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.activity-title {
    position: relative;
}

.activity-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: width 0.5s ease;
}

.activity-slide.active .activity-title::after {
    width: 100%;
}

.activity-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}


@keyframes slideInRight {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* أزرار التحكم */
.slider-controls {
    position: absolute;
    bottom: 2rem;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 20;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--main-color);
    color: var(--main-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: var(--main-color);
    color: white;
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

/* النقاط */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot:hover {
    background: var(--darkmain-color);
}

.dot.active {
    width: 32px;
    border-radius: 6px;
    background: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(4, 123, 72, 0.2);
}

/* شريط المعلومات */
.slider-info-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.info-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.info-text {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
    .sec-activities {
        padding: 3rem 0;
    }
    
    .activities-slider {
        height: 400px;
    }
    
    .slide-content {
        grid-template-columns: 1fr;
    }
    
    .slide-info {
        padding: 2rem;
    }
    
    .activity-title {
        font-size: 1.5rem;
    }
    
    .slider-info-bar {
        gap: 1rem;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .sec-activities {
        padding: 2rem 0;
    }
    
    .section-header h1 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .activities-slider {
        height: 350px;
        border-radius: 1.5rem;
    }
    
    .slide-info {
        padding: 1.5rem;
    }
    
    .activity-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .activity-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .feature {
        font-size: 0.8rem;
    }
    
    .slider-controls {
        bottom: 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .sec-activities {
        padding: 1.5rem 0;
    }
    
    .section-header h1 {
        font-size: 1.5rem;
    }
    
    .activities-slider {
        height: 300px;
        border-radius: 1rem;
    }
    
    .slide-info {
        padding: 1.2rem;
    }
    
    
    .activity-title {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .activity-description {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .slide-badge {
        top: 1rem;
        right: 1rem;
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .slider-info-bar {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-top: 2rem;
    }
}


/* ========== قسم آراء العملاء - Testimonials Section ========== */

.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 100%);
    position: relative;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    display: inline-block;
}

.section-header h1 span {
    margin-right: 1rem;
    color: var(--secondary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    font-weight: 400;
}

/* Grid للآراء */
.testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* بطاقة الرأي */
.testimonial-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--main-color));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(199, 164, 93, 0.2);
    border-color: var(--main-color);
}

/* رأس البطاقة */
.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.customer-info {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex: 1;
}

.customer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--main-color);
    transition: transform 0.3s ease;
}

.testimonial-card:hover .customer-avatar {
    transform: scale(1.1);
}

.customer-details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.customer-name {
    font-size: 1.1rem;
    color: var(--darkmain-color);
    margin: 0;
    font-weight: 700;
}

.customer-location {
    font-size: 0.85rem;
    color: #999;
    margin: 0;
}

/* التقييم */
.rating {
    display: flex;
    gap: 0.2rem;
}

.star {
    font-size: 1.2rem;
    color: #ddd;
    transition: all 0.2s ease;
}

.star.filled {
    color: #FFD700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    animation: starPop 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes starPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

/* نص الرأي */
.testimonial-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
    flex-grow: 1;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--main-color);
    opacity: 0.3;
}

/* البيانات الوصفية */
.testimonial-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-size: 0.85rem;
    color: #999;
}

.visit-date,
.visit-type {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* الإحصائيات */
.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 3rem 2rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 100%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--main-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.stat-card:hover::before {
    opacity: 0.05;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(199, 164, 93, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    animation: countUp 1s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-label {
    font-size: 1rem;
    color: var(--darkmain-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-stars {
    font-size: 1.2rem;
    color: #FFD700;
    letter-spacing: 0.2rem;
}

.stat-icon {
    font-size: 2rem;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonials-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .section-header h1 {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 2rem 0;
    }
    
    .section-header h1 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .testimonials-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .customer-avatar {
        width: 50px;
        height: 50px;
    }
    
    .customer-name {
        font-size: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .testimonials-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 1rem;
    }
}

@media (max-width: 576px) {
    .testimonials {
        padding: 1.5rem 0;
    }
    
    .section-header h1 {
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.2rem;
        border-radius: 1rem;
    }
    
    .customer-avatar {
        width: 45px;
        height: 45px;
    }
    
    .customer-name {
        font-size: 0.95rem;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
        padding-left: 1rem;
    }
    
    .testimonial-meta {
        gap: 0.5rem;
        font-size: 0.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}


.sec9 {
    background-image: url(../images/backgroundcat.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 40vh;
    width: 100%;
    z-index: 1;
}
.sec9::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    z-index: -1;
}
.sec9 h1 {
    color: white;
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
}
.sec9 p {
    color: white;
    text-align: center;
    font-size: 1.2rem;
    margin-top: 1rem;
}

@media (max-width: 576px) {
.sec9 h1 {
    font-size: 2rem;
}
.sec9 p {
    font-size: 1rem;
    margin-top: 0.8rem;
}
}



/* ========== قسم الـ Footer - Footer Section ========== */

.footer-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #035a38 100%);
    color: white;
    position: relative;
}

/* الجزء الرئيسي */
.footer-main {
    padding: 4rem 0 2rem;
}

/* شعار الشركة */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    width: 80px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-section:hover .footer-logo {
    transform: scale(1.05);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.brand-subtitle {
    font-size: 1rem;
    color: #E0E0E0;
    margin: 0;
    font-weight: 500;
}

.brand-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* الروابط الاجتماعية */
.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    cursor: pointer;
    border: 2px solid transparent;
}

.social-icon:hover {
    transform: translateY(-5px);
    border-color: white;
}

.social-icon.facebook:hover {
    background: #1877F2;
}

.social-icon.twitter:hover {
    background: #1DA1F2;
}

.social-icon.instagram:hover {
    background: #E4405F;
}

.social-icon.linkedin:hover {
    background: #0077B5;
}

.social-icon.youtube:hover {
    background: #FF0000;
}

/* أقسام القائمة */
.footer-section-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--main-color);
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

/* الروابط */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '←';
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    color: var(--main-color);
    padding-right: 0.5rem;
}

.footer-links a:hover::before {
    opacity: 1;
}

/* معلومات التواصل */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(-5px);
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-label {
    font-size: 0.85rem;
    color: #FFD700;
    font-weight: 600;
    margin: 0;
}

.contact-text a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-text a:hover {
    color: #FFD700;
}

.contact-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

/* خط الفاصل */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 2rem 0;
}

/* الجزء السفلي */
.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright,
.powered-by {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.powered-by {
    animation: glow 2s ease-in-out infinite;
}

.heart {
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
    margin: 0 0.3rem;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@keyframes glow {
    0%, 100% {
        color: rgba(255, 255, 255, 0.8);
    }
    50% {
        color: #FFD700;
    }
}

/* زر العودة للأعلى */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--main-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 100;
    box-shadow: 0 4px 15px rgba(199, 164, 93, 0.4);
}

.scroll-to-top:hover {
    background: var(--darkmain-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(199, 164, 93, 0.6);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* ===== Modern responsive header + burger menu ===== */
.header { z-index: 1100; top: 0; left: 0; right: 0; }
.navbar { gap: 1rem; align-items: center; }

/* Burger toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
  align-items: center;
  padding-left: 1rem;
}
.hamburger { display: inline-block; width: 28px; height: 20px; position: relative; }
.hamburger span { position: absolute; left: 0; right: 0; height: 2px; background: #fff; transition: transform .28s ease, opacity .28s ease; }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { bottom: 0; }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(8, 36, 20, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1099;
}
.mobile-menu-inner {
  width: min(480px, 92%);
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  position: fixed;
  top: 105%;
  color: #222;
}
.mobile-close {
  background: transparent;
  border: none;
  font-size: 2rem;
  line-height: 1;
  float: left;
  cursor: pointer;
}
.mobile-nav-list { margin-top: 1rem; padding: 0; }
.mobile-nav-list li { border-bottom: 1px solid #f0f0f0; }
.mobile-nav-list li a {
  display: block;
  padding: 0.9rem 0;
  color: #222;
  text-decoration: none;
  font-weight: 600;
}

/* Hide desktop nav on small screens */
@media (max-width: 992px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* When mobile menu is open (utility class toggled by JS) */
.mobile-menu.open { display: flex; }

/* Active hamburger (close) animation */
.nav-toggle.open .hamburger span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.open .hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open .hamburger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Improve header look when scrolled */
header.scrolled .apply-now { box-shadow: 0 6px 20px rgba(0,0,0,0.12); }

/* Ensure focus styles inside mobile menu */
.mobile-menu-inner :is(a, button) { outline-offset: 3px; }



.sg-sec2 {
    border-bottom: 3px solid #D6D6D6;
    padding-bottom: .8rem;
}


.sg-sec2 div img {
    width: 2rem;
}
.sg-sec2 div p {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--lable-color);
}


/* Company features - modern list */
.sg-sec3 .company-features { display:flex; flex-direction:column; gap:1rem; padding: 0; }
.sg-sec3 .info-item { display:flex; align-items:center; gap:1rem; justify-content:flex-end; border-radius: .8rem; padding: .6rem .8rem; transition: background .15s ease; }
.sg-sec3 .info-item:hover { background: rgba(4,123,72,0.04); }

.sg-sec3 .info-icon { width:34px; height:34px; flex:0 0 34px; filter: grayscale(20%); opacity: .95; }
.sg-sec3 .info-text { text-align:right; }
.sg-sec3 .label { font-size: .92rem; color:#4a4a4a; }
.sg-sec3 .value { font-weight:700; color:var(--secondary-color); font-size:1rem; margin-top: .12rem; }

/* badges */
.sg-sec3 .status-badge { display:inline-block; padding:.25rem .6rem; border-radius:.5rem; font-size:.85rem; background:#fdecee; color:#b33; border:1px solid rgba(0,0,0,0.03); }
.sg-sec3 .status-badge.rented { background:#fde6e6; color:#c33; }

/* responsive tweaks */
@media (max-width: 767px) {
  .sg-sec3 .info-item { gap:.75rem; padding:.5rem .6rem; }
  .sg-sec3 .info-icon { width:30px; height:30px; }
  .sg-sec3 .value { font-size:.95rem; }
  .sg-sec3 .col-md-5.d-none.d-md-block { display:none!important; } /* keep image hidden on small screens */
}

.sg-sec3 .services-section { padding: 2.5rem 1rem; background: transparent; }
.sg-sec3 .services-grid { gap: 1.25rem; padding: 0; margin: 0 auto; max-width: 1100px; }
.sg-sec3 .service-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.4rem 1.6rem;
  min-width: 120px;
  width: 160px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(199,164,93,0.08);
  transition: transform .18s ease, box-shadow .18s ease;
  border: 1px solid rgba(199,164,93,0.08);
}
.sg-sec3 .service-card:hover,
.sg-sec3 .service-card:focus { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(0,0,0,0.12); }
.sg-sec3 .service-icon { width: 36px; height: 36px; margin-bottom: .6rem; filter: none; opacity: .95; }
.sg-sec3 .service-title { color: var(--secondary-color); font-weight:700; margin-top:.25rem; font-size:1rem; }

/* RTL friendly: header aligned right -> already set with text-end above */
@media (max-width: 767px) {
  .sg-sec3 .service-card { width: 130px; height: 120px; padding: .9rem; }
  .sg-sec3 .service-icon { width: 30px; height: 30px; }
  .sg-sec3 .services-grid { gap: .75rem; }
}


.gallery-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:12px}
.thumb{display:block;border-radius:10px;overflow:hidden;box-shadow:0 8px 20px rgba(0,0,0,.08)}
.thumb img{width:100%;height:140px;object-fit:cover;transition:transform .35s}
.thumb:hover img{transform:scale(1.06)}
.gb{position:fixed;inset:0;display:none;align-items:center;justify-content:center;background:rgba(0,0,0,.85);z-index:3000;padding:2rem}
.gb.open{display:flex}
.gb-img{max-width:92%;max-height:86vh;border-radius:8px;box-shadow:0 18px 40px rgba(0,0,0,.5)}
.gb-close{position:absolute;top:18px;left:18px;border:0;background:transparent;color:#fff;font-size:28px;cursor:pointer}



/* ========== قسم سياسة الحجز -  Section ========== */
.policy-list.modern{display:grid;gap:12px;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));list-style:none;padding:0;margin:0}
.policy-list.modern li{background:#fff;padding:12px 14px;border-radius:12px;border:1px solid rgba(4,123,72,0.05);box-shadow:0 12px 30px rgba(4,123,72,0.04);color:#333}
.policy-list.modern li strong{color:var(--darkmain-color);font-weight:700}
@media (max-width:576px){.policy-list.modern{grid-template-columns:1fr}}


/* ========== قسم الأسئلة الشائعة - FAQ Section ========== */

.faq-grid {display:grid;gap:14px;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));}
.faq-item {background:#fff;border-radius:12px;padding:14px 16px;box-shadow:0 10px 30px rgba(0,0,0,0.06);border:1px solid rgba(0,0,0,0.03)}
.faq-item summary{list-style:none;cursor:pointer;font-weight:700;display:flex;justify-content:space-between;align-items:center;padding:6px 0}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:'+';font-size:20px;transition:transform .22s}
.faq-item[open] summary::after{content:'−'}
.faq-body{margin-top:8px;color:#444;line-height:1.6;font-size:0.98rem}
.faq-item:focus-within{box-shadow:0 14px 40px rgba(4,123,72,0.06);outline: none}
@media (max-width:576px){ .faq-grid{grid-template-columns:1fr} }

