:root {
    --primary-blue: #1d83bb;
    --light-blue: #3b82f6;
    --dark-gray: #1f2937;
    --light-gray: #f3f4f6;
    --whatsapp-green: #25d366;
    --email-pink: #ea4335;
}

body {
    font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {
    background-color: transparent;
    box-shadow: none;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    position: relative;
}

.navbar-brand {
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .navbar-brand {
        position: absolute;
        left: 0;
    }
}

#navbarNav {
    flex: 1;
}

@media (min-width: 992px) {
    #navbarNav {
        display: flex;
        justify-content: center;
    }
}

.navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    width: 100%;
    position: relative;
}

/* Desktop positioning */
@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
    }

    .navbar-nav>.nav-item#authButtons,
    .navbar-nav>.nav-item#registerButton,
    .navbar-nav>.nav-item#profileDropdownContainer {
        position: absolute;
        right: 0;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .navbar-nav>.nav-item#authButtons {
        right: 80px;
    }

    .navbar-nav>.nav-item#registerButton {
        right: 0;
    }

    .navbar-nav>.nav-item#profileDropdownContainer {
        right: 0;
    }

    .navbar-nav>.nav-item:not(#authButtons):not(#registerButton):not(#profileDropdownContainer) {
        margin: 0;
    }
}

.navbar.scrolled {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    color: white !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.logo-image {
    height: 40px;
    width: auto;
}

.logo-circle {
    width: 40px;
    height: 40px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.nav-link {
    color: white !important;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0px;
    opacity: 0.8;
    margin: 0 0.5rem;
    transition: color 0.3s ease, opacity 0.3s ease;
    text-align: center;
}

.nav-link:hover {
    color: var(--primary-blue) !important;
    opacity: 1;
}

.navbar.scrolled .nav-link {
    color: var(--dark-gray) !important;
    opacity: 1;
}

.btn-login {
    background-color: transparent;
}

.navbar.scrolled .btn-login {
    background-color: transparent;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.btn-login:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.navbar.scrolled .btn-login:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.btn-register {
    background-color: var(--primary-blue);
    color: white;
}

.btn-register:hover {
    background-color: var(--light-blue);
    color: white;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("../images/hero-image.png") center/cover;
    color: white;
    text-align: center;
    padding: 16rem 0rem;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    /* #00000066 = rgba(0, 0, 0, 102/255) */
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

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

.btn-book-now {
    background-color: var(--primary-blue);
    color: white;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    transition: transform 0.2s;
}

.btn-book-now:hover {
    transform: translateY(-2px);
    background-color: var(--light-blue);
    color: white;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 4rem;
}

/* Services Section */
.services-section {
    background-color: white;
    padding-bottom: 4rem;
}

.service-card {
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 200px;
    background-color: #e5e7eb;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image i {
    font-size: 3rem;
    color: #9ca3af;
}

.favorite-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ef4444;
    font-size: 1.5rem;
    cursor: pointer;
}

.service-card-body {
    padding: 1.5rem;
}

.service-card-body h5 {
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.service-info {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.btn-view-detail {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    width: 100%;
    margin-top: 1rem;
    font-weight: 500;
}

.btn-view-detail:hover {
    background-color: var(--light-blue);
    color: white;
}

/* How It Works Section */
.how-it-works-section {
    background-color: white;
    padding-bottom: 4rem;
}

.how-it-works-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.step-card {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step-description {
    color: #6b7280;
    line-height: 1.6;
}

/* About Us Section */
.about-section {
    background-color: white;
    padding-bottom: 4rem;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--dark-gray);
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: center;
}

/* Contact Section */
.contact-section {
    background-color: var(--light-gray);
    padding-bottom: 4rem;
}

.contact-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border: 2px solid;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-card.whatsapp {
    border-color: var(--whatsapp-green);
}

.contact-card.email {
    border-color: var(--email-pink);
}

.contact-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.contact-icon-image {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    object-fit: contain;
}

.contact-card.whatsapp .contact-icon {
    color: var(--whatsapp-green);
}

.contact-card.email .contact-icon {
    color: var(--email-pink);
}

.contact-card-content {
    flex: 1;
}

.contact-card h5 {
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-card.whatsapp h5 {
    color: var(--whatsapp-green);
}

.contact-card.email h5 {
    color: var(--email-pink);
}

.contact-info {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.contact-card.whatsapp .contact-info {
    color: var(--whatsapp-green);
}

.contact-card.email .contact-info {
    color: var(--email-pink);
}

/* Footer */
.footer {
    background-color: var(--light-gray);
    padding: 3rem 0 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: #6b7280;
    margin-top: 0.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-heading {
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

/* Login Page (Separate Page) */
.login-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("../images/hero-image.png") center/cover;
    background-attachment: fixed;
    padding: 2rem;
}

.login-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.login-page .login-container {
    background-color: white;
    border-radius: 1rem;
    padding: 2.5rem;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.register-page .register-container {
    max-width: 550px;
}

.login-page .login-container form {
    margin-top: 0;
}

/* Login Modal */
.login-modal .modal-dialog {
    max-width: 500px;
    margin: 2rem auto;
}

.login-modal .modal-content {
    border-radius: 1rem;
    border: none;
    overflow: hidden;
    background: transparent;
}

.login-modal .modal-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

.login-modal .modal-body {
    padding: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url("https://images.unsplash.com/photo-1622163642999-95847426349b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80") center/cover;
    background-attachment: fixed;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form-container {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 2rem;
}

.login-page .login-container .login-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.back-to-home {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-gray);
    text-decoration: none;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.back-to-home:hover {
    color: var(--primary-blue);
}

.back-to-home i {
    font-size: 1.2rem;
}

.login-title {
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.login-instruction {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 0;
}

.form-label {
    color: var(--dark-gray);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    width: 100%;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(29, 131, 187, 0.25);
    outline: none;
}

.password-label-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    width: 100%;
}

.forgot-password {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: var(--light-blue);
}

.btn-login-modal {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    width: 100%;
    font-size: 1rem;
    transition: background-color 0.3s;
    margin-top: 0.5rem;
    cursor: pointer;
}

.btn-login-modal:hover {
    background-color: var(--light-blue);
    color: white;
}

.register-link-container {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.register-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.register-link:hover {
    color: var(--light-blue);
}

/* Register Modal */
.register-modal .modal-dialog {
    max-width: 500px;
    margin: 2rem auto;
}

.register-modal .modal-content {
    border-radius: 1rem;
    border: none;
    overflow: hidden;
    background: transparent;
}

.register-modal .modal-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

.register-modal .modal-body {
    padding: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url("https://images.unsplash.com/photo-1622163642999-95847426349b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80") center/cover;
    background-attachment: fixed;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-form-container {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 2rem;
    max-height: 90vh;
    overflow-y: auto;
}

.register-title {
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.register-instruction {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-register-modal {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    width: 100%;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.btn-register-modal:hover {
    background-color: var(--light-blue);
    color: white;
}

.login-link-container {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.login-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.login-link:hover {
    color: var(--light-blue);
}

/* Login Mode Toggle */
.login-mode-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem;
    background-color: var(--light-gray);
    border-radius: 0.5rem;
}

.mode-option {
    flex: 1;
    text-align: center;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    color: #6b7280;
}

.mode-option.active {
    background-color: white;
    color: var(--primary-blue);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #fef3c7;
    color: #92400e;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    margin-left: 0.5rem;
}

.login-form-container.admin-mode .login-title {
    color: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.login-form-container.admin-mode .btn-login-modal {
    background-color: #f59e0b;
}

.login-form-container.admin-mode .btn-login-modal:hover {
    background-color: #d97706;
}

.mode-option.admin-active {
    background-color: #fef3c7;
    color: #92400e;
}

.mode-option.admin-active.active {
    background-color: white;
    color: #f59e0b;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.2);
}

.hidden {
    display: none !important;
}

/* Profile Pages */
.profile-section {
    background-color: var(--light-gray);
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 4rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 100;
    width: 100%;
}

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

.profile-header {
    margin-bottom: 2rem;
}

.profile-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 0;
}

.profile-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

#profileDetailPage .profile-card {
    margin-bottom: 1.5rem;
}

.profile-picture-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 2rem;
}

#profileDetailPage .profile-picture-container {
    align-items: center;
}

.profile-picture {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    border: 2px solid #e5e7eb;
}

.profile-picture-small {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-blue);
}

.profile-info {
    flex: 1;
}

.profile-info-item {
    margin-bottom: 1.5rem;
}

.profile-info-label {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: block;
}

.profile-info-value {
    color: var(--dark-gray);
    font-weight: bold;
    font-size: 1.1rem;
}

.btn-upload-photo {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-upload-photo:hover {
    background-color: var(--light-blue);
    color: white;
}

.btn-delete-photo {
    background-color: #ef4444;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-delete-photo:hover {
    background-color: #dc2626;
    color: white;
}

.btn-save-data {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    margin: 0 auto;
    display: block;
    transition: background-color 0.3s;
    cursor: pointer;
}

.btn-save-data:hover {
    background-color: var(--light-blue);
    color: white;
}

.btn-ubah-data {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    margin: 0 auto;
    display: block;
    transition: background-color 0.3s;
    cursor: pointer;
}

.btn-ubah-data:hover {
    background-color: var(--light-blue);
    color: white;
}

.profile-form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.profile-form-left {
    flex: 0 0 250px;
}

.profile-form-left .profile-picture-container {
    align-items: center;
    margin-right: 0;
}

.profile-form-right {
    flex: 1;
}

.profile-dropdown {
    position: relative;
    display: inline-block;
}

.profile-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s;
}

.profile-dropdown-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .profile-dropdown-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.profile-dropdown-toggle i {
    color: white;
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 0.875rem;
}

.profile-initials {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.profile-name {
    color: white;
    font-weight: 500;
    white-space: nowrap;
}

.navbar.scrolled .profile-name {
    color: var(--dark-gray);
}

.navbar.scrolled .profile-dropdown-toggle i {
    color: var(--dark-gray);
}

.navbar.scrolled .text-white {
    color: var(--dark-gray) !important;
}

.profile-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    display: none;
    z-index: 1000;
}

@media (max-width: 991.98px) {
    .profile-dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 0.5rem;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }
}

.profile-dropdown-menu.show {
    display: block;
}

.profile-dropdown-item {
    padding: 0.75rem 1.5rem;
    color: var(--dark-gray);
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.profile-dropdown-item:hover {
    background-color: var(--light-gray);
    color: var(--primary-blue);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .navbar .container {
        padding: 0 1rem;
        position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-brand {
        position: relative;
        margin-right: auto;
        z-index: 1051;
    }

    .navbar-toggler {
        position: relative;
        z-index: 1051;
        display: block !important;
        border: 1px solid rgba(255, 255, 255, 0.5);
        padding: 0.25rem 0.5rem;
        margin-left: auto;
    }

    .navbar.scrolled .navbar-toggler {
        border-color: rgba(0, 0, 0, 0.1);
    }

    .navbar-collapse {
        flex-basis: 100%;
        flex-grow: 1;
        align-items: center;
        width: 100%;
        margin-top: 0;
        padding: 0;
        background-color: white;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Ensure collapse is hidden by default on mobile */
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1050;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .navbar-collapse.show {
        display: block !important;
    }

    .navbar.scrolled .navbar-collapse {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        background-color: white;
    }

    .navbar-nav {
        text-align: left;
        margin: 0;
        width: 100%;
        flex-direction: column;
        align-items: stretch !important;
        padding: 0;
    }

    .navbar-nav .nav-item {
        width: 90%;
        margin: 0;
        padding: 0;
    }

    .navbar-nav .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        text-align: left;
        width: 100%;
    }

    .btn-login,
    .btn-register {
        width: 100%;
        margin: 0.5rem 0;
        display: block;
    }

    #profileDropdownContainer {
        width: 100%;
        margin: 0 !important;
        padding: 0;
    }

    .profile-dropdown {
        width: 100%;
        justify-content: flex-start;
    }

    .profile-dropdown-toggle {
        width: 100%;
        justify-content: flex-start;
        padding: 0.75rem 1rem;
        background-color: transparent;
        border-radius: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        color: var(--dark-gray);
    }

    .profile-dropdown-toggle:hover {
        background-color: var(--light-gray);
    }

    .navbar.scrolled .profile-dropdown-toggle {
        background-color: transparent;
    }

    .profile-dropdown-toggle i {
        color: var(--dark-gray) !important;
        margin-left: auto;
    }

    .profile-name {
        color: var(--dark-gray) !important;
    }

    .profile-dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 0;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        background-color: var(--light-gray);
        border-radius: 0;
        padding: 0.5rem 0;
    }

    .profile-initials {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: var(--primary-blue);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 1.1rem;
    }

    .navbar.scrolled .profile-initials {
        background-color: var(--primary-blue);
    }

    .login-page {
        padding: 1rem;
    }

    .login-page .login-container {
        padding: 1.5rem;
    }

    .login-page .login-container .login-title {
        font-size: 1.5rem;
    }

    .login-modal .modal-dialog {
        margin: 0.5rem;
    }

    .login-modal .modal-body {
        min-height: 100vh;
        padding: 1rem 0;
    }

    .login-form-container {
        padding: 1.5rem;
        margin: 1rem;
        max-width: 100%;
    }

    .login-title {
        font-size: 1.5rem;
    }

    .register-modal .modal-dialog {
        margin: 0.5rem;
    }

    .register-modal .modal-body {
        min-height: 100vh;
        padding: 1rem 0;
    }

    .register-form-container {
        padding: 1.5rem;
        margin: 1rem;
        max-width: 100%;
    }

    .register-title {
        font-size: 1.5rem;
    }

    .profile-form-row {
        flex-direction: column;
    }

    .profile-form-left {
        flex: 1;
    }

    .profile-picture {
        width: 150px;
        height: 200px;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
    }
}


.py-10 {
    padding-top: 7rem;
    padding-bottom: 7rem;
}

/* Main Content */
.main-content {
    padding: 2rem 0;
}

.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    text-align: center;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    text-align: center;
}

/* Search Bar */
.search-container {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.search-input-wrapper {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.3s;
    background-color: white;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1.25rem;
}

/* Section Title */
.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

/* GOR Cards */
.gor-card {
    background-color: white;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border: 1px solid #e5e7eb;
}

.gor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.gor-image {
    width: 100%;
    height: 200px;
    background-color: #e5e7eb;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
}

.gor-image i {
    font-size: 3rem;
}

.favorite-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ef4444;
    font-size: 1.5rem;
    cursor: pointer;
    background-color: white;
    border-radius: 50%;
    padding: 0.5rem;
    transition: transform 0.2s;
}

.favorite-icon:hover {
    transform: scale(1.1);
}

.gor-card-body {
    padding: 1.5rem;
}

.gor-card-body h5 {
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.gor-info {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.btn-view-detail {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    width: 100%;
    margin-top: 1rem;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-view-detail:hover {
    background-color: var(--light-blue);
    color: white;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }
}



.back-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-gray);
    text-decoration: none;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--primary-blue);
}

/* Image Carousel */
.image-carousel {
    width: 100%;
    height: 400px;
    background-color: #e0f2fe;
    border-radius: 0.75rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    overflow: hidden;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.carousel-image.active {
    display: block;
}

.carousel-placeholder {
    color: #6b7280;
    font-size: 1.5rem;
    font-weight: 500;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s;
    z-index: 10;
}

.carousel-nav:hover {
    background-color: var(--light-gray);
}

.carousel-nav.prev {
    left: 1rem;
}

.carousel-nav.next {
    right: 1rem;
}

/* Venue Info */
.venue-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.venue-name {
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-gray);
    margin: 0;
}

.favorite-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ef4444;
    cursor: pointer;
    transition: transform 0.2s;
}

.favorite-btn:hover {
    transform: scale(1.1);
}

.venue-info {
    background-color: white;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

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

.info-label {
    font-weight: 600;
    margin-right: 0.5rem;
}

/* Description */
.description-section {
    background-color: white;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
}

.section-heading {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.description-text {
    color: #6b7280;
    line-height: 1.8;
}

/* Facilities */
.facilities-section {
    background-color: white;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
}

.facilities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.facility-badge {
    background-color: var(--primary-blue);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    border: none;
}

/* Booking Button */
.booking-section {
    bottom: 0;
    margin-top: 2rem;
}

.btn-booking {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    transition: background-color 0.3s;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.btn-booking:hover {
    background-color: var(--light-blue);
    color: white;
}

@media (max-width: 768px) {
    .image-carousel {
        height: 300px;
    }

    .venue-name {
        font-size: 1.5rem;
    }

    .facilities-list {
        flex-direction: column;
    }

    .facility-badge {
        width: 100%;
    }
}

/* Booking Page Styles */
.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.booking-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.booking-prepare-section {
    background-color: white;
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.prepare-section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.prepare-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.prepare-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.check-icon {
    color: #10b981;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.prepare-content {
    flex: 1;
}

.prepare-content strong {
    display: block;
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.prepare-content p {
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.booking-important-section {
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.important-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #92400e;
    margin-bottom: 1rem;
}

.important-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.important-list li {
    color: #78350f;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.important-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: bold;
    font-size: 1.2rem;
}

.important-list li:last-child {
    margin-bottom: 0;
}

.booking-form-section {
    text-align: center;
    margin-bottom: 2rem;
}

.btn-booking-form {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: background-color 0.3s;
    cursor: pointer;
}

.btn-booking-form:hover {
    background-color: var(--light-blue);
    color: white;
}

.btn-booking-form i {
    font-size: 1.3rem;
}

.booking-disclaimer {
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
    .booking-title {
        font-size: 2rem;
    }

    .booking-subtitle {
        font-size: 1rem;
    }

    .booking-prepare-section {
        padding: 1.5rem;
    }

    .prepare-section-title {
        font-size: 1.25rem;
    }

    .btn-booking-form {
        width: 100%;
        justify-content: center;
    }
}
