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

:root {
    --bg-dark: #2a2a2a;
    --bg-hover: #3a3a3a;
    --text-light: #fff;
    --text-gray: #b0b0b0;
    --text-muted: #ccc;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #1a1a1a;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridMove 5s linear infinite;
    color: #f0f0f0;
    line-height: 1.6;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 40px;
    }
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    padding: 60px 20px 60px 40px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
                url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80&grayscale');
    background-size: 100% 100%;
    background-position: center;
    color: #fff;
    border-radius: 0 0 20px 20px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-text {
    margin-left: 0;
}

.header-logo {
    width: 80px;
    height: 60px;
    object-fit: contain;
    border-radius: 10px;
}

.header-top {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.login-btn {
    padding: 8px 20px;
    background: var(--bg-dark);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid #fff;
    transition: all 0.3s ease;
    font-weight: 600;
}

.login-btn:hover {
    background: var(--bg-hover);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.about-us {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f0f0f0;
    margin: 0;
    text-align: center;
}

.shiny-text {
    background: linear-gradient(120deg, #666 0%, #666 30%, #ccc 50%, #666 70%, #666 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 2s linear infinite;
}

@keyframes shine {
    0% {
        background-position: 150% center;
    }
    100% {
        background-position: -50% center;
    }
}

header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Contact Card Flip Animation */
.card {
    overflow: visible;
    width: 190px;
    height: 254px;
}

.content {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.3s;
    box-shadow: 0 0 10px 1px #000000ee;
    border-radius: 5px;
}

.front,
.back {
    background: #151515;
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 5px;
    overflow: hidden;
}

.front-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.back {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotateY(180deg);
}

.back::before {
    position: absolute;
    content: ' ';
    display: block;
    width: 160px;
    height: 160%;
    background: linear-gradient(90deg, transparent, #ff9966, #ff9966, #ff9966, #ff9966, transparent);
    animation: rotation_481 5s infinite linear;
}

.back-content {
    position: absolute;
    width: 99%;
    height: 99%;
    background: #151515;
    border-radius: 5px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.card:hover .content {
    transform: rotateY(180deg);
}

@keyframes rotation_481 {
    0% {
        transform: rotateZ(0);
    }
    100% {
        transform: rotateZ(360deg);
    }
}

/* Social Icons */
.wrapper {
    display: inline-flex;
    list-style: none;
    height: 120px;
    width: 100%;
    padding-top: 40px;
    font-family: "Poppins", sans-serif;
    justify-content: center;
}

.wrapper .icon {
    position: relative;
    background: #fff;
    border-radius: 50%;
    margin: 10px;
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.social-icon-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.wrapper .tooltip {
    position: absolute;
    top: -45px;
    font-size: 14px;
    background: #fff;
    color: #000;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 1;
    pointer-events: auto;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #fff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
    top: -50px;
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
    background: #1877f2;
    color: #fff;
}

.wrapper .twitter:hover,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before {
    background: #1da1f2;
    color: #fff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
    background: #e4405f;
    color: #fff;
}

/* Section Styles */
.section {
    margin-bottom: 50px;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-dark);
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background 0.5s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    background: var(--bg-hover);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.contact-item:hover .phone-link {
    color: #fff;
}

.contact-icon {
    font-size: 1.5rem;
}

.phone-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #ccc;
}

/* Rooms Carousel */
.rooms-carousel {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
    margin-bottom: 40px;
    width: 100%;
    flex-wrap: wrap;
}

.room-card {
    background: rgba(26, 26, 26, 0.7);
    padding: 15px;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: transform 0.3s ease, background 0.5s ease;
    position: relative;
    min-width: 220px;
    cursor: default;
    border: 2px solid transparent;
}

.room-card:hover {
    background: var(--bg-hover);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
    border-color: #fff;
}

.room-card:hover .room-name,
.room-card:hover .room-price,
.room-card:hover .room-features li {
    color: #fff;
}


.room-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.room-content {
    padding: 14px;
    position: relative;
    z-index: 1;
}

.room-name {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
}

.room-price {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 12px;
}

.room-features {
    list-style: none;
    padding: 0;
}

.room-features li {
    padding: 4px 0;
    color: #ccc;
    position: relative;
    padding-left: 25px;
    font-size: 0.85rem;
}

.room-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: 700;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    color: #1a1a1a;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.cta-container {
    text-align: center;
    margin-top: 40px;
    padding-bottom: 40px;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background: #333;
    color: #fff;
    border-radius: 15px 15px 0 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

footer p {
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social-link {
    color: #f0f0f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social-link:hover {
    color: #fff;
}

/* Policies */
.policies-grid {
    display: grid;
    gap: 15px;
}

.policy-item {
    background: rgba(26, 26, 26, 0.7);
    padding: 20px;
    border-radius: 10px;
    transition: background 0.5s ease;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.policy-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y),
                            rgba(255, 255, 255, 0.3),
                            transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.policy-item:hover::before {
    opacity: 1;
}

.policy-item:hover {
    background: var(--bg-hover);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4), 0 0 20px rgba(255, 255, 255, 0.2);
}

.policy-item:hover h3,
.policy-item:hover p {
    color: #fff;
}

.policy-item h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.policy-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Mobile Warning */
.mobile-warning {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.warning-content {
    background: #1a1a1a;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 420px;
    border: 1px solid #444;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.warning-content h2 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 300;
}

.warning-content p {
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1rem;
}

.dismiss-btn {
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    color: #1a1a1a;
    border: none;
    padding: 14px 40px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.dismiss-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10001;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: rgba(26, 26, 26, 0.8);
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.modal-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    background: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y),
                            rgba(255, 255, 255, 0.3),
                            transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.modal-content:hover::before {
    opacity: 1;
}

.modal-content:hover {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4), 0 0 20px rgba(255, 255, 255, 0.2);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #ff6b6b;
}

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

.modal-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}


.modal-services {
    margin-bottom: 20px;
}

.modal-services h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.modal-services ul {
    list-style: none;
    padding: 0;
}

.modal-services li {
    color: #b0b0b0;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.modal-services li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #666;
}

.modal-book-btn {
    display: inline-block;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    color: #1a1a1a;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.modal-book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .header-text {
        text-align: center;
    }

    .header-image {
        width: 250px;
        height: 170px;
    }

    header h1 {
        font-size: 2.2rem;
    }

    header p {
        font-size: 1rem;
    }

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

    .contact-info {
        gap: 20px;
    }

    .contact-item {
        padding: 12px 20px;
    }

    .rooms-carousel {
        padding: 15px 0;
    }

    .room-card {
        min-width: 240px;
    }

    .room-image {
        height: 160px;
    }

    .room-content {
        padding: 15px;
    }

    .modal-content {
        padding: 25px;
    }

    .modal-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8rem;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .rooms-carousel {
        padding: 10px 0;
    }

    .room-card {
        min-width: 200px;
    }

    .room-image {
        height: 140px;
    }

    .room-content {
        padding: 12px;
    }

    .room-name {
        font-size: 1.1rem;
    }

    .room-price {
        font-size: 1.3rem;
    }

    .room-features li {
        font-size: 0.75rem;
    }

    .modal-content {
        padding: 20px;
    }

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

    .modal-image {
        height: 150px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 15px;
    }

    /* Hero Section */
    .hero-section {
        flex-direction: column;
        padding: 40px 15px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 10px;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .hero-image {
        width: 100%;
        max-width: 400px;
        margin: 20px auto 0;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        border-radius: 15px;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
        padding: 0 10px;
    }

    .feature-card {
        padding: 20px;
        min-height: auto;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    /* Rooms Preview Grid */
    .rooms-preview-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
        padding: 0 10px;
    }

    .room-preview-card {
        border-radius: 10px;
    }

    .room-preview-card img {
        height: 150px;
    }

    .room-preview-content {
        padding: 15px;
    }

    .room-preview-content h3 {
        font-size: 1.1rem;
    }

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

    .room-preview-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    /* Card Flip */
    .card {
        width: 160px;
        height: 220px;
    }

    .front-img {
        width: 160px;
        height: 220px;
    }

    /* Social Icons */
    .wrapper {
        height: 100px;
        padding-top: 20px;
    }

    .wrapper .icon {
        width: 40px;
        height: 40px;
        margin: 8px;
        font-size: 16px;
    }

    /* Navigation */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-logo span {
        font-size: 1.1rem;
    }

    /* Header */
    header {
        padding: 30px 15px 30px 15px;
        border-radius: 0 0 15px 15px;
    }

    header h1 {
        font-size: 1.8rem;
    }

    header p {
        font-size: 0.95rem;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .header-text {
        text-align: center;
    }

    /* Section */
    .section {
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    /* Contact Section */
    .contact-section {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .contact-info {
        width: 100%;
        gap: 10px;
    }

    .contact-item {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    /* Rooms */
    .rooms-carousel {
        justify-content: center;
        gap: 15px;
        padding: 15px 0;
    }

    .room-card {
        min-width: 160px;
        width: calc(50% - 8px);
    }

    .room-image {
        height: 120px;
    }

    .room-content {
        padding: 12px;
    }

    .room-name {
        font-size: 1.1rem;
    }

    .room-price {
        font-size: 1.3rem;
    }

    .room-features li {
        font-size: 0.8rem;
    }

    /* Nearby Places */
    .nearby-places {
        flex-direction: column;
        gap: 15px;
    }

    .address-box,
    .nearby-landmarks {
        padding: 15px;
    }

    .address-box h3,
    .nearby-landmarks h3 {
        font-size: 1.1rem;
    }

    /* Booking Section */
    .booking-section {
        padding: 30px 15px;
    }

    .booking-container {
        flex-direction: column;
        gap: 20px;
    }

    .booking-form {
        width: 100%;
        padding: 0;
    }

    .booking-info {
        width: 100%;
    }

    .info-card {
        padding: 20px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
        padding: 12px;
    }

    .booking-summary {
        padding: 15px;
        font-size: 0.9rem;
    }

    /* Payment Options */
    .payment-section {
        margin-top: 20px;
    }

    .payment-options {
        flex-direction: column;
        gap: 10px;
    }

    .payment-option {
        width: 100%;
        padding: 12px;
    }

    .payment-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .payment-label {
        font-size: 0.95rem;
    }

    .booking-submit-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }

    /* Modal */
    .modal-content {
        width: 95%;
        max-width: 400px;
        padding: 20px;
        margin: 10px;
    }

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

    .modal-image {
        height: 180px;
    }

    .modal-services h3 {
        font-size: 1.1rem;
    }

    .modal-services li {
        font-size: 0.9rem;
    }

    /* Buttons */
    .cta-button,
    .modal-book-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .edit-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    /* Login Form */
    .flip-card__inner {
        width: 280px;
        height: 320px;
    }

    .flip-card__input {
        width: 220px;
        height: 35px;
        font-size: 14px;
    }

    .flip-card__btn {
        width: 100px;
        height: 35px;
        font-size: 15px;
    }

    .oauthButton {
        width: 220px;
        height: 35px;
        font-size: 15px;
    }

    /* Policies */
    .policies-grid {
        grid-template-columns: 1fr;
    }

    .policy-item {
        padding: 15px;
    }

    .policy-item h3 {
        font-size: 1.1rem;
    }

    .policy-item p {
        font-size: 0.85rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-social {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 10px;
    }

    /* Hero Section */
    .hero-section {
        padding: 30px 10px;
    }

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

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

    .hero-description {
        font-size: 0.85rem;
    }

    .hero-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .hero-image {
        max-width: 100%;
        margin: 15px auto 0;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 5px;
    }

    .feature-card {
        padding: 15px;
    }

    .feature-icon {
        font-size: 1.8rem;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .feature-card p {
        font-size: 0.8rem;
    }

    /* Rooms Preview Grid */
    .rooms-preview-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 5px;
    }

    .room-preview-card img {
        height: 120px;
    }

    .room-preview-content {
        padding: 12px;
    }

    .room-preview-content h3 {
        font-size: 1rem;
    }

    .room-preview-content p {
        font-size: 0.9rem;
    }

    .room-preview-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    /* Card Flip */
    .card {
        width: 140px;
        height: 190px;
    }

    .front-img {
        width: 140px;
        height: 190px;
    }

    /* Navigation */
    .nav-logo img {
        width: 35px;
        height: 35px;
    }

    .nav-logo span {
        font-size: 0.9rem;
    }

    .nav-links {
        padding: 15px;
        gap: 12px;
    }

    .nav-link {
        font-size: 0.95rem;
    }

    /* Header */
    header {
        padding: 25px 10px 25px 10px;
    }

    header h1 {
        font-size: 1.5rem;
    }

    header p {
        font-size: 0.85rem;
    }

    /* Section */
    .section {
        margin-bottom: 25px;
        padding: 0 5px;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    /* Room Cards */
    .rooms-carousel {
        gap: 12px;
    }

    .room-card {
        width: 100%;
        min-width: auto;
    }

    .room-image {
        height: 110px;
    }

    .room-content {
        padding: 10px;
    }

    .room-name {
        font-size: 1rem;
    }

    .room-price {
        font-size: 1.1rem;
    }

    .room-features li {
        font-size: 0.75rem;
    }

    /* Contact Items */
    .contact-item {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .contact-icon {
        font-size: 1.2rem;
    }

    /* Booking Form - Box Layout Responsive */
    .booking-section {
        padding: 40px 10px;
    }

    .booking-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .booking-form {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
        padding: 12px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .booking-summary {
        padding: 15px;
        font-size: 0.9rem;
    }

    .summary-item {
        font-size: 0.9rem;
    }

    .payment-options {
        flex-direction: column;
        gap: 10px;
    }

    .payment-option {
        padding: 12px;
    }

    /* Buttons */
    .cta-button,
    .modal-book-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .edit-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .booking-submit-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    /* Modal */
    .modal-content {
        width: 95%;
        padding: 15px;
    }

    .modal-title {
        font-size: 1.3rem;
    }

    .modal-image {
        height: 150px;
    }

    /* Login Form */
    .flip-card__inner {
        width: 250px;
        height: 300px;
    }

    .flip-card__input {
        width: 200px;
        height: 32px;
        font-size: 13px;
    }

    .flip-card__btn {
        width: 90px;
        height: 32px;
        font-size: 14px;
    }

    .oauthButton {
        width: 200px;
        height: 32px;
        font-size: 14px;
    }

    /* Info Cards */
    .info-card {
        padding: 15px;
    }

    .info-card h3,
    .info-card h4 {
        font-size: 1rem;
    }

    .info-card p {
        font-size: 0.85rem;
    }

    .info-card ul li {
        font-size: 0.8rem;
        padding: 6px 0;
    }
}

/* Nearby Places Section */
.nearby-places {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.address-box,
.nearby-landmarks {
    flex: 1;
    background: var(--bg-dark);
    padding: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background 0.5s ease;
    position: relative;
    border: 2px solid transparent;
    cursor: default;
}

.address-box:hover,
.nearby-landmarks:hover {
    background: var(--bg-hover);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
    border-color: #fff;
}

.address-box:hover h3,
.nearby-landmarks:hover h3,
.address-box:hover p,
.nearby-landmarks:hover li {
    color: #fff;
}

.address-box::before,
.nearby-landmarks::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    padding: 2px;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y),
                            rgba(255, 255, 255, 0.6),
                            transparent 80%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
                    linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.address-box:hover::before,
.nearby-landmarks:hover::before {
    opacity: 1;
}

.address-box h3,
.nearby-landmarks h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.address-box p {
    color: #ccc;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.nearby-landmarks ul {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.nearby-landmarks li {
    color: #fff;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nearby-landmarks li:last-child {
    border-bottom: none;
}

.nearby-landmarks a {
    color: #fff;
    text-decoration: none;
}

.nearby-landmarks a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Loader Styles */
.loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999;
  width: fit-content;
  font-weight: bold;
  font-family: monospace;
  font-size: 30px;
  background: radial-gradient(circle closest-side,#000 94%,#0000) right/calc(200% - 1em) 100%;
  animation: l24 1s infinite alternate linear;
}

.loader::before {
  content: "Loading...";
  line-height: 1em;
  color: #0000;
  background: inherit;
  background-image: radial-gradient(circle closest-side,#fff 94%,#000);
  -webkit-background-clip: text;
  background-clip: text;
}

@keyframes l24 {
  100% {
    background-position: left
  }
}

/* Login Page Styles */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background: #1a1a1a;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

/* Flip Card Login/Signup Styles */
.wrapper {
  --input-focus: #2d8cf0;
  --font-color: #fff;
  --font-color-sub: #ccc;
  --bg-color: #2a2a2a;
  --bg-color-alt: #3a3a3a;
  --main-color: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 50px;
  padding: 20px;
}

/* switch card */
.switch {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 50px;
  height: 20px;
}

.card-side::before {
  position: absolute;
  content: 'Log in';
  left: -70px;
  top: 0;
  width: 100px;
  text-decoration: underline;
  color: var(--font-color);
  font-weight: 600;
}

.card-side::after {
  position: absolute;
  content: 'Sign up';
  left: 70px;
  top: 0;
  width: 100px;
  text-decoration: none;
  color: var(--font-color);
  font-weight: 600;
}

.toggle {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  box-sizing: border-box;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  box-shadow: 4px 4px var(--main-color);
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-color);
  transition: 0.3s;
}

.slider:before {
  box-sizing: border-box;
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  border: 2px solid var(--main-color);
  border-radius: 5px;
  left: -2px;
  bottom: 2px;
  background-color: var(--bg-color);
  box-shadow: 0 3px 0 var(--main-color);
  transition: 0.3s;
}

.toggle:checked + .slider {
  background-color: var(--input-focus);
}

.toggle:checked + .slider:before {
  transform: translateX(30px);
}

.toggle:checked ~ .card-side:before {
  text-decoration: none;
}

.toggle:checked ~ .card-side:after {
  text-decoration: underline;
}

/* card */ 

.flip-card__inner {
  width: 300px;
  height: 350px;
  position: relative;
  background-color: transparent;
  perspective: 1000px;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.toggle:checked ~ .flip-card__inner {
  transform: rotateY(180deg);
}

.toggle:checked ~ .flip-card__front {
  box-shadow: none;
}

.flip-card__front, .flip-card__back {
  padding: 20px;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #3a3a3a;
  gap: 20px;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  box-shadow: 4px 4px var(--main-color);
}

.flip-card__back {
  width: 100%;
  transform: rotateY(180deg);
}

.flip-card__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.title {
  margin: 20px 0 20px 0;
  font-size: 25px;
  font-weight: 900;
  text-align: center;
  color: #fff;
}

.flip-card__input {
  width: 250px;
  height: 40px;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  background-color: var(--bg-color);
  box-shadow: 4px 4px var(--main-color);
  font-size: 15px;
  font-weight: 600;
  color: var(--font-color);
  padding: 5px 10px;
  outline: none;
}

.flip-card__input::placeholder {
  color: var(--font-color-sub);
  opacity: 0.8;
}

.flip-card__input:focus {
  border: 2px solid var(--input-focus);
}

.flip-card__btn:active, .button-confirm:active {
  box-shadow: 0px 0px var(--main-color);
  transform: translate(3px, 3px);
}

.flip-card__btn {
  margin: 20px 0 20px 0;
  width: 120px;
  height: 40px;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  background-color: var(--bg-color);
  box-shadow: 4px 4px var(--main-color);
  font-size: 17px;
  font-weight: 600;
  color: var(--font-color);
  cursor: pointer;
}

.form {
    --background: #2a2a2a;
    --input-focus: #2d8cf0;
    --font-color: #f0f0f0;
    --font-color-sub: #ccc;
    --bg-color: #3a3a3a;
    --main-color: #f0f0f0;
    padding: 30px;
    background: var(--background);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    border-radius: 5px;
    border: 2px solid var(--main-color);
    box-shadow: 4px 4px var(--main-color);
}

.form > p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--font-color);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.form > p > span {
    color: var(--font-color-sub);
    font-weight: 600;
    font-size: 17px;
}

.separator {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.separator > div {
    width: 100px;
    height: 3px;
    border-radius: 5px;
    background-color: var(--font-color-sub);
}

.separator > span {
    color: var(--font-color);
    font-weight: 600;
}

.oauthButton {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: auto 15px 15px auto;
    width: 250px;
    height: 40px;
    border-radius: 5px;
    border: 2px solid var(--main-color);
    background-color: var(--bg-color);
    box-shadow: 4px 4px var(--main-color);
    font-size: 16px;
    font-weight: 600;
    color: var(--font-color);
    cursor: pointer;
    transition: all 250ms;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.oauthButton::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #212121;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
}

.oauthButton:hover {
    color: #e8e8e8;
}

.oauthButton:hover::before {
    width: 100%;
}

.form > input {
    width: 250px;
    height: 40px;
    border-radius: 5px;
    border: 2px solid var(--main-color);
    background-color: var(--bg-color);
    box-shadow: 4px 4px var(--main-color);
    font-size: 15px;
    font-weight: 600;
    color: var(--font-color);
    padding: 5px 10px;
    outline: none;
}

.form > input:focus {
    border-color: var(--input-focus);
}

.icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Navigation Header */
.main-nav {
    background: var(--bg-dark);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 10px;
}

.nav-logo span {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
}

/* Mobile Navigation Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

/* User Profile Section */
.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 16px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.user-profile-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.user-profile-info {
    display: flex;
    flex-direction: column;
}

.user-profile-info span {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.user-profile-info small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
}

.logout-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    font-size: 12px;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

/* Profile Section */
.profile-section {
    padding: 60px 20px;
    background: transparent;
}

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

.profile-header {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 40px;
    margin: 0 auto 20px;
}

.profile-header h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 10px;
}

.profile-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
}

.profile-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.detail-card {
    background: rgba(26, 26, 26, 0.7);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.detail-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    background: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y),
                            rgba(255, 255, 255, 0.3),
                            transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.detail-card:hover::before {
    opacity: 1;
}

.detail-card:hover {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4), 0 0 20px rgba(255, 255, 255, 0.2);
}

.detail-card h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.detail-item label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.detail-item span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.edit-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.edit-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Edit Profile Modal Form */
#editProfileModal .form-group {
    margin-bottom: 20px;
}

#editProfileModal label {
    display: block;
    color: #fff;
    font-size: 14px;
    margin-bottom: 8px;
}

#editProfileModal input {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
}

#editProfileModal input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#editProfileModal input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Payment Section */
.payment-section {
    margin-top: 30px;
    padding: 20px;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-section h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.payment-option:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option input[type="radio"]:checked + .payment-icon {
    background: rgba(102, 126, 234, 0.8);
}

.payment-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
}

.payment-label {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 20px;
    background: transparent;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveGrid 20s linear infinite;
    pointer-events: none;
}

@keyframes moveGrid {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-btn {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid;
}

.hero-btn.primary {
    background: #fff;
    color: #1a1a1a;
    border-color: #fff;
}

.hero-btn.primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.hero-btn.secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Features Section */
.features-section {
    padding: 80px 20px;
    background: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(26, 26, 26, 0.7);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    background: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y),
                            rgba(255, 255, 255, 0.3),
                            transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4), 0 0 20px rgba(255, 255, 255, 0.2);
}

.feature-icon {
font-size: 3rem;
position: relative;
z-index: 1;
margin-bottom: 20px;
}

.feature-card h3 {
color: #fff;
font-size: 1.3rem;
position: relative;
z-index: 1;
margin-bottom: 15px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Rooms Preview Section */
.rooms-preview {
    padding: 80px 20px;
    background: #2a2a2a;
}

.rooms-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.room-preview-card {
    background: rgba(26, 26, 26, 0.7);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.room-preview-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    background: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y),
                            rgba(255, 255, 255, 0.3),
                            transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.room-preview-card:hover::before {
    opacity: 1;
}

.room-preview-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4), 0 0 20px rgba(255, 255, 255, 0.2);
}

.room-preview-card img {
width: 100%;
height: 250px;
object-fit: cover;
    object-fit: cover;
}

.room-preview-content {
    padding: 20px;
    text-align: center;
}

.room-preview-content h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.room-preview-content p {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.room-preview-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #fff;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.room-preview-btn:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

/* Nearby Section */
.nearby-section {
    padding: 80px 20px;
    background: transparent;
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.nearby-item {
    background: rgba(26, 26, 26, 0.7);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.nearby-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    background: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y),
                            rgba(255, 255, 255, 0.3),
                            transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.nearby-item:hover::before {
    opacity: 1;
}

.nearby-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4), 0 0 20px rgba(255, 255, 255, 0.2);
}

.nearby-item h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.nearby-item p {
    color: #ccc;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: transparent;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 60px 20px 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #667eea;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
}

/* Credit Card Payment Modal Styles */
.credit-card-modal {
    background: #FFFFFF;
    box-shadow: 0px 187px 75px rgba(0, 0, 0, 0.01), 0px 105px 63px rgba(0, 0, 0, 0.05), 0px 47px 47px rgba(0, 0, 0, 0.09), 0px 12px 26px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0.1);
    border-radius: 26px;
}

.credit-card-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.credit-card-form .payment--options {
    width: calc(100% - 40px);
    display: grid;
    grid-template-columns: 33% 34% 33%;
    gap: 20px;
    padding: 10px;
}

.credit-card-form .payment--options button {
    height: 55px;
    background: #F2F2F2;
    border-radius: 11px;
    padding: 0;
    border: 0;
    outline: none;
}

.credit-card-form .payment--options button svg {
    height: 18px;
}

.credit-card-form .separator {
    width: calc(100% - 20px);
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 10px;
    color: #8B8E98;
    margin: 0 10px;
}

.credit-card-form .separator > p {
    word-break: keep-all;
    display: block;
    text-align: center;
    font-weight: 600;
    font-size: 11px;
    margin: auto;
}

.credit-card-form .separator .line {
    display: inline-block;
    width: 100%;
    height: 1px;
    border: 0;
    background-color: #e8e8e8;
    margin: auto;
}

.credit-card-info--form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.credit-card-form .input_container {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.credit-card-form .split {
    display: grid;
    grid-template-columns: 4fr 2fr;
    gap: 15px;
}

.credit-card-form .split input {
    width: 100%;
}

.credit-card-form .input_label {
    font-size: 10px;
    color: #8B8E98;
    font-weight: 600;
}

.credit-card-form .input_field {
    width: auto;
    height: 40px;
    padding: 0 0 0 16px;
    border-radius: 9px;
    outline: none;
    background-color: #F2F2F2;
    border: 1px solid #e5e5e500;
    transition: all 0.3s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.credit-card-form .input_field:focus {
    border: 1px solid transparent;
    box-shadow: 0px 0px 0px 2px #242424;
    background-color: transparent;
}

.credit-card-form .purchase--btn {
    height: 55px;
    background: #F2F2F2;
    border-radius: 11px;
    border: 0;
    outline: none;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    background: linear-gradient(180deg, #363636 0%, #1B1B1B 50%, #000000 100%);
    box-shadow: 0px 0px 0px 0px #FFFFFF, 0px 0px 0px 0px #000000;
    transition: all 0.3s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.credit-card-form .purchase--btn:hover {
    box-shadow: 0px 0px 0px 2px #FFFFFF, 0px 0px 0px 4px #0000003a;
}

/* Reset input number styles */
.credit-card-form .input_field::-webkit-outer-spin-button,
.credit-card-form .input_field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.credit-card-form .input_field[type=number] {
    -moz-appearance: textfield;
}

/* Booking Page Styles */
.booking-section {
    padding: 100px 20px;
    background: rgba(26, 26, 26, 0.5);
    min-height: 100vh;
}

.booking-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-form {
    background: rgba(26, 26, 26, 0.9);
    padding: 50px;
    border-radius: 20px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.booking-form::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    background: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y),
                            rgba(255, 255, 255, 0.3),
                            transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.booking-form:hover::before {
    opacity: 1;
}

.booking-form:hover {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4), 0 0 20px rgba(255, 255, 255, 0.2);
}

.booking-form h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select option {
    background: #2a2a2a;
    color: #fff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.booking-summary {
    background: rgba(26, 26, 26, 0.7);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.booking-summary::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y),
                            rgba(255, 255, 255, 0.3),
                            transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.booking-summary:hover::before {
    opacity: 1;
}

.booking-summary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4), 0 0 20px rgba(255, 255, 255, 0.2);
}

.booking-summary h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    color: #ccc;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item.total {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.booking-submit-btn {
    width: 100%;
    padding: 15px;
    background: #fff;
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.booking-submit-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: rgba(26, 26, 26, 0.7);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    background: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y),
                            rgba(255, 255, 255, 0.3),
                            transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.info-card:hover::before {
    opacity: 1;
}

.info-card:hover {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4), 0 0 20px rgba(255, 255, 255, 0.2);
}

.info-card h3,
.info-card h4 {
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.info-card p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.info-card a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: #667eea;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    color: #ccc;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card ul li:last-child {
    border-bottom: none;
}

.booking-confirmation-details {
    background: rgba(26, 26, 26, 0.7);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.booking-confirmation-details::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y),
                            rgba(255, 255, 255, 0.3),
                            transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.booking-confirmation-details:hover::before {
    opacity: 1;
}

.booking-confirmation-details:hover {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4), 0 0 20px rgba(255, 255, 255, 0.2);
}

.booking-confirmation-details p {
    color: #ccc;
    margin-bottom: 10px;
}

.booking-confirmation-details strong {
    color: #fff;
}

.modal-btn {
    padding: 10px 25px;
    background: #fff;
    color: #1a1a1a;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}
