:root {
    --primary-color: #ff7a00;
    --primary-hover: #e66d00;
    --text-color: #0f172a;
    --text-light: #475569;
    --bg-color: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.08);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

main {
    padding: 0 24px 24px !important;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--text-color);
    line-height: 1.2;
}

/* Header System */
header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0.6rem 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}

@media (min-width: 768px) {
    header {
        padding: 0.75rem 2.5rem;
    }
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.logo-link:hover {
    opacity: 0.9;
}

.header-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .header-logo {
        height: 75px;
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.mcc-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.igh-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.help-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: var(--transition);
}

.help-btn:hover {
    background: #e2e8f0;
    color: var(--text-color);
}

.profile-btn {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 2.2rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0 2px 4px rgba(255, 122, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 10px rgba(255, 122, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0 4px 10px rgba(255, 122, 0, 0.25);
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
}


.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Grid System */
.grid {
    display: grid;
    gap: 1rem;
}

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

@media (max-width: 640px) {
    .grid-mobile-1 { grid-template-columns: 1fr !important; }
}

/* Cards */
.card {
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

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

.card-image-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-content .description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    flex: 1;
}

.card-content .gst-text {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 1rem;
}

.card-btn-wrapper,
.card-actions {
    margin-top: auto;
    display: flex;
    gap: 10px;
    width: 100%;
}

.card-actions .btn {
    flex: 1;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    color: #fff; /* Default to white text for contrast */
}

/* Badge Variants */
.standard-badge { background: #64748b; color: #fff; } /* Slate */
.premium-badge { background: var(--primary-color); color: #fff; } /* Dynamic Primary */
.conference-badge { background: #3b82f6; color: #fff; } /* Blue */
.suite-badge { background: #8b5cf6; color: #fff; } /* Violet */
.advance-badge { background: var(--primary-color); color: #fff; }


.status-available { background: #dcfce7; color: #166534; }
.status-booked { background: #fee2e2; color: #991b1b; }

/* Room Details Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    visibility: hidden;
    opacity: 0;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    visibility: visible;
    opacity: 1;
}

.modal-card {
    background-color: var(--white);
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.98);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
}

/* Forms */
.form-container {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
    .form-container {
        padding: 2.5rem;
    }
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    outline: none;
    transition: var(--transition);
    background-color: #fcfcfd;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.15);
    background-color: var(--white);
}

/* Helper Classes */
.hidden { display: none; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.p-4 { padding: 1rem; }

/* Hero Slider Base */
.main-image-slider {
    position: relative;
    width: 100%;
    height: clamp(500px, 80vh, 850px);
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active-slide {
    opacity: 1;
}

/* Footer */
/* Footer */
.main-footer {
    background: #fdfbf9 !important; /* Clean professional light beige/cream */
    border-top: 1px solid #e2e8f0 !important;
    color: #444 !important;
    width: 100%;
    margin-top: 3rem; /* Space from content */
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.02);
}

.main-footer .footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(3, 1fr); /* Explicit 3-column layout */
    padding: 3rem 2rem 2rem !important; /* Restored generous padding */
}

/* Cleanup body padding */
body {
    padding-bottom: 0;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 0px; 
    }
    .main-footer {
        position: relative; /* On mobile, fixed footer covers too much screen */
    }
}

.main-footer .footer-column h4 {
    color: #1e293b !important;
    font-weight: 700 !important;
    margin-bottom: 0.8rem !important;
    padding-bottom: 0.4rem !important;
    position: relative;
    display: inline-block;
    font-size: 1.1rem;
}

.main-footer .footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.main-footer .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-footer .footer-column ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.main-footer .footer-column ul li a {
    color: #475569 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.main-footer .footer-column ul li a:hover {
    color: var(--primary-color) !important;
    transform: translateX(3px);
}

.main-footer .footer-contact-link {
    color: #475569 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-footer .footer-contact-link:hover {
    color: var(--primary-color) !important;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 1.25rem;
}

.footer-social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-social-icons a:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
}

.main-footer .footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.05) !important;
    padding: 1.25rem 2rem !important;
    background: transparent !important; /* Transparent as requested */
    text-align: center;
    color: #64748b !important;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Footer Mobile Alignment Fix */
@media (max-width: 768px) {
    .main-footer .footer-content {
        flex-direction: column !important;
        text-align: left !important; /* Left aligned on mobile */
        gap: 2rem !important;
        display: flex !important;
    }
    .main-footer .footer-column {
        width: 100% !important;
        text-align: left !important;
    }
    .main-footer .footer-column h4::after {
        left: 0; /* Align bar to left */
        transform: none;
    }
    .main-footer .footer-column ul li,
    .main-footer .footer-column ul li a,
    .main-footer .footer-column p,
    .footer-social-icons {
        justify-content: flex-start !important;
        text-align: left !important;
    }
    .main-footer .footer-bottom {
        text-align: center !important; /* Keep copyright centered */
    }
}

/* Responsive Overrides */
@media (max-width: 480px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    .btn { width: 100%; }
    .header-logo { height: 28px; }
}
/* Profile Dropdown */
.profile-dropdown { position: relative; display: inline-block; }
.profile-btn { background: none; border: none; cursor: pointer; padding: 4px; border-radius: 50%; transition: background 0.2s; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #7f1d1d; }
.profile-btn:hover { color: var(--primary-color); }
.dropdown-menu { 
    position: absolute; 
    top: calc(100% + 5px); 
    right: 0; 
    min-width: 120px; 
    background: #fff; 
    border: 1px solid rgba(0,0,0,0.08); 
    border-radius: 10px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
    display: none; 
    flex-direction: column; 
    overflow: hidden; 
    z-index: 1001; 
    padding: 0;
}
.dropdown-menu.active { display: flex; }
.dropdown-item { 
    display: block; 
    width: 100%;
    background: none;
    border: none;
    padding: 0.6rem 1rem; 
    color: #1e293b; 
    text-decoration: none; 
    font-size: 0.9rem; 
    font-weight: 600; 
    transition: all 0.2s; 
    text-align: center;
    cursor: pointer;
    font-family: inherit;
}
.dropdown-item:hover { background: #f8fafc; color: var(--primary-color); }
.dropdown-item.logout { color: #ef4444; border-top: none; }
.dropdown-item.logout:hover { background: #fff1f2; }

/*  SLIDER CARD CONSISTENCY  */
.slider-card {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: 480px !important;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.slider-card .card-image-wrapper {
    height: 180px !important;
    overflow: hidden;
    flex-shrink: 0;
}

.slider-card .card-content {
    padding: 1.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

.slider-card .description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.25rem !important;
    flex-grow: 1 !important;
    line-height: 1.6;
    display: block !important;
    overflow: visible !important;
    -webkit-line-clamp: unset !important;
    line-clamp: unset !important;
}

.slider-card h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.slider-card .card-btn-wrapper {
    margin-top: auto !important;
    width: 100%;
}

.slider-card .btn-outline {
    height: 3.5rem !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.5px;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

@media (max-width: 768px) {
    .slider-card {
        min-height: 400px !important;
        width: calc(100vw - 40px) !important;
        flex-shrink: 0 !important;
    }
    .slider-card .description {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }
    .slider-card .card-content {
        padding: 1.2rem !important;
    }
}

@media (max-width: 480px) {
    .slider-card {
        min-height: 360px !important;
        width: calc(100vw - 32px) !important;
    }
    .slider-card .description {
        font-size: 0.875rem !important;
    }
}
/* Help Modal / Contact Us Styling */
.help-modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center; z-index: 6000;
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.help-modal-overlay.active { opacity: 1; visibility: visible; }

.help-modal-card {
    background: white; border-radius: 24px; width: 100%; max-width: 550px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15); position: relative;
    padding: 2.5rem; margin: 20px; border: 1px solid #f1f5f9;
    transform: scale(0.98); transition: transform 0.3s ease;
}

.help-modal-overlay.active .help-modal-card {
    transform: scale(1);
}

.help-modal-close {
    position: absolute; top: 1.25rem; right: 1.25rem;
    width: 32px; height: 32px; border-radius: 50%; border: none;
    background: #f8fafc; color: #64748b; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s; z-index: 10;
}
.help-modal-close:hover { background: #fee2e2; color: #ef4444; transform: rotate(90deg); }

.help-modal-title {
    font-size: 1.75rem; font-weight: 800; color: #1e293b;
    margin-bottom: 2rem; border-bottom: 2px solid #f1f5f9;
    padding-bottom: 0.75rem; text-align: left;
}

.help-form { display: flex; flex-direction: column; gap: 1.25rem; }

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

@media (max-width: 500px) { .help-form-row { grid-template-columns: 1fr; } }

.help-input-group { display: flex; flex-direction: column; gap: 0.5rem; text-align: left; }
.help-input-group label { font-size: 0.85rem; font-weight: 700; color: #475569; }

.help-input-group input, 
.help-input-group textarea {
    width: 100%; padding: 0.85rem 1rem; border-radius: 12px;
    border: 1px solid #e2e8f0; background: #f8fafc; font-family: inherit;
    font-size: 0.95rem; transition: all 0.2s;
}

.help-input-group input:focus, 
.help-input-group textarea:focus {
    background: white; border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255,122,0,0.1); outline: none;
}

/* Custom Dropdown Styling */
.custom-dropdown { position: relative; width: 100%; }
.dropdown-selected {
    width: 100%; padding: 0.85rem 1rem; border-radius: 12px;
    border: 1px solid #e2e8f0; background: #f8fafc; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.95rem; color: #475569; transition: all 0.2s;
}
.dropdown-selected:hover { border-color: #cbd5e1; }

.dropdown-options {
    position: absolute; top: calc(100% + 8px); left: 0; width: 100%;
    background: white; border-radius: 12px; border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); z-index: 100;
    max-height: 250px; overflow-y: auto; opacity: 0; visibility: hidden;
    transform: translateY(10px); transition: all 0.2s;
}
.dropdown-options.active { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-option {
    padding: 0.75rem 1rem; font-size: 0.9rem; color: #475569;
    cursor: pointer; transition: all 0.2s;
}
.dropdown-option:hover { background: #f8fafc; color: var(--primary-color); }

.help-form-footer { margin-top: 1rem; display: flex; justify-content: flex-end; }

.help-send-btn {
    padding: 0.85rem 2.5rem; font-weight: 800; font-size: 0.9rem;
    letter-spacing: 0.5px; border-radius: 12px; border: none;
    cursor: pointer; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--primary-color); color: white; box-shadow: 0 8px 20px rgba(255,122,0,0.25);
    text-transform: uppercase;
}

.help-send-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255,122,0,0.35);
}

.help-send-btn:active { transform: translateY(0); }

/* Scrollbar for dropdown */
.dropdown-options::-webkit-scrollbar { width: 6px; }
.dropdown-options::-webkit-scrollbar-track { background: transparent; }
.dropdown-options::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
