/* Global Styles */
:root {
    --primary-color: #c19b76; /* Warm sand/terracotta */
    --secondary-color: #2a4d69; /* Deep blue like Moroccan tiles */
    --accent-color: #d46240; /* Spice orange */
    --light-color: #f5f1e9; /* Light cream */
    --dark-color: #2c2c2c; /* Almost black */
    --text-color: #333333;
    --header-font: 'Playfair Display', serif;
    --body-font: 'Raleway', sans-serif;

}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
}



.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--header-font);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

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

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 2px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--primary-color);
    border-radius: 2px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.moroccan-divider {
    height: 2px;
    width: 100px;
    background-color: var(--primary-color);
    margin: 0 auto;
    position: relative;
}

.moroccan-divider:before, .moroccan-divider:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    top: -4px;
    transform: rotate(45deg);
}

.moroccan-divider:before {
    left: -5px;
}

.moroccan-divider:after {
    right: -5px;
}

.light {
    color: white;
}

.moroccan-divider.light {
    background-color: white;
}

.moroccan-divider.light:before, .moroccan-divider.light:after {
    background-color: white;
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: white;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

.tagline {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 0;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover:after, nav ul li a.active:after {
    width: 100%;
}

/* Special Offers link highlighting */
nav ul li a[href*="offers.html"] {
    background: linear-gradient(135deg, rgba(193, 155, 118, 0.1), rgba(193, 155, 118, 0.05));
    border-radius: 4px;
    padding: 0.5rem 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    box-shadow: 0 1px 3px rgba(193, 155, 118, 0.1);
}

nav ul li a[href*="offers.html"]:hover {
    background: linear-gradient(135deg, rgba(193, 155, 118, 0.15), rgba(193, 155, 118, 0.08));
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(193, 155, 118, 0.15);
}

.booking-btn {
    background-color: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 2px;
}

.booking-btn:hover {
    background-color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

/* Language Switcher Styles */
.language-switcher {
    position: relative;
}

.language-dropdown {
    position: relative;
}

.language-btn {
    background: none;
    border: none;
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--body-font);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.language-btn:hover {
    color: var(--primary-color);
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.language-dropdown:hover .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--dark-color);
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.language-option.active {
    background-color: var(--primary-color);
    color: white;
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://res.cloudinary.com/dmsfrvwt9/image/upload/v1756298598/riad/headers/hero-image.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-image img {
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Featured Rooms Section */
.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.room-card {
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.room-image {
    height: 200px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-info {
    padding: 1.5rem;
}

.room-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.room-features {
    display: flex;
    margin: 1rem 0;
}

.room-features li {
    margin-right: 1rem;
    font-size: 0.9rem;
    color: var(--dark-color);
}

.room-features i {
    color: var(--primary-color);
    margin-right: 0.3rem;
}

.view-all-rooms {
    text-align: center;
    margin-top: 2rem;
}

/* Facilities Preview Section */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.facility-item {
    background-color: white;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.facility-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.facility-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.view-all-facilities {
    text-align: center;
    margin-top: 2rem;
}

/* Booking Section */
.booking {
    padding: 80px 0;
    background-image: url('https://res.cloudinary.com/dmsfrvwt9/image/upload/v1756298634/riad/headers/booking-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.booking-container {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 5px;
    text-align: center;
}

.booking-placeholder {
    padding: 2rem;
}

.booking-placeholder p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.booking-placeholder .btn {
    margin: 0 0.5rem;
}

/* Testimonials Section */
.testimonials {
    background-color: white;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding-bottom: 2rem;
    scrollbar-width: none; /* Firefox */
}

.testimonial-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonial {
    flex: 0 0 100%;
    scroll-snap-align: start;
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
}

.testimonial-text:before, .testimonial-text:after {
    content: '\201C';
    font-size: 4rem;
    position: absolute;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-text:before {
    top: -2rem;
    left: -1rem;
}

.testimonial-text:after {
    content: '\201D';
    bottom: -4rem;
    right: -1rem;
}

.testimonial-author {
    text-align: right;
    font-weight: 500;
}

/* Location Section */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-map img {
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.location-info h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.location-info p {
    margin-bottom: 1rem;
}

.location-info ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.location-info ul li {
    margin-bottom: 0.5rem;
    position: relative;
}

.location-info ul li:before {
    content: '\2022';
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.location-info i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.proximity-highlights {
    margin: 1.5rem 0;
}

.proximity-highlights h4 {
    color: var(--primary-color);
    margin: 1.5rem 0 0.8rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.proximity-highlights h4:first-child {
    margin-top: 0;
}

.proximity-highlights ul {
    margin-bottom: 1.2rem;
    padding-left: 0;
}

.proximity-highlights ul li {
    margin-bottom: 0.6rem;
    padding-left: 1.5rem;
    position: relative;
    list-style: none;
}

.proximity-highlights ul li:before {
    display: none;
}

.proximity-highlights ul li i {
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-info h3, .footer-links h3, .footer-social h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-info p {
    margin-bottom: 0.8rem;
}

.footer-info i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: white;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

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

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content, .location-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1001;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 1rem 0;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1002;
    }
    
    .mobile-menu-btn.active i:before {
        content: '\f00d';
    }
    
    .room-grid, .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Blog Specific Styles */
.blog-header {
    background: linear-gradient(rgba(42, 77, 105, 0.8), rgba(42, 77, 105, 0.8)), url('../images/common_areas/patio/patio1.webp') center/cover;
    color: white;
    text-align: center;
    padding: 8rem 0 4rem;
    margin-top: 80px;
}

.blog-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.blog-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.blog-section {
    padding: 4rem 0;
}

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

.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-category {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.blog-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Blog Responsive Styles */
@media (max-width: 768px) {
    .blog-header {
        padding: 6rem 0 3rem;
    }

    .blog-header h1 {
        font-size: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Blog Post Specific Styles */
.blog-post-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Blog Post Header */
.blog-post-header {
    background: linear-gradient(rgba(42, 77, 105, 0.7), rgba(42, 77, 105, 0.7)), var(--primary-color);
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 8rem 0 4rem;
    margin-top: 80px;
}

.blog-post-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: var(--header-font);
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    background: white;
    border-bottom: 1px solid #eee;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Blog Post Content */
.blog-post-content {
    background: white;
    padding: 2rem 0;
}

.blog-post-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    font-family: var(--header-font);
}

.blog-post-content h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem 0;
    font-family: var(--header-font);
}

.blog-post-content h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 1.2rem 0 0.6rem 0;
    font-family: var(--header-font);
}

.blog-post-content p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    font-family: var(--body-font);
}

.blog-post-content ul {
    margin: 1rem 0 1rem 2rem;
    list-style: disc;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Highlight Box */
.highlight-box {
    background: var(--light-color);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.highlight-box h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-family: var(--header-font);
}

.highlight-box p {
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

/* Back to Blog Button */
.back-to-blog {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 2px;
    margin: 2rem 0;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--body-font);
}

.back-to-blog:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    color: white;
}

/* Blog Post Responsive Design */
@media (max-width: 768px) {
    .blog-post-header {
        padding: 6rem 0 3rem;
    }
    
    .blog-post-header h1 {
        font-size: 2rem;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .blog-post-container {
        padding: 0 15px;
    }
    
    .blog-post-content h2 {
        font-size: 1.5rem;
    }
    
    .blog-post-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .blog-post-header h1 {
        font-size: 1.8rem;
    }
    
    .blog-post-content p {
        font-size: 0.9rem;
    }
    
    .highlight-box {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}



/* ===== INLINE BOOKING WIDGET STYLES ===== */
.booking-widget-inline {
    max-width: 800px;
    margin: 2rem auto 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-form-inline {
    width: 100%;
}

.booking-fields {
    display: grid;
    grid-template-columns: 0.8fr 0.8fr 120px 180px;
    gap: 1rem;
    align-items: end;
}

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

.form-label {
    color: var(--dark-color);
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.form-input {
    padding: 0.5rem;
    border: 2px solid rgba(44, 44, 44, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.95);
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(193, 155, 118, 0.2);
}

.guests-control {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(44, 44, 44, 0.2);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 38px;
}

.guests-control:focus-within {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(193, 155, 118, 0.2);
}

.guests-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    font-size: 1rem;
    color: var(--secondary-color);
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 32px;
}

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

.guests-display {
    padding: 0.5rem 0.75rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
    min-width: 40px;
    text-align: center;
    font-size: 0.9rem;
}

.booking-btn-custom {
    background: linear-gradient(135deg, var(--primary-color), #b8926a);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(193, 155, 118, 0.3);
    height: 38px;
}

.booking-btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 155, 118, 0.4);
    background: linear-gradient(135deg, #b8926a, var(--primary-color));
}

.booking-btn-custom:active {
    transform: translateY(0);
}

/* Moroccan Divider for Booking Widget */
.booking-widget-inline::before {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    margin: 0 auto 1.5rem;
    position: relative;
}

.booking-widget-inline::before::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--primary-color);
}

@media (max-width: 768px) {
    .booking-widget-inline {
        margin: 1.5rem 1rem 0;
        padding: 1.5rem;
    }
    
    .booking-fields {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-input, .guests-control {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

@media (max-width: 480px) {
    .booking-widget-inline {
        margin: 1rem 0.5rem 0;
        padding: 1rem;
    }
    
    .booking-btn-custom {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* ===== END INLINE BOOKING WIDGET STYLES ===== */