/**
 * Custom Styles for Visitor Portal (Al Ramz)
 * Exactly matching Figma Frame 1440x2517 specification
 */

/* ==========================================================================
   Brand Typography & Custom Font
   ========================================================================== */

.font-heliopolis {
    font-family: 'Cairo', 'IBM Plex Sans Arabic', sans-serif;
}

/* ==========================================================================
   Header Navbar (Figma: 1275x80, p-20)
   ========================================================================== */
.ramz-navbar {
    width: 100%;
    max-width: 1275px;
    height: 80px;
    background: #FFFFFF;
    border-radius: 1000px;
    box-shadow: 0px 4px 33px 1px rgba(0, 0, 0, 0.07);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==========================================================================
   Hero Section (Figma: 1280x496, p-52_40)
   ========================================================================== */
.ramz-hero-article {
    width: 100%;
    max-width: 1280px;
    height: 496px;
    background: #8B7C6F;
    border-radius: 28px;
    box-shadow: 0px 20px 52px 0px rgba(12, 51, 40, 0.10);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.ramz-hero-title {
    font-family: 'Cairo', 'IBM Plex Sans Arabic', sans-serif;
    font-weight: 600;
    font-size: 72px;
    line-height: 92.4px;
    text-align: right;
}

.ramz-hero-desc {
    font-family: 'Cairo', 'IBM Plex Sans Arabic', sans-serif;
    font-weight: 400;
    font-size: 16.8px;
    line-height: 28px;
    color: #F2F2F2;
    max-width: 489px;
    text-align: right;
}

/* ==========================================================================
   Secondary Section & Section Headings (Figma: 832x181, gap-32)
   ========================================================================== */
.secondary-section-wrapper {
    width: 100%;
    max-width: 832px;
    margin-top: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.secondary-section-title {
    font-family: 'Cairo', 'IBM Plex Sans Arabic', sans-serif;
    font-weight: 600;
    font-size: 52px;
    line-height: 92.4px;
    text-align: center;
    max-width: 595px;
}

.secondary-section-desc {
    font-family: 'Cairo', 'IBM Plex Sans Arabic', sans-serif;
    font-weight: 400;
    font-size: 16.8px;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.7);
    text-align: center;
    max-width: 832px;
}

@media (max-width: 768px) {
    .ramz-hero-title {
        font-size: 38px;
        line-height: 52px;
    }
    .secondary-section-title {
        font-size: 32px;
        line-height: 48px;
    }
}

/* ==========================================================================
   Main Booking Form Card (Figma: 896x945.5)
   ========================================================================== */
.ramz-booking-card {
    width: 100%;
    max-width: 896px;
    margin-top: 52px;
    margin-bottom: 48px;
    background: #FFFFFF;
    border: 1px solid #F3EDE8;
    border-radius: 24px;
    box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.ramz-card-header {
    width: 100%;
    height: 81px;
    background: #F3EEE8;
    border-bottom: 1px solid #E2E8F0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.ramz-card-header h2 {
    font-family: 'Cairo', 'IBM Plex Sans Arabic', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #0F172B;
}

.ramz-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Stepper Bar (Figma: 846x72, px-71 py-12) */
.ramz-stepper-container {
    width: 100%;
    max-width: 846px;
    height: 72px;
    padding: 12px 71px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .ramz-stepper-container {
        padding: 12px 16px;
        height: auto;
    }
}

/* Form Inputs */
.ramz-input-label {
    font-family: 'Cairo', 'IBM Plex Sans Arabic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #314158;
    margin-bottom: 8px;
    display: block;
}

.ramz-input-text {
    width: 100%;
    height: 50px;
    border: 1px solid #DCDAD0;
    border-radius: 12px;
    padding: 12px 16px;
    font-family: 'Cairo', 'IBM Plex Sans Arabic', sans-serif;
    font-size: 16px;
    color: #000000;
    background: #FFFFFF;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.ramz-input-text:focus {
    border-color: #A26B3A;
    box-shadow: 0 0 0 1px #A26B3A;
}

.ramz-textarea {
    width: 100%;
    height: 153.5px;
    border: 1px solid #DCDAD0;
    border-radius: 12px;
    padding: 12px 16px;
    font-family: 'Cairo', 'IBM Plex Sans Arabic', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    background: #FFFFFF;
    outline: none;
    resize: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.ramz-textarea:focus {
    border-color: #A26B3A;
    box-shadow: 0 0 0 1px #A26B3A;
}

/* ==========================================================================
   Visitor Portal Footer (Figma: 1445x412, pt-100 pb-60)
   ========================================================================== */
.ramz-footer {
    background-color: #8B7C6F;
    color: #FFFFFF;
    width: 100%;
    position: relative;
    margin-top: auto;
    padding-top: 100px !important;
    padding-bottom: 60px !important;
}

@media (max-width: 768px) {
    .ramz-footer {
        padding-top: 60px !important;
        padding-bottom: 40px !important;
    }
}

.ramz-footer-inner {
    width: 100%;
    max-width: 1154px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
}

@media (max-width: 992px) {
    .ramz-footer-inner {
        flex-direction: column;
        gap: 40px;
    }
}

/* ==========================================================================
   Auth Card (Login & Password Reset)
   ========================================================================== */
.ramz-auth-card {
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #EAE6DF;
    padding: 28px 24px;
}

