/* ===== GLOBAL STYLES ===== */
:root {
    --primary-color: #0056b3;
    --secondary-color: #00a651;
    --accent-color: #ff9800;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --text-color: #4a4a4a;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #0056b3, #0077cc);
    --gradient-secondary: linear-gradient(135deg, #00a651, #00c853);
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    direction: rtl;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

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

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

.section-header {
    margin-bottom: 40px;
}

.section-header.centered {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
}

.section-header:not(.centered) .section-line {
    margin: 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    outline: none;
    font-family: 'Cairo', 'Tajawal', sans-serif;
}

.btn i {
    margin-left: 8px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 86, 179, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 12px rgba(0, 86, 179, 0.4);
    transform: translateY(-2px);
    color: white;
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 166, 81, 0.3);
}

.btn-secondary:hover {
    box-shadow: 0 6px 12px rgba(0, 166, 81, 0.4);
    transform: translateY(-2px);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1.1rem;
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    box-shadow: 0 4px 6px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
    color: white;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 86, 179, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 86, 179, 0);
    }
}

.cta-pulse {
    animation: ctaPulse 2s infinite;
}

@keyframes ctaPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 166, 81, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 166, 81, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 166, 81, 0);
    }
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    max-width: 150px;
}

.logo img {
    width: 100%;
    height: auto;
}

.main-nav ul {
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: var(--dark-color);
    font-weight: 600;
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
}

.main-nav a:hover, .main-nav a.active {
    color: var(--primary-color);
    background-color: rgba(0, 86, 179, 0.1);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--dark-color);
    border-radius: 3px;
    transition: all var(--transition-fast);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-medium);
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    width: 50%;
    padding: 0 50px;
    z-index: 2;
    position: relative;
}

.slide-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-title span {
    color: var(--accent-color);
}

.slide-description {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-cta {
    display: flex;
    gap: 15px;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background-color: white;
    transform: scale(1.2);
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-fast);
}

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

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(0, 86, 179, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-color);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 86, 179, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-color);
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius-md);
    padding: 15px;
    box-shadow: var(--box-shadow);
}

.badge-title {
    display: block;
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.badge-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ===== DETAILS SECTION ===== */
.details-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.details-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.detail-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

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

.detail-card.highlight {
    border-top: 4px solid var(--secondary-color);
}

.detail-card.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 50px 50px 0;
    border-color: transparent var(--secondary-color) transparent transparent;
    z-index: 1;
}

.detail-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(0, 86, 179, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.detail-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.detail-value {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.details-cta {
    margin-top: 50px;
    text-align: center;
}

/* ===== LOCATION SECTION ===== */
.location-section {
    padding: 80px 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.location-map {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.location-text {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.nearby-landmarks h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

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

.landmark {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
    transition: all var(--transition-fast);
}

.landmark:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.landmark-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 86, 179, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.landmark-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.landmark-text p {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

.filter-btn {
    padding: 8px 20px;
    border-radius: var(--border-radius-md);
    background-color: white;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    aspect-ratio: 4/3;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: center;
    color: white;
}

.gallery-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.gallery-info span {
    font-size: 1rem;
}

/* ===== AMENITIES SECTION ===== */
.amenities-section {
    padding: 80px 0;
}

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

.amenity-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-fast);
}

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

.amenity-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(0, 86, 179, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.amenity-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.amenity-description {
    font-size: 1rem;
    color: var(--text-color);
}

.amenities-cta {
    margin-top: 50px;
}

.cta-floating {
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--box-shadow);
    text-align: center;
    color: white;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

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

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius-md);
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.faq-question:hover {
    background-color: rgba(0, 86, 179, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(0, 86, 179, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background-color: var(--primary-color);
    color: white;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* ===== CONSULTATION SECTION ===== */
.consultation-section {
    padding: 80px 0;
}

.consultation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.consultation-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.consultation-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.consultation-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.consultation-feature i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.consultation-feature span {
    font-size: 1rem;
    font-weight: 600;
}

.consultation-contact {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-method i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 86, 179, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.contact-method span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.consultation-form-container {
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.consultation-form {
    padding: 30px;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
}

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

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

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-family: 'Cairo', 'Tajawal', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.date-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.date-option {
    position: relative;
    cursor: pointer;
}

.date-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.date-option span {
    display: block;
    padding: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-fast);
}

.date-option input:checked + span {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.select-container {
    position: relative;
}

.select-container select {
    appearance: none;
    padding-right: 30px;
}

.select-container i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-color);
}

.phone-input {
    display: flex;
    align-items: center;
}

.country-code {
    padding: 12px 15px;
    background-color: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
    border-right: none;
    font-weight: 600;
}

.phone-input input {
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.book-now {
    width: 100%;
    margin-top: 20px;
    font-size: 1.2rem;
    padding: 15px;
}

.form-footer {
    margin-top: 30px;
    text-align: center;
}

.form-footer p {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
}

/* ===== INNOVATIVE CTA SECTION ===== */
.innovative-cta-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.innovative-cta-container {
    max-width: 800px;
    margin: 0 auto;
    perspective: 1000px;
}

.cta-3d-card {
    position: relative;
    width: 100%;
    height: 400px;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.cta-3d-card.flipped {
    transform: rotateY(180deg);
}

.cta-3d-front, .cta-3d-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.cta-3d-front {
    background: linear-gradient(135deg, #0056b3, #003580);
    color: white;
}

.cta-3d-back {
    background: linear-gradient(135deg, #00a651, #007e3e);
    color: white;
    transform: rotateY(180deg);
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.cta-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cta-highlight i {
    font-size: 2rem;
}

.cta-highlight span {
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-contact-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.cta-contact-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    transition: transform var(--transition-fast);
}

.cta-contact-option:hover {
    transform: scale(1.1);
    color: white;
}

.cta-contact-option i {
    font-size: 2rem;
}

.cta-contact-option span {
    font-size: 1.1rem;
    font-weight: 600;
}

/* ===== FIXED CTA ===== */
.fixed-cta {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-color);
    color: white;
}

.footer-top {
    padding: 80px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    margin-bottom: 20px;
    max-width: 150px;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-menu a:hover {
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
    font-family: 'Cairo', 'Tajawal', sans-serif;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 12px 20px;
    border: none;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.newsletter-form button:hover {
    background-color: #004494;
}

.footer-bottom {
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .stats-grid, .details-cards, .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-section {
        height: 70vh;
    }
    
    .slide-content {
        width: 70%;
    }
    
    .about-grid, .location-content, .consultation-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .slide-content {
        width: 100%;
        padding: 0 30px;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-description {
        font-size: 1.2rem;
    }
    
    .stats-grid, .details-cards, .amenities-grid, .about-features, .landmarks-grid, .consultation-features {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .date-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-highlights, .cta-contact-options {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slide-cta {
        flex-direction: column;
        gap: 10px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2, .cta-floating .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-content p, .cta-floating .cta-content p {
        font-size: 1rem;
    }
}
