/* Global Styles */
:root {
    --primary-color: #1a365d; /* أزرق داكن محسن */
    --secondary-color: #2d5a87; /* أزرق متوسط أنيق */
    --accent-color: #f6ad55; /* ذهبي دافئ */
    --light-color: #1e2d3d; /* أزرق داكن للخلفيات */
    --dark-color: #0f1419; /* أزرق داكن جداً */
    --text-color: #ffffff; /* أبيض للنصوص */
    --text-light: #e2e8f0; /* رمادي فاتح للنصوص الثانوية */
    --success-color: #48bb78; /* أخضر للنجاح */
    --warning-color: #ed8936; /* برتقالي للتحذيرات */
    --error-color: #f56565; /* أحمر للأخطاء */
    --white: #ffffff;
    --black: #000000;
    --shadow: 0 10px 25px rgba(26, 54, 93, 0.15);
    --shadow-hover: 0 15px 35px rgba(26, 54, 93, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    --gradient-accent: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    background: var(--dark-color);
}

body {
    font-family: 'Tajawal', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(to bottom, #1a365d 0%, #2d5a87 70%, #0f1419 100%);
    background-attachment: fixed;
    direction: rtl;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: var(--dark-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    color: var(--white);
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gradient-accent);
    margin: 20px auto;
    border-radius: 2px;
}

.highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

/* Header Styles */
header {
    background: rgba(26, 54, 93, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0 15px;
    height: 70px;
    display: flex;
    align-items: center;
    overflow: visible;
    border-bottom: 2px solid var(--accent-color);
}

header .container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 12px;
    position: relative;
}

.logo .logo-img {
    height: 48px;
    width: auto;
    position: static;
    top: unset;
    left: unset;
    transform: none;
    z-index: 10;
    pointer-events: none;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    font-family: 'Tajawal', Arial, sans-serif;
    white-space: nowrap;
    margin-right: 8px;
}

nav, nav ul, .mobile-menu.active, nav.active {
    background: rgba(26, 54, 93, 0.95) !important;
    backdrop-filter: blur(10px);
}

nav ul li a {
    color: var(--text-light) !important;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: 6px;
    position: relative;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-right: 8px;
}

nav ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-accent);
    transition: var(--transition);
    border-radius: 2px;
}

nav ul li a:hover::before,
nav ul li a.active::before {
    width: 100%;
    right: 0;
}

nav ul li a:hover {
    background: rgba(246, 173, 85, 0.1);
    color: var(--accent-color) !important;
}

nav ul li a.active {
    color: var(--accent-color) !important;
    background: rgba(246, 173, 85, 0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.8) 0%, rgba(45, 90, 135, 0.8) 100%), url('images/صورة الواجهة.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(26, 54, 93, 0.3) 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 52px;
    margin-bottom: 24px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 22px;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero .btn,
.features .btn,
.chalets-preview .btn,
.ctas .btn {
    background: var(--gradient-accent) !important;
    color: var(--white) !important;
    border: 2px solid transparent !important;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    transition: var(--transition);
}

.hero .btn:hover,
.features .btn:hover,
.chalets-preview .btn:hover,
.ctas .btn:hover {
    background: var(--white) !important;
    color: var(--primary-color) !important;
    border-color: var(--accent-color) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.feature-item {
    text-align: center;
    padding: 40px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--secondary-color);
    border: 1px solid rgba(246, 173, 85, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(246, 173, 85, 0.1), transparent);
    transition: var(--transition);
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.feature-item i {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 25px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.feature-item h3 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: 22px;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.features .section-title {
    color: var(--white);
}

.features .section-title::after {
    background: var(--gradient-accent);
}

/* Chalets Preview Section */
.chalets-preview {
    padding: 100px 0;
    background: var(--light-color);
}

.chalets-preview .section-title {
    color: var(--white);
}

.chalets-preview .section-title::after {
    background: var(--gradient-accent);
}

.chalets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.chalet-item {
    background: var(--secondary-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(246, 173, 85, 0.2);
}

.chalet-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.chalet-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.chalet-item:hover img {
    transform: scale(1.05);
}

.chalet-item h3 {
    padding: 20px 25px 0;
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
}

.chalet-item p {
    padding: 12px 25px;
    color: var(--text-light);
    line-height: 1.6;
}

.chalet-item .btn {
    margin: 18px 25px 25px;
    display: inline-block;
}

.chalet-item.combined {
    border: 2px solid var(--accent-color);
    position: relative;
    box-shadow: 0 15px 35px rgba(246, 173, 85, 0.2);
}

.chalet-item.combined::before {
    content: 'الأكثر طلباً';
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow);
    z-index: 2;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--primary-color);
    color: var(--white);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-title::after {
    background: var(--gradient-accent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.testimonial-item {
    background: rgba(45, 90, 135, 0.3);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 12px;
    position: relative;
    border: 1px solid rgba(246, 173, 85, 0.2);
    transition: var(--transition);
}

.testimonial-item:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-hover);
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 60px;
    color: var(--accent-color);
    font-weight: bold;
}

.testimonial-item .quote {
    font-style: italic;
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.7;
}

.testimonial-item .author {
    font-weight: 600;
    text-align: left;
    color: var(--accent-color);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    text-align: center;
    background: var(--light-color);
    color: var(--white);
}

.cta h2 {
    font-size: 40px;
    margin-bottom: 25px;
    font-weight: 700;
}

.cta p {
    font-size: 22px;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Footer Styles */
footer {
    margin-top: auto;
    width: 100%;
    background: var(--dark-color);
    color: var(--white);
    padding: 40px 0 0 0;
    border-top: 3px solid var(--accent-color);
    box-shadow: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    margin-bottom: 25px;
    font-size: 22px;
    position: relative;
    padding-bottom: 12px;
    color: var(--accent-color);
    font-weight: 600;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.footer-col p {
    margin-bottom: 18px;
    color: var(--text-light);
    line-height: 1.6;
}

.footer-col ul li {
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-col ul li:hover {
    color: var(--accent-color);
    transform: translateX(-5px);
}

.footer-col ul li i {
    margin-left: 12px;
    color: var(--accent-color);
    width: 20px;
}

.copyright {
    background: var(--dark-color);
    margin: 0;
    padding: 18px 0 0 0;
    border-top: 1px solid rgba(246, 173, 85, 0.2);
    color: var(--text-light);
    font-size: 14px;
    text-align: center;
}

.copyright-text {
    display: block;
    text-align: center;
    color: var(--text-light);
    font-size: 15px;
    padding: 0;
    letter-spacing: 0.5px;
    font-family: 'Tajawal', Arial, sans-serif;
    direction: rtl;
    margin: 0;
}

/* Page Header */
.page-header {
    padding: 140px 0 80px;
    text-align: center;
    background: var(--gradient-primary);
    margin-top: 70px;
}

.page-header h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

/* Chalet Details Page */
.chalet-details {
    padding: 40px 0;
    background: var(--primary-color);
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.detail-row.reverse {
    flex-direction: row-reverse;
}

.detail-img {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.detail-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.detail-img:hover img {
    transform: scale(1.02);
}

.detail-text {
    flex: 1;
}

.detail-text h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 700;
}

.detail-text p {
    margin-bottom: 18px;
    line-height: 1.7;
    color: var(--text-light);
}

.detail-text ul {
    margin-bottom: 25px;
}

.detail-text ul li {
    margin-bottom: 12px;
    position: relative;
    padding-right: 25px;
    color: var(--text-light);
}

.detail-text ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    color: var(--success-color);
}

.combined-details .detail-text {
    position: relative;
}

.combined-details .detail-text .highlight {
    background: rgba(246, 173, 85, 0.2);
    padding: 15px;
    border-right: 4px solid var(--accent-color);
    display: inline-block;
    margin-top: 20px;
    border-radius: 6px;
}

.detail-text .btn {
    display: block;
    margin: 50px auto -30% auto;
    text-align: center;
}

#chalet-combined {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

#chalet-combined .detail-row {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Amenities Section */
.amenities {
    background: var(--primary-color) !important;
    padding: 80px 0;
}

.amenities .section-title {
    color: var(--white) !important;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.amenity-item {
    background: var(--secondary-color);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 35px 20px 25px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
    border: 1px solid rgba(246, 173, 85, 0.2);
    position: relative;
    overflow: hidden;
}

.amenity-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(246, 173, 85, 0.1), transparent);
    transition: var(--transition);
}

.amenity-item:hover::before {
    left: 100%;
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.amenity-item i {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--accent-color);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.amenity-item p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 0;
    font-weight: 500;
}

/* Location Section */
.location {
    padding: 80px 0;
    background: var(--light-color);
}

.location-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.map {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.map iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.location-text {
    flex: 1;
}

.location-text h3 {
    font-size: 28px;
    color: var(--white) !important;
    margin-bottom: 25px;
    font-weight: 600;
}

.location-text ul li {
    margin-bottom: 12px;
    position: relative;
    padding-right: 25px;
    color: var(--text-light);
}

.location-text ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    color: var(--success-color);
}

/* Booking Page */
.booking-options {
    padding: 80px 0;
    background: var(--primary-color);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.option-item {
    background: var(--secondary-color);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.option-item.selected {
    border-color: var(--accent-color);
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
}

.option-item.highlight {
    position: relative;
    border: 2px solid var(--accent-color);
    box-shadow: 0 15px 35px rgba(246, 173, 85, 0.2);
}

.option-item.highlight::before {
    content: 'موصى به';
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.option-item h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
}

.option-item p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
}

.price span {
    font-size: 16px;
    font-weight: normal;
    color: var(--text-light);
}

.discount {
    color: var(--success-color);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 16px;
}

/* Booking Form */
.booking-form-section {
    padding: 80px 0;
    background: var(--light-color);
}

.booking-form {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(246, 173, 85, 0.2);
}

.form-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 700;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
    background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(246, 173, 85, 0.1);
}

.form-row {
    display: flex;
    gap: 25px;
}

.form-row .form-group {
    flex: 1;
}

.terms {
    display: flex;
    align-items: center;
}

.terms input {
    width: auto;
    margin-left: 12px;
}

.terms label {
    margin-bottom: 0;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    font-size: 20px;
    margin-top: 25px;
    font-weight: 600;
}

.thank-you-message {
    text-align: center;
    padding: 50px;
    display: none;
}

.thank-you-message i {
    font-size: 70px;
    color: var(--success-color);
    margin-bottom: 25px;
}

.thank-you-message h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.thank-you-message p {
    margin-bottom: 18px;
    font-size: 20px;
    color: var(--primary-color);
}

/* Booking Info */
.booking-info {
    padding: 80px 0;
    background: var(--light-color);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.info-item {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid rgba(6, 11, 71, 0.288);
    transition: var(--transition);
}

.info-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.info-item i {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 25px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.info-item h3 {
    margin-bottom: 18px;
    color: var(--primary-color);
    text-align: right;
    font-size: 20px;
    font-weight: 600;
}

.info-item p {
    margin-bottom: 18px;
    color: var(--white);
    text-align: right;
    line-height: 1.6;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
    background: var(--primary-color);
}

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

.contact-info {
    padding: 40px;
    background: var(--secondary-color);
    border-radius: 12px;
    border: 1px solid rgba(246, 173, 85, 0.2);
}

.contact-info h2 {
    margin-bottom: 35px;
    color: var(--white) !important;
    font-size: 32px;
    text-align: center;
    font-weight: 700;
}

.info-item {
    display: flex;
    margin-bottom: 35px;
    background: rgba(246, 173, 85, 0.1);
    border-radius: 10px;
    padding: 20px 18px;
    border: 1px solid rgba(246, 173, 85, 0.2);
    transition: var(--transition);
}

.info-item:hover {
    border-color: var(--accent-color);
    background: rgba(246, 173, 85, 0.15);
}

.info-item i {
    font-size: 28px;
    color: var(--accent-color);
    margin-left: 18px;
    margin-top: 5px;
}

.social-links {
    margin-top: 50px;
}

.social-links h3 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--white) !important;
    font-size: 24px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-hover);
}

.contact-form {
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(246, 173, 85, 0.2);
}

.contact-form h2 {
    margin-bottom: 35px;
    color: var(--primary-color);
    font-size: 32px;
    text-align: center;
    font-weight: 700;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--light-color);
}

.faq-item {
    margin-bottom: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(246, 173, 85, 0.2);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent-color);
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(246, 173, 85, 0.05) 0%, rgba(246, 173, 85, 0.1) 100%);
}

.faq-question h3 {
    color: var(--primary-color);
    font-weight: 600;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--primary-color) !important;
    background: var(--white);
    font-weight: bold;
}

.faq-answer.active {
    padding: 0 25px 25px;
    max-height: 500px;
}

.faq-section .section-title {
    color: var(--white) !important;
}

.faq-section .faq-question i {
    color: #111 !important;
}

/* Gallery Page */
.gallery-section {
    padding: 80px 0;
    background: var(--primary-color);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.gallery-filter .filter-btn {
    background: var(--gradient-accent) !important;
    color: var(--white) !important;
    border: 2px solid transparent !important;
    border-radius: 25px !important;
    padding: 14px 28px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin: 0 5px;
    outline: none;
}

.gallery-filter .filter-btn:hover {
    background: var(--white) !important;
    color: var(--primary-color) !important;
    border-color: var(--accent-color) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.gallery-filter .filter-btn.active {
    background: var(--white) !important;
    color: var(--primary-color) !important;
    border-color: var(--accent-color) !important;
    box-shadow: var(--shadow-hover);
    transform: scale(1.05);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(to top, rgba(26, 54, 93, 0.9), transparent);
    color: var(--white);
    padding: 25px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

.overlay h3 {
    margin-bottom: 8px;
    font-weight: 600;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    padding: 50px;
}

.lightbox-content {
    max-width: 85%;
    max-height: 85%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--white);
    font-size: 45px;
    cursor: pointer;
    transition: var(--transition);
}

.close-btn:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.prev, .next {
    position: absolute;
    top: 50%;
    color: var(--white);
    font-size: 45px;
    cursor: pointer;
    padding: 15px;
    transform: translateY(-50%);
    transition: var(--transition);
    background: rgba(26, 54, 93, 0.7);
    border-radius: 50%;
}

.prev:hover, .next:hover {
    color: var(--accent-color);
    background: rgba(26, 54, 93, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

/* Video Tour */
.video-tour {
    padding: 80px 0;
    background: var(--light-color);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    border: 3px solid var(--accent-color);
}

.video-container iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .detail-row,
    .location-content {
        flex-direction: column;
    }
    
    .detail-img,
    .detail-text,
    .map,
    .location-text {
        width: 100%;
    }
    
    .detail-text {
        margin-top: 40px;
    }
    
    .hero h2 {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
        color: var(--accent-color);
        font-size: 24px;
    }
    nav {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: rgba(26, 54, 93, 0.95);
        backdrop-filter: blur(10px);
        padding: 25px;
        box-shadow: var(--shadow-hover);
        border-radius: 0 0 12px 12px;
    }
    nav.active {
        display: block;
    }
    nav ul {
        flex-direction: column;
    }
    nav ul li {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .hero h2 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .amenities-grid,
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    nav {
        display: block !important;
        position: static;
        background: none;
        padding: 0;
        box-shadow: none;
        border-radius: 0;
    }
    nav ul {
        flex-direction: row;
    }
    .mobile-menu {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .lightbox {
        padding: 20px;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .amenities-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .logo-text {
        font-size: 20px;
        margin-right: 4px;
    }
    
    .logo .logo-img {
        height: 36px;
    }
    
    header .container {
        height: 60px;
    }
    
    .mobile-menu {
        font-size: 22px;
    }
    
    .logo {
        gap: 8px;
    }
}

/* Enhanced Logo Styles */
.logo {
    width: 120px;
    height: 70px;
    position: relative;
}

.logo .logo-img {
    height: 180px;
    width: auto;
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

/* Enhanced Navbar */
.navbar {
    height: 90px;
    padding: 15px 25px;
}

.navbar img {
    height: 70px;
}

/* Enhanced Video Styles */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border-radius: 12px;
}

.play-button {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpolygon points='22,20 47,32 22,44' fill='%23fff'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%;
    transition: var(--transition);
    z-index: 11;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.play-button:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-hover);
}

.video-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    display: none;
    border-radius: 12px;
}

/* Enhanced Terms Section */
.terms-section, .terms-container, .terms-content {
    display: block !important;
    width: 100% !important;
    max-width: 700px;
    margin: 0 auto;
    background: none !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.terms-list {
    display: block !important;
    width: 100% !important;
    background: none !important;
    color: #fff !important;
    font-size: 1.08em;
    line-height: 2.1;
    text-align: right;
    padding: 0 10px 0 0;
    margin: 0;
}

.terms-list li {
    display: list-item !important;
    list-style: none !important;
    position: relative;
    padding-right: 32px;
    margin-bottom: 16px;
    color: #fff !important;
    background: none !important;
}

.terms-list li::before {
    content: '\2022';
    position: absolute;
    right: 0;
    top: 0.2em;
    color: #d8ca78;
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1;
    background: none !important;
}

/* Enhanced Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.features-list li {
    display: flex;
    align-items: center;
    font-size: 1.1em;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    padding: 10px 14px;
    color: var(--primary-color);
    font-weight: 500;
    box-shadow: 0 1px 6px rgba(20,33,61,0.04);
}

.features-list li i {
    font-size: 1.5em;
    margin-left: 12px;
    color: #d8ca78;
    min-width: 32px;
    text-align: center;
}

.features-list h1 {
    font-size: 1.15em;
    color: #d8ca78 !important;
    font-weight: bold;
    margin: 18px 0 8px 0;
    background: none !important;
    padding: 0;
    text-align: right;
    letter-spacing: 0.5px;
    display: block !important;
}

/* Enhanced CTA Section */
.ctas {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(45, 90, 135, 0.85) 100%), url('images/صورة الواجهة.jpg') no-repeat center center/cover;
    color: var(--white);
    position: relative;
}

.ctas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(26, 54, 93, 0.4) 100%);
}

.ctas .container {
    position: relative;
    z-index: 2;
}

.ctas h2 {
    font-size: 44px;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.ctas p {
    font-size: 22px;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Enhanced Why Choose Section */
.why-choose {
    background: var(--primary-color) !important;
    padding: 80px 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.feature-card {
    background: var(--secondary-color);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 35px 20px 25px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
    border: 1px solid rgba(246, 173, 85, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(246, 173, 85, 0.1), transparent);
    transition: var(--transition);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.feature-card i {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--accent-color);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.feature-card div {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 0;
    font-weight: 500;
}

/* Enhanced Button Styles */
.btn, .btn-outline, .btn-primary, .btn-large, .btn-vip {
    background: var(--gradient-accent) !important;
    color: var(--white) !important;
    border: 2px solid transparent !important;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn:hover, .btn-outline:hover, .btn-primary:hover, .btn-large:hover, .btn-vip:hover {
    background: var(--white) !important;
    color: var(--primary-color) !important;
    border-color: var(--accent-color) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Enhanced Form Styles */
input, textarea, select {
    background: var(--white) !important;
    color: var(--primary-color) !important;
    border: 2px solid #e2e8f0 !important;
    transition: var(--transition);
}

input:focus, textarea:focus, select:focus {
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 0 3px rgba(246, 173, 85, 0.1) !important;
}

::placeholder {
    color: #a0aec0 !important;
}

/* حل نهائي لاستجابة زر الحجز في صفحة الشاليهات */
section.chalet-details a.btn {
    width: 100%;
    max-width: 420px;
    display: block;
    margin: 32px auto 0 auto !important;
    font-size: 1.2em;
    box-sizing: border-box;
}

@media (min-width: 992px) {
    section.chalet-details .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    section.chalet-details .detail-row {
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
    }
    section.chalet-details .detail-text {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }
}

.terms-title {
  text-align: center !important;
  font-weight: bold;
  font-size: 1.5em;
  color: #fff !important;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

