.elementor-35 .elementor-element.elementor-element-f43cae7{--display:flex;}.elementor-35 .elementor-element.elementor-element-c96fd73{margin:156px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-35 .elementor-element.elementor-element-2edce5d{--display:flex;}.elementor-35 .elementor-element.elementor-element-8b45f5d{--display:flex;}.elementor-35 .elementor-element.elementor-element-7240c3d{background-color:#050505;margin:-14px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-35 .elementor-element.elementor-element-ddda046{--display:flex;}.elementor-35 .elementor-element.elementor-element-7de877e{--display:flex;}.elementor-35 .elementor-element.elementor-element-d7ee256{margin:-76px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-35 .elementor-element.elementor-element-6db2142{--display:flex;}.elementor-35 .elementor-element.elementor-element-dd7c9fb{margin:-38px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-c96fd73 */:root {
    --gold: #D4AF37;
    --black-bg: #050505;
}

.riad-contact-header {
    background: var(--black-bg);
    min-height: 600px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.contact-split {
    display: flex;
    width: 100%;
}

/* --- Left Side: Info --- */
.contact-info-block {
    flex: 1;
    padding: 80px 60px;
    background: linear-gradient(135deg, #0a0a0a 0%, #000 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(212, 175, 55, 0.1);
}

.gold-subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 600;
}

.title-white {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin: 15px 0;
    color: #fff;
}

.gold-divider-left {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 40px;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-item .icon {
    font-size: 20px;
    filter: sepia(1) saturate(5) hue-rotate(5deg); /* Makes emojis look more 'gold' */
}

.info-item h4 {
    color: var(--gold);
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.info-item p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
}

/* Button */
.btn-map-primary {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 35px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    transition: 0.4s ease;
}

.btn-map-primary:hover {
    background: var(--gold);
    color: #000;
}

/* --- Right Side: Map --- */
.contact-visual-block {
    flex: 1.2;
    position: relative;
    background: #111;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    filter: grayscale(1) invert(0.9) contrast(1.2); /* Dark Map Theme */
    transition: 0.6s ease;
}

.map-wrapper:hover {
    filter: grayscale(0) invert(0) contrast(1); /* Color returns on hover */
}

.map-overlay-hint {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    color: var(--gold);
    padding: 8px 15px;
    font-size: 10px;
    text-transform: uppercase;
    pointer-events: none;
    border: 1px solid var(--gold);
}

/* Responsive */
@media (max-width: 991px) {
    .contact-split { flex-direction: column; }
    .contact-visual-block { height: 400px; order: 2; }
    .contact-info-block { padding: 60px 30px; order: 1; }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-5f04554 *//* --- 1. Form Container & Grid --- */
.modern-contact-form {
    background: #050505;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 4px;
    animation: formReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes formReveal {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.full-width {
    grid-column: span 2;
}

.text-area-group {
    margin-top: 20px;
}

/* --- 2. Base Input Styling --- */
.input-group {
    position: relative;
    overflow: hidden;
}

.field-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #D4AF37; /* Gold */
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.wpcf7-form-control:not(.wpcf7-submit) {
    width: 100% !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid #333 !important;
    color: #fff !important;
    padding: 12px 0 !important;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.wpcf7-form-control::placeholder {
    color: #555;
    font-style: italic;
}

.wpcf7-form-control:focus {
    outline: none !important;
}

/* --- 3. Animated Focus Underline --- */
.focus-border {
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: #D4AF37; /* Solid Gold Line */
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.input-group input:focus ~ .focus-border,
.input-group select:focus ~ .focus-border,
.input-group textarea:focus ~ .focus-border {
    left: 0;
}

/* --- 4. The Calendar (Dark Mode Fix) --- */
.custom-calendar {
    color-scheme: dark; /* Forces browser native dark calendar */
}

/* Turns the little calendar icon Gold */
::-webkit-calendar-picker-indicator {
    filter: invert(70%) sepia(40%) saturate(500%) hue-rotate(5deg);
    cursor: pointer;
    opacity: 0.8;
    transition: 0.3s ease;
}

::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* --- 5. The Select Dropdown (Removing White Background) --- */
.dark-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent !important;
    color: #fff !important;
    /* Custom Gold Arrow SVG */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23D4AF37' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 5px center !important;
    padding-right: 30px !important;
}

/* Styling the dropdown options to be dark instead of white */
.dark-select option {
    background-color: #111 !important; /* Deep black background */
    color: #fff !important;            /* White text */
    padding: 15px;
    font-size: 15px;
}

/* --- 6. Submit Button --- */
.submit-wrapper {
    margin-top: 40px;
    text-align: center;
}

.gold-submit-btn {
    background: #D4AF37 !important;
    color: #000 !important;
    padding: 16px 40px !important;
    border: none !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    cursor: pointer;
    transition: all 0.4s ease !important;
}

.gold-submit-btn:hover {
    background: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* --- 7. Mobile Responsiveness --- */
@media (max-width: 768px) {
    .form-grid { grid-template-columns: 1fr; gap: 20px; }
    .full-width { grid-column: span 1; }
    .modern-contact-form { padding: 30px 20px; }
}

/* --- 8. CF7 Success/Error Message Styling --- */
.wpcf7 form .wpcf7-response-output {
    margin-top: 30px;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #D4AF37 !important;
    background: rgba(212, 175, 55, 0.05) !important;
    color: #D4AF37 !important;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7240c3d */.divider-expand {
    height: 1px;
    margin: 60px auto;
    background: linear-gradient(90deg, transparent 0%, #D4AF37 50%, transparent 100%);
    width: 0; /* Starts hidden */
    animation: lineExpand 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s; /* 0.5s delay so it triggers after the page loads */
}

@keyframes lineExpand {
    to { width: 80%; max-width: 600px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-bb9b2a6 *//* --- Dining Section Container --- */
.riad-dining-section {
    background-color: #050505;
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
}

.dining-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* --- Typography & Text --- */
.title-white {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #fff;
}

.dining-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 40px;
}

.gold-text {
    color: #D4AF37;
    font-weight: 600;
}

/* Left-aligned Moroccan Divider */
.divider-moroccan-left {
    display: flex;
    align-items: center;
    width: 250px;
    margin-bottom: 30px;
}

.divider-moroccan-left .line {
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, #D4AF37, transparent);
}
.divider-moroccan-left .line:first-child {
    background: linear-gradient(270deg, #D4AF37, transparent);
}
.divider-moroccan-left .star { color: #D4AF37; margin: 0 10px; font-size: 12px; }

/* --- Editorial Steps --- */
.dining-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 20px 25px;
    border-radius: 4px;
    transition: all 0.4s ease;
    cursor: default;
}

.step:hover {
    transform: translateX(15px);
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.05);
    box-shadow: -5px 10px 20px rgba(0,0,0,0.3);
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #D4AF37;
    margin-right: 25px;
    font-style: italic;
    opacity: 0.8;
}

.step p {
    margin: 0;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

/* --- Visual Image Card --- */
.visual-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.image-wrapper {
    position: relative;
    height: 500px; /* Forces a nice vertical portrait shape */
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.8) contrast(1.1); /* Slightly darkened to match the black theme */
    transition: transform 0.8s ease;
}

.visual-card:hover .image-wrapper img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, #050505 0%, transparent 40%);
}

/* --- Luxury Price Badge --- */
.price-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #D4AF37;
    color: #000;
    padding: 12px 25px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 10;
    border-radius: 2px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* --- Responsive Layout --- */
@media (max-width: 991px) {
    .dining-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .dining-visual {
        order: -1;
    }
    .title-white { font-size: 2.2rem; }
    .image-wrapper { height: 400px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d7ee256 */.riad-trust-section {
    background-color: #000;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 60px 0;
    border-top: 1px solid #1a1a1a;
}

.trust-grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}

.trust-item {
    padding: 60px 40px;
    text-align: center;
    border-right: 1px solid #1a1a1a;
    transition: background 0.4s ease;
}

.trust-item:last-child { border-right: none; }

.trust-item:hover {
    background: #0a0a0a;
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.trust-item h3 {
    color: #D4AF37;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.trust-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .trust-grid-full { grid-template-columns: 1fr 1fr; }
    .trust-item { border-bottom: 1px solid #1a1a1a; }
    .trust-item:nth-child(2) { border-right: none; }
}

@media (max-width: 600px) {
    .trust-grid-full { grid-template-columns: 1fr; }
    .trust-item { border-right: none; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-dd7c9fb */.riad-social-section {
    background-color: #000;
    padding: 120px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    color: #f7f2f6;
}

.social-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 0 20px;
    align-items: center;
}

.social-text p {
    color: #aaa;
    margin: 25px 0 40px 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

.social-links { display: flex; gap: 20px; }

.social-btn {
    padding: 12px 30px;
    border: 1px solid #E6BE41;
    color: #E6BE41;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s;
}

.social-btn:hover { background: #E6BE41; color: #000; }

/* Grid Insta */
.insta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.insta-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    filter: grayscale(30%);
    transition: 0.5s;
}

.insta-img:hover { filter: grayscale(0%); transform: scale(1.03); }

@media (max-width: 992px) {
    .social-wrapper { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
}/* End custom CSS */