:root {
    --primary-gold: #cf9d6c;
    --primary-gold-hover: #b68b5e;
    --dark-bg: #1a1a1a;
    --text-dark: #333;
    --text-light: #f8f9fa;
    --overlay-dark: rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

/* Helper Classes */
.btn-gold {
    background-color: var(--primary-gold);
    color: #fff !important;
    border: none;
    border-radius: 5px;
    padding: 10px 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--primary-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(207, 157, 108, 0.4);
}

/* Site Wrapper - Wide Layout */
.site-wrapper {
    width: 96%;
    max-width: 1600px;
    margin: 0 auto;
}

/* ================= HEADER ================= */
header {
    padding: 15px 0;
    transition: background 0.3s ease, padding 0.3s ease;
}

/* Header Scrolled State */
header.scrolled {
    background: rgba(17, 17, 17, 0.4);
    /* Semi-transparent */
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

/* Ensure the header itself doesn't cut off the hanging logo */
header {
    overflow: visible !important;
}

/* --- LOGO ANIMATION (FIXED & SMOOTH) --- */
.logo-col {
    position: relative;
    z-index: 1050;
    /* Ensure logo stays on top */
}

.logo-link {
    display: block;
    position: absolute;
    top: -20px;
    /* Start Position: Overlapping Hero */
    left: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* Long smooth glide */
}

.logo-img {
    height: 140px;
    /* Start Size: Large */
    width: auto;
    max-height: none !important;
    /* CRITICAL: Force override any limits */
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Logo Scrolled State - Transitions Smoothly */
header.scrolled .logo-link {
    top: -38px;
    /* End Position: Lifted up as requested */
}

header.scrolled .logo-img {
    height: 80px !important;
    /* End Size: Compact */
    filter: none;
}

/* Social Icons */
.social-link {
    color: #fff;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--primary-gold);
}

/* Contacts */
.contact-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--primary-gold);
}

/* Navbar */
.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1rem;
    padding: 0 15px;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-gold) !important;
}

/* ================= HERO ================= */
.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    animation: zoomEffect 20s infinite alternate;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    z-index: 2;
}

.container {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 4rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #f1f1f1;
    margin-bottom: 2rem;
}

/* Swiper Nav */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-gold);
}

.swiper-pagination-bullet-active {
    background: var(--primary-gold);
}

/* ================= BOOKING OVERLAP ================= */
.booking-overlap-section {
    position: relative;
    z-index: 10;
    margin-top: -100px;
    margin-bottom: 50px;
    padding: 0 15px;
}

.booking-card {
    background: #222;
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-top: 4px solid var(--primary-gold);
}

.booking-title {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.booking-card .form-control,
.booking-card .form-select {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 5px;
    padding: 10px 15px;
}

.booking-card .form-control:focus,
.booking-card .form-select:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-gold);
    box-shadow: none;
}

.booking-card ::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .site-wrapper {
        width: 100%;
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .booking-overlap-section {
        margin-top: 0;
        padding-top: 40px;
        background: #222;
    }

    .booking-card {
        box-shadow: none;
        border-radius: 0;
        background: transparent;
    }

    header {
        background: #111;
    }
}

/* ================= SECTIONS & COMPONENTS ================= */

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    display: block;
    text-align: center;
    color: var(--text-dark);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
    margin: 10px auto 0;
}

.text-gold {
    color: var(--primary-gold) !important;
}

.bg-dark {
    background-color: var(--dark-bg) !important;
}

/* Buttons Outline */
.btn-outline-gold {
    border: 2px solid var(--primary-gold);
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 5px;
}

.btn-outline-gold:hover {
    background: var(--primary-gold);
    color: #fff;
}

/* Rooms Cards */
.room-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    height: 100%;
}

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

.room-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.price-tag {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-gold);
    color: #fff;
    padding: 5px 15px;
    font-weight: 700;
    border-top-left-radius: 10px;
}

.room-content {
    padding: 20px;
}

.room-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.room-thumbs img {
    height: 50px;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
}

.room-icons img {
    height: 24px;
    opacity: 0.7;
}

/* About & Relax Styles */
.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Why Us */
.feature-box {
    padding: 20px;
    border-radius: 10px;
    transition: background 0.3s;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.05);
}

.invert-icon {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

/* Reviews */
.review-card {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin: 20px;
}

.review-avatar {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid var(--primary-gold);
}

.review-author {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* CTA */
.cta-section {
    position: relative;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
}

.cta-section .overlay {
    background: rgba(0, 0, 0, 0.6);
}

/* Footer */
footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Animation Utilities */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Room Details & Carousel Styling */
.detail-label {
    font-size: 0.9rem;
    color: #666;
}

.detail-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.room-thumbs-swiper {
    width: 100%;
    margin-bottom: 20px;
}

.room-thumbs-swiper .swiper-slide img {
    width: 100%;
    height: 60px;
    /* Thumbnail height */
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.room-thumbs-swiper .swiper-slide img:hover {
    opacity: 0.8;
}

/* Ensure GLightbox works well with rounded corners */
.glightbox-clean .gslide-title {
    color: #fff;
}

/* Room Details & Carousel Styling */
.detail-label {
    font-size: 0.9rem;
    color: #666;
}

.detail-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.room-thumbs-swiper {
    width: 100%;
    margin-bottom: 20px;
}

.room-thumbs-swiper .swiper-slide img {
    width: 100%;
    height: 60px;
    /* Thumbnail height */
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.room-thumbs-swiper .swiper-slide img:hover {
    opacity: 0.8;
}

/* Ensure GLightbox works well with rounded corners */
.glightbox-clean .gslide-title {
    color: #fff;
}

/* Room Icons - Uniform Size */
.room-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Spacing between icons */
}

.room-icons img {
    height: 32px;
    /* Fixed Height */
    width: auto;
    /* Auto width to maintain aspect ratio, or fixed if requested */
    max-width: 32px;
    /* Ensure they don't get too wide */
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.room-icons img:hover {
    opacity: 1;
}

/* Room Icons - Bigger and Even */
.room-icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Evenly distributed */
    margin-top: 15px;
    padding: 0 5px;
}

.room-icons img {
    height: 40px;
    /* Bigger Size */
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: transform 0.3s;
}

.room-icons img:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* Feature Icons Alignment */
.feature-icon-wrapper {
    width: 90px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon-wrapper img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

/* Abstract Background Shapes */
.abstract-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    filter: blur(80px);
    opacity: 0.4;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: #cf9d6c;
    /* Gold */
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: #5d5652;
    /* Lighter brown/grey */
    bottom: -150px;
    right: -100px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Gallery */
.gallery-thumb {
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-thumb:hover {
    transform: scale(1.05);
    z-index: 2;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}




#booking {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

#rooms {
    padding-top: 20px !important;
}

#booking {
    margin-top: -200px !important;
    /* Move SECTION up to overlap hero */
    position: relative;
    z-index: 20;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    background: none !important;
    /* Ensure no background */
}

.booking-card {
    background-image: url('../images/cta_bg.jpg') !important;
    background-size: cover;
    background-position: center;
    margin-top: 0;
    /* Reset card margin, let section handle overlap */
    position: relative;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-card .overlay {
    background: rgba(0, 0, 0, 0.8) !important;
}

/* Date Input Icons White */
input[type='date']::-webkit-calendar-picker-indicator {
    /* filter: invert(1); Removed to avoid conflict with color-scheme: dark */
    cursor: pointer;
}

/* Highlight clickable inputs */
input[type='date'],
input#guests-summary {
    cursor: pointer;
}


/* Guest Dropdown Overrides */
.booking-card .dropdown-menu .form-control {
    background-color: #fff !important;
    color: #333 !important;
    border: 1px solid #ced4da !important;
}

.booking-card .dropdown-menu .btn-outline-secondary {
    color: #333 !important;
    border-color: #ced4da !important;
}

.booking-card .dropdown-menu .btn-outline-secondary:hover {
    background-color: #e9ecef !important;
}

/* Fix Select Options Color */
.booking-card select option,
.booking-card option {
    color: #333 !important;
    background: #fff !important;
}

/* Fix Global Overflow */
html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Mobile Styles Update */
@media (max-width: 991px) {

    /* 1. Logo Fixes */
    .logo-img {
        height: 55px !important;
        margin-top: -10px !important;
    }

    /* 2. Absolute Header (Not Fixed) */
    header {
        position: absolute !important;
        top: 0;
        width: 100%;
        z-index: 1050;
        background: rgba(17, 17, 17, 0.95) !important;
    }

    /* 3. Mobile Menu Styling */
    .navbar-collapse {
        background: rgba(17, 17, 17, 0.98);
        position: fixed;
        top: 60px;
        /* Below header */
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        padding: 20px;
        overflow-y: auto;
        transform: translateX(0);
        /* Fix shift? */
    }

    .navbar-nav .nav-link {
        font-size: 1.3rem;
        text-align: center;
        padding: 10px 0;
    }

    /* Burger Icon Swap */
    .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
    }

    .navbar-toggler.collapsed .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%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .navbar-toggler {
        border: none;
        box-shadow: none !important;
    }

    /* 4. Booking Section Full Width */
    .booking-overlap-section {
        padding: 0 !important;
    }

    .booking-overlap-section .container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .booking-card {
        margin: 0;
        border-radius: 0;
        width: 100%;
        padding: 10px !important;
    }

    .booking-card form {
        padding: 0 15px;
    }

    .booking-card .dropdown-menu {
        min-width: auto !important;
        width: 100% !important;
    }

    /* 5. Fix Menu Shift - Reset Body/Html */
    body {
        position: relative;
        left: 0;
        transition: none;
    }

    /* 6. Smaller Headings */
    .hero-title {
        font-size: 2.2rem !important;
    }

    h2,
    .section-title {
        font-size: 1.8rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    h4 {
        font-size: 1.25rem !important;
    }

    /* 7. Compact Modal Styles */
    #bookingModal .booking-card {
        padding: 15px !important;
    }

    #bookingModal .booking-title {
        font-size: 1.4rem !important;
        margin-bottom: 15px !important;
    }

    #bookingModal .form-label {
        margin-bottom: 0px !important;
        font-size: 0.8rem !important;
    }

    #bookingModal .btn-lg {
        padding-top: 0.6rem !important;
        padding-bottom: 0.6rem !important;
        font-size: 0.9rem !important;
        margin-top: 10px !important;
    }

    #bookingModal .mb-4 {
        margin-bottom: 0.5rem !important;
        /* Further reduce header margin */
    }

    /* 8. Compact Feature Icons Grid (Mobile) */
    #about .row .col-6.d-flex,
    #chill .row .col-6.d-flex {
        width: 50% !important;
        flex-direction: column !important;
        text-align: center !important;
        padding: 0 5px !important;
        margin-bottom: 15px !important;
    }

    #about .feature-icon-wrapper,
    #chill .feature-icon-wrapper {
        width: 40px !important;
        height: 40px !important;
        margin-right: 0 !important;
        margin-bottom: 5px !important;
        justify-content: center !important;
        margin: 0 auto !important;
        /* Center the wrapper */
    }

    #about .feature-icon-wrapper img,
    #chill .feature-icon-wrapper img {
        height: 40px !important;
        width: 40px !important;
    }

    #about span.small,
    #chill span.small {
        font-size: 0.6rem !important;
        line-height: 1.1;
        display: block;
        width: 100%;
        word-wrap: break-word;
    }
}

/* Modal Overlay - Dark & Blurred */
.modal-backdrop.show {
    opacity: 0.95 !important;
    backdrop-filter: blur(8px);
    background-color: #000 !important;
}

/* Gallery Slider Styles */
.gallery-swiper .img-fluid {
    height: 300px !important;
    width: 100%;
    object-fit: cover;
}

.gallery-swiper {
    padding-bottom: 40px;
    /* Space for dots */
    overflow: visible !important;
    /* Allow arrows outside */
    position: relative;
}

.gallery-next {
    right: -50px !important;
}

.gallery-prev {
    left: -50px !important;
}

@media (max-width: 768px) {
    .gallery-pagination {
        display: none !important;
    }

    /* Target the navigation container specifically on mobile */
    .gallery-navigation {
        position: absolute;
        width: 100%;
        left: 0;
        top: 5px;
        /* Adjust based on title height */
        justify-content: space-between !important;
        padding: 0 5px;
        z-index: 10;
        pointer-events: none;
        /* Allow clicks on text below if any */
    }

    .gallery-prev,
    .gallery-next {
        position: relative !important;
        /* Reset from absolute desktop styles */
        left: auto !important;
        right: auto !important;
        pointer-events: auto;
        width: 40px !important;
        /* Ensure touch target */
        height: 40px !important;
    }

    /* Ensure the parent row has relative positioning (will add class in HTML) */
}

.gallery-pagination {
    bottom: 0 !important;
    /* Move to bottom padding area */
}

/* Pricing Table */
.pricing-table-wrapper {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    background: #fff;
    margin-bottom: 2rem;
    border-bottom: 3px solid var(--primary-gold);
}

.pricing-table {
    margin-bottom: 0 !important;
    border: none !important;
}

.pricing-table thead th {
    background-color: var(--primary-gold);
    color: #fff;
    vertical-align: middle;
    text-align: center;
    border: none;
    padding: 20px 15px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.pricing-table tbody td {
    vertical-align: middle;
    text-align: center;
    padding: 18px 15px;
    border: none;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    color: var(--text-dark);
}

/* Alternating rows */
.pricing-table tbody tr:nth-of-type(even) {
    background-color: #f9f9f9;
}

.pricing-table tbody tr:hover {
    background-color: #fffbf0;
    transition: background-color 0.3s ease;
}

.pricing-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #333;
}

/* Remove border from last row */
.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table-note {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    background: #fff;
    padding: 20px;
    border-left: 4px solid var(--primary-gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 1.5rem;
    border-radius: 0 5px 5px 0;
}

@media (max-width: 768px) {
    .pricing-table-wrapper {
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        overflow: visible;
        border-bottom: none;
    }

    .pricing-table thead {
        display: none;
    }

    .pricing-table tbody,
    .pricing-table tr,
    .pricing-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .pricing-table tr {
        margin-bottom: 25px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        border: 1px solid #eee;
    }

    .pricing-table td:first-child {
        background-color: var(--primary-gold);
        color: #fff;
        text-align: center;
        padding: 15px;
        font-family: 'Playfair Display', serif;
        font-size: 1.15rem;
        border-bottom: 4px solid #b68b5e;
        min-width: unset;
        display: block;
    }

    .pricing-table td {
        text-align: right;
        padding: 12px 20px;
        position: relative;
        border-bottom: 1px solid #f1f1f1;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .pricing-table td::before {
        content: attr(data-label);
        font-weight: 600;
        text-align: left;
        padding-right: 15px;
        color: #888;
        font-size: 0.9rem;
    }

    .pricing-table td:first-child::before {
        display: none;
    }

    .pricing-table td:last-child {
        border-bottom: none;
    }
}
/* ================= USER REQUESTS ================= */

/* 1. Modal Backdrop Opacity */
.modal-backdrop.show {
    background-color: #00000069 !important;
}

/* 2. Modal Form Width for PC */
@media (min-width: 992px) {
    .modal-lg {
        max-width: 970px !important;
    }
}
