/* CSS Custom Properties for Luxury Theme */
:root {
    --color-ivory: #FAF9F7;
    --color-ivory-dark: #F0EDE8;
    --color-gold: #C8A46B;
    --color-gold-hover: #B38E55;
    --color-gold-light: rgba(200, 164, 107, 0.15);
    --color-charcoal: #1F1F1F;
    --color-charcoal-light: #2A2A2A;
    --color-charcoal-muted: #4F4F4F;
    --color-white: #FFFFFF;
    --font-arabic: 'IBM Plex Sans Arabic', sans-serif;
    --font-english: 'Cormorant Garamond', 'Inter', serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-luxury: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-luxury-hover: 0 20px 40px rgba(200, 164, 107, 0.1);
    --border-luxury: 1px solid rgba(200, 164, 107, 0.2);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-arabic);
    background-color: var(--color-ivory);
    color: var(--color-charcoal);
    line-height: 1.8;
    overflow-x: hidden;
    text-align: right;
}

/* Typography & Headers */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-charcoal);
    font-weight: 600;
}

h1 {
    font-family: var(--font-arabic);
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    line-height: 1.3;
}

p {
    font-size: 1.05rem;
    color: var(--color-charcoal-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.2rem;
    font-family: var(--font-arabic);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    letter-spacing: 0.5px;
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.btn-gold:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(200, 164, 107, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(200, 164, 107, 0.2);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

/* Section Badges and Dividers */
.section-badge {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.section-badge.text-gold {
    color: var(--color-gold);
}

.divider-gold {
    width: 60px;
    height: 2px;
    background-color: var(--color-gold);
    margin: 1.5rem 0;
}

.divider-gold-center {
    width: 60px;
    height: 2px;
    background-color: var(--color-gold);
    margin: 1.5rem auto;
}

.divider-gold-short {
    width: 40px;
    height: 1px;
    background-color: var(--color-gold);
    margin: 1rem 0;
}

/* Header & Navigation */
.luxury-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(250, 249, 247, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(200, 164, 107, 0.1);
    transition: var(--transition-smooth);
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-charcoal);
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: -2px;
    font-weight: 500;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-charcoal-muted);
    position: relative;
    padding: 0.25rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-charcoal);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 9rem 2rem 5rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--color-ivory);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(200, 164, 107, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.hero-pretitle {
    font-size: 1.1rem;
    color: var(--color-gold);
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 0.25rem;
}

.hero-subtitle {
    font-family: var(--font-english);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--color-gold);
    margin-bottom: 2rem;
}

.hero-tagline {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
    border-right: 3px solid var(--color-gold);
    padding-right: 1.2rem;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--color-charcoal-muted);
    margin-bottom: 2rem;
}

.hero-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
    margin-bottom: 2.5rem;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-charcoal);
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
}

.hero-image-border {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--color-gold);
    pointer-events: none;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-luxury);
}

/* About Section */
.about-section {
    padding: 7rem 2rem;
    background-color: var(--color-white);
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-side {
    position: relative;
}

.about-image {
    width: 100%;
    height: auto;
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(200, 164, 107, 0.1);
}

.about-content-side {
    padding-left: 2rem;
}

.about-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-subtext {
    font-size: 1.05rem;
    color: var(--color-charcoal-muted);
}

/* Services Section */
.services-section {
    padding: 7rem 2rem;
    background-color: var(--color-ivory);
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(200, 164, 107, 0.15);
    padding-bottom: 1rem;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 0.75rem 2rem;
    font-family: var(--font-arabic);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-charcoal-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.tab-btn:hover {
    color: var(--color-gold);
}

.tab-btn.active {
    color: var(--color-gold);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-gold);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.6s var(--transition-smooth);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.service-card {
    background-color: var(--color-white);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(200, 164, 107, 0.08);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-luxury);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-luxury-hover);
}

.service-card-icon {
    width: 50px;
    height: 50px;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--color-charcoal-muted);
    line-height: 1.7;
}

/* Why Choose Us Section */
.why-section {
    padding: 7rem 2rem;
    background-color: var(--color-white);
}

.why-container {
    max-width: 1300px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
}

.why-card {
    background-color: var(--color-ivory);
    padding: 2.5rem 2rem;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.why-card:hover {
    background-color: var(--color-white);
    border: 1px solid rgba(200, 164, 107, 0.2);
    box-shadow: var(--shadow-luxury);
    transform: translateY(-3px);
}

.why-icon {
    width: 45px;
    height: 45px;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--color-charcoal-muted);
    line-height: 1.7;
}

/* Journey / Timeline Section */
.journey-section {
    padding: 7rem 2rem;
    background-color: var(--color-ivory);
}

.journey-container {
    max-width: 1300px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0 auto;
    padding-right: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    right: 35px;
    bottom: 0;
    width: 1px;
    background-color: rgba(200, 164, 107, 0.3);
}

.timeline-item {
    position: relative;
    margin-bottom: 3.5rem;
    padding-right: 3.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    position: absolute;
    top: 0;
    right: 17px;
    width: 36px;
    height: 36px;
    background-color: var(--color-gold);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-english);
    font-weight: 600;
    font-size: 1.1rem;
    z-index: 2;
    box-shadow: 0 0 0 8px var(--color-ivory);
}

.timeline-content {
    background-color: var(--color-white);
    padding: 2rem;
    border: 1px solid rgba(200, 164, 107, 0.1);
    box-shadow: var(--shadow-luxury);
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-gold);
}

.timeline-content p {
    font-size: 1rem;
    color: var(--color-charcoal-muted);
}

/* Testimonials Section */
.testimonials-section {
    padding: 7rem 2rem;
    background-color: var(--color-white);
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-slider-wrapper {
    position: relative;
    margin-top: 3.5rem;
    background-color: var(--color-ivory);
    border: var(--border-luxury);
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: var(--shadow-luxury);
}

.testimonials-slider {
    position: relative;
    min-height: 180px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.stars {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.quote {
    font-size: 1.4rem;
    font-weight: 500;
    font-style: italic;
    color: var(--color-charcoal);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.client-name {
    font-size: 0.95rem;
    color: var(--color-gold);
    font-weight: 600;
    letter-spacing: 1px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.control-btn {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.control-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
}

/* FAQ Section */
.faq-section {
    padding: 7rem 2rem;
    background-color: var(--color-ivory);
}

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

.faq-list {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background-color: var(--color-white);
    border: 1px solid rgba(200, 164, 107, 0.1);
    box-shadow: var(--shadow-luxury);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(200, 164, 107, 0.4);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-arabic);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-charcoal);
    cursor: pointer;
    text-align: right;
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--color-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    font-size: 1rem;
    color: var(--color-charcoal-muted);
}

/* Booking Section */
.booking-section {
    padding: 7rem 2rem;
    background-color: var(--color-white);
}

.booking-container {
    max-width: 1000px;
    margin: 0 auto;
}

.booking-form-wrapper {
    background-color: var(--color-ivory);
    border: var(--border-luxury);
    padding: 4rem;
    box-shadow: var(--shadow-luxury);
}

.booking-form-wrapper h2 {
    font-size: 2rem;
    margin: 0.5rem 0 1rem 0;
}

.booking-form-wrapper p {
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    font-family: var(--font-arabic);
    font-size: 0.95rem;
    border: 1px solid rgba(200, 164, 107, 0.25);
    background-color: var(--color-white);
    color: var(--color-charcoal);
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(200, 164, 107, 0.1);
}

.form-status {
    display: none;
    padding: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    margin-top: 1rem;
}

.success-message {
    background-color: rgba(200, 164, 107, 0.1);
    border: 1px solid var(--color-gold);
    color: var(--color-gold-hover);
}

/* Contact Info & Map Section */
.contact-section {
    padding: 7rem 2rem;
    background-color: var(--color-ivory);
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-card {
    background-color: var(--color-white);
    padding: 3.5rem 3rem;
    border: 1px solid rgba(200, 164, 107, 0.1);
    box-shadow: var(--shadow-luxury);
}

.contact-card h3 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.contact-spec {
    color: var(--color-gold);
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-details li {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-details svg {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-details .label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-charcoal-muted);
    margin-bottom: 0.25rem;
}

.contact-details .value {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.contact-details a.value:hover {
    color: var(--color-gold);
}

.map-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    box-shadow: var(--shadow-luxury);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    border: 1px solid rgba(200, 164, 107, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Clean abstract map lines aesthetic */
.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(var(--color-gold-light) 1px, transparent 1px),
        linear-gradient(rgba(200, 164, 107, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 164, 107, 0.05) 1px, transparent 1px);
    background-size: 20px 20px, 40px 40px, 40px 40px;
    opacity: 0.5;
}

.map-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    border: var(--border-luxury);
    box-shadow: var(--shadow-luxury);
    max-width: 320px;
}

.map-pin {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.map-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.map-overlay p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

/* Footer styling */
.luxury-footer {
    background-color: var(--color-charcoal);
    color: var(--color-ivory);
    padding: 5rem 2rem 3rem 2rem;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
}

.footer-logo .logo-title {
    color: var(--color-ivory);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-slogan {
    color: var(--color-gold);
    font-family: var(--font-english);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.footer-divider {
    height: 1px;
    background-color: rgba(200, 164, 107, 0.15);
    margin-bottom: 2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(250, 249, 247, 0.6);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(250, 249, 247, 0.6);
}

.footer-links a:hover {
    color: var(--color-gold);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Responsive Web Design Styles */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image-wrapper {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-content-side {
        padding-left: 0;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .map-card {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--color-white);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        z-index: 1000;
        transition: var(--transition-smooth);
        padding: 6rem 2rem 2rem 2rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        display: block;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .btn-nav {
        display: none;
    }
    
    .hero-section {
        padding-top: 8rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .booking-form-wrapper {
        padding: 2.5rem 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* BMI Calculator Section Styles */
.bmi-section {
    padding: 7rem 2rem;
    background-color: var(--color-white);
}

.bmi-container {
    max-width: 1000px;
    margin: 0 auto;
}

.bmi-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-top: 3.5rem;
    align-items: stretch;
}

.bmi-calculator-card {
    background-color: var(--color-ivory);
    border: var(--border-luxury);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-luxury);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bmi-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bmi-result-card {
    background-color: var(--color-white);
    border: var(--border-luxury);
    padding: 3rem;
    box-shadow: var(--shadow-luxury-hover);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 380px;
    position: relative;
    overflow: hidden;
}

.bmi-result-placeholder {
    text-align: center;
    color: var(--color-charcoal-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.bmi-result-content {
    animation: fadeIn 0.6s var(--transition-smooth);
}

.bmi-score-wrapper {
    text-align: center;
    margin-bottom: 2rem;
}

.bmi-score-label {
    display: block;
    font-size: 0.95rem;
    color: var(--color-charcoal-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.bmi-score-value {
    font-family: var(--font-english);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.bmi-status-tag {
    display: inline-block;
    padding: 0.35rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-white);
    background-color: var(--color-gold);
    border-radius: 50px;
}

.bmi-gauge-bar {
    height: 10px;
    width: 100%;
    background: linear-gradient(to left, #3498db 0%, #3498db 25%, #2ecc71 25%, #2ecc71 50%, #f1c40f 50%, #f1c40f 75%, #e74c3c 75%, #e74c3c 100%);
    border-radius: 10px;
    position: relative;
    margin: 2.5rem 0;
}

.bmi-gauge-pointer {
    width: 20px;
    height: 20px;
    background-color: var(--color-charcoal);
    border: 3px solid var(--color-white);
    border-radius: 50%;
    position: absolute;
    top: -5px;
    margin-right: -10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: right 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    right: 50%; /* Default starting position */
}

.bmi-advice-box {
    background-color: var(--color-ivory);
    border-right: 3px solid var(--color-gold);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.bmi-advice-box h4 {
    font-size: 1.05rem;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
}

.bmi-advice-box p {
    font-size: 0.95rem;
    color: var(--color-charcoal-muted);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .bmi-section {
        padding: 5rem 1rem;
    }
    
    .bmi-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .bmi-calculator-card, .bmi-result-card {
        padding: 1.75rem 1.25rem;
        min-height: auto;
    }
    
    .bmi-score-value {
        font-size: 2.75rem;
    }
    
    .bmi-gauge-bar {
        margin: 2rem 0;
    }
}

/* Interactive Slider Sizing and Styles */
.bmi-slider-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: right;
}

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

.bmi-slider-header label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.bmi-slider-value {
    font-family: var(--font-english), var(--font-arabic);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gold);
    background: rgba(200, 164, 107, 0.1);
    padding: 0.2rem 0.8rem;
    border-radius: 4px;
    min-width: 60px;
    text-align: center;
}

input[type="range"].bmi-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: var(--color-ivory-dark);
    border-radius: 5px;
    outline: none;
    margin: 15px 0;
    direction: ltr; /* Sliders are naturally LTR to avoid browser rendering bugs */
}

input[type="range"].bmi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-gold);
    cursor: pointer;
    border: 2.5px solid var(--color-white);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: var(--transition-smooth);
}

input[type="range"].bmi-slider::-webkit-slider-thumb:hover {
    background: var(--color-gold-hover);
    transform: scale(1.1);
}

input[type="range"].bmi-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-gold);
    cursor: pointer;
    border: 2.5px solid var(--color-white);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: var(--transition-smooth);
}


