* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #bf0505;
    --hover-red: #e60000;
    --text-dark: #333;
    --bg-light: #f8f8f8;
    --section-spacing: 60px;
    --card-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --title-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
    --color-primary: #118c7e;
    --color-secondary: #0b5a51;
    --color-active: #26c281;
    --color-inactive: #f1a528;
    --color-offline: #a4a4a4;
    --color-message: #f1f0f0;
    --color-light: #fff;
    --shadow: 0 7px 15px 1px rgb(55 62 70 / 7%);
}

body {
    font-family: 'Playfair Display', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-light);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    background: url('../images/21752976-568a-4b64-bdbc-ea2f1cf970f5.webp') no-repeat center center / cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    padding: 20px;
}

.header-content {
    background: rgba(0, 0, 0, 0.15);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    max-width: 700px;
}

header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

header p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Main Layout */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: var(--section-spacing) 0;
}

h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--primary-red);
    text-align: center;
    text-shadow: var(--title-shadow);
}

h3 {
    font-size: 28px;
    color: var(--primary-red);
    margin-bottom: 25px;
    text-align: center;
    text-shadow: var(--title-shadow);
}

/* Why Choose Us Cards */
.info-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.card {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    flex: 1 1 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Booking Form */
.booking-form-container {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

.booking-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: #444;
}

.booking-form button {
    background: var(--primary-red);
    color: #ffffff;
    border: none;
    width: 100%;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s;
}

.booking-form button:hover {
    background: var(--hover-red);
    transform: translateY(-2px);
}

/* =========================
   Two-Column Notice Section - Perfectly Aligned
   Image on Right, Text on Left
========================= */
.notice-two-column {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    align-items: stretch;
    flex-direction: row;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Left Column - Text */
.notice-text-column {
    flex: 1;
    background: #fff3f3;
    padding: 45px 40px;
    border-radius: 30px;
    border-left: 5px solid var(--primary-red);
    box-shadow: 0 15px 35px rgba(191, 5, 5, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.notice-text-column h3 {
    text-align: left;
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 34px;
    color: var(--primary-red);
}

.notice-text-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-text-column li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2c3e50;
}

.notice-text-column li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-red);
    font-weight: 800;
    font-size: 1.4rem;
}

/* Right Column - Image */
.notice-image-column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.protected-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 4px solid white;
    transition: transform 0.4s ease;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    display: block;
}

.protected-image:hover {
    transform: scale(1.02);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .notice-two-column {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }
    
    .notice-text-column,
    .notice-image-column {
        flex: none;
        width: 100%;
    }
    
    .notice-text-column {
        padding: 30px 25px;
    }
    
    .notice-text-column h3 {
        font-size: 28px;
        text-align: center;
    }
}

/* Testimonial Slider */
.testimonial-section {
    background: var(--bg-light);
}

.testimonial-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: testimonial-scroll 45s linear infinite;
}

.testimonial-card {
    width: 350px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-header img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.stars {
    color: #f5a623;
    margin-top: 5px;
}

@keyframes testimonial-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* QR Code Section */
.qr-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.qr-item {
    text-align: center;
}

.qr-item img {
    width: 280px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.qr-item img:hover {
    transform: scale(1.03);
}

.qr-label {
    margin-top: 15px;
    font-weight: bold;
    color: #666;
    font-size: 1.1rem;
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    border: none;
    right: 25px;
    bottom: 30px;
}

#back-to-top.show {
    opacity: 1;
    pointer-events: auto;
}

#back-to-top svg {
    width: 25px;
    height: 25px;
    fill: #ffffff;
}

#back-to-top:hover {
    transform: scale(1.15) translateY(-5px);
}

/* Tooltip */
.tooltip {
    color: #d4af37;
    cursor: help;
    margin-left: 8px;
    position: relative;
    display: inline-block;
}

.tooltiptext {
    visibility: hidden;
    width: 600px;
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 25px;
    position: absolute;
    z-index: 100;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 0.85rem;
    line-height: 1.6;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
    border: 1px solid #d4af37;
    text-align: left;
    pointer-events: none;
}

.tooltiptext ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.tooltiptext li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.tooltiptext li::before {
    content: "🔹";
    position: absolute;
    left: 0;
    color: #28a745;
    font-size: 0.7rem;
    top: 1px;
}

.tooltiptext strong {
    color: #d4af37;
    letter-spacing: 0.5px;
}

.tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: #d4af37 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
}

@media (max-width: 1024px) {
    .tooltiptext {
        position: fixed;
        bottom: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) !important;
        width: 90vw;
        max-width: 350px;
        padding: 20px;
        max-height: 80vh;
        overflow-y: auto;
        pointer-events: auto;
    }
    
    .tooltip:hover .tooltiptext,
    .tooltip:active .tooltiptext {
        transform: translate(-50%, -50%) !important;
        opacity: 1;
        visibility: visible;
    }

    .tooltiptext::after {
        display: none;
    }
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 40px 20px;
    margin-top: var(--section-spacing);
}

footer a {
    color: #ffcc00;
    font-weight: bold;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    header {
        height: 60vh;
    }
    .header-content {
        padding: 25px;
    }
    h2 {
        font-size: 32px;
    }
    .qr-container {
        gap: 30px;
    }
    .qr-item img {
        width: 300px;
    }
    .testimonial-track {
        animation-duration: 30s;
    }
}

/* =========================
   WhatsApp Widget Styles
========================= */
canvas {
    position: fixed !important;
    z-index: 99999 !important;
    pointer-events: none !important;
}

.wHelp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.wHelp.visible {
    opacity: 1;
    visibility: visible;
}

.button-container {
    position: relative;
    display: inline-block;
}

.tooltip-text {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(30, 30, 30, 0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.tooltip-text::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid rgba(30, 30, 30, 0.9);
}

.button-container:hover .tooltip-text:not(.hidden) {
    opacity: 1;
    visibility: visible;
    left: 65px;
}

.tooltip-text.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
}

.wHelp-bubble.circle-bubble {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: breathe 1.2s ease-out infinite;
}

@keyframes breathe {
    0% {
        box-shadow: 0 0 0 0 rgba(17, 140, 126, 0.8), 0 0 0 0 rgba(17, 140, 126, 0.5);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(17, 140, 126, 0.5), 0 0 0 16px rgba(17, 140, 126, 0.2);
    }
    100% {
        box-shadow: 0 0 0 15px rgba(17, 140, 126, 0), 0 0 0 30px rgba(17, 140, 126, 0);
    }
}

.wHelp-bubble.circle-bubble:hover {
    background-color: var(--color-secondary);
    transform: scale(1.1);
    animation: none;
}

.wHelp-bubble .open-icon {
    color: white;
    font-size: 28px;
}

.wHelp-bubble .close-icon {
    display: none;
}

.wHelp.wHelp-show .wHelp-bubble .open-icon {
    display: none;
}

.wHelp.wHelp-show .wHelp-bubble .close-icon {
    display: block;
    color: white;
    font-size: 28px;
}

.wHelp__popup {
    position: absolute;
    width: 350px;
    bottom: 80px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: var(--shadow);
    border-radius: 12px;
    background: white;
    transform: translateY(10px);
}

.wHelp.wHelp-show .wHelp__popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wHelp__popup--header {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 20px;
    background-color: var(--color-primary);
    border-radius: 12px 12px 0 0;
}

.wHelp__popup--header .image img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.wHelp__popup--header .info__name {
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.wHelp__popup--header .info__title {
    color: #ffffff;
    font-size: 14px;
    opacity: 0.9;
    margin-top: 4px;
    line-height: 1.4;
}

.wHelp__popup--content {
    padding: 20px;
}

.current-datetime {
    text-align: center;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 15px;
    padding: 8px 16px;
    background: #f8fafc;
    border-radius: 20px;
}

.sms {
    display: grid;
    gap: 12px;
    grid-template-columns: 35px 1fr;
    margin-bottom: 20px;
}

.sms__user img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.sms__text {
    padding: 12px 15px;
    background-color: var(--color-message);
    border-radius: 0 12px 12px 12px;
    position: relative;
}

.sms__text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 0;
    border-color: transparent var(--color-message) transparent transparent;
}

.wHelp__send-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
}

#qrContainer {
    position: fixed;
    padding: 16px;
    background: #fff;
    border-radius: 10px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 9998;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

#qrContainer img {
    height: 200px;
}

/* WhatsApp Popup Header Avatar Styles */
.wHelp__popup--header .image {
    position: relative;
    width: 60px;
    height: 60px;
}

.wHelp__popup--header .image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* Online Status Dot */
.online-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    background-color: #4CAF50;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Disable right-click on avatar container */
.protected-avatar {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* SMS User Avatar Styles */
.sms__user {
    position: relative;
    width: 35px;
    height: 35px;
}

.sms__user img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* Small Online Dot for SMS Avatar */
.sms__user .online-dot-small {
    position: absolute;
    bottom: 2px;
    right: 4px;
    width: 8px;
    height: 8px;
    background-color: #4CAF50;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    z-index: 10;
}

/* Visitor Row Layout */
.visitor-row {
    display: flex;
    gap: 30px; 
    margin-bottom: 15px;
    align-items: center;
}

.visitor-row input {
    flex: 1;
    width: auto !important;
    margin-bottom: 0 !important;
}

/* Add/Remove Button Styles */
.add-visitor-btn, .remove-visitor-btn {
    width: 44px !important;
    height: 44px;
    padding: 0 !important;
    font-size: 24px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px !important;
    transition: all 0.2s;
}

.add-visitor-btn {
    background: #28a745 !important;
}

.add-visitor-btn:hover {
    background: #218838 !important;
}

.remove-visitor-btn {
    background: #6c757d !important;
}

.remove-visitor-btn:hover {
    background: #5a6268 !important;
}

#visitor-container label {
    margin-top: 10px;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .visitor-row {
        flex-wrap: wrap;
    }
    .visitor-row input {
        min-width: 100%;
    }
    .add-visitor-btn, .remove-visitor-btn {
        width: 100% !important;
        margin-top: 5px;
    }
}

/* --- Professional Booking Form Layout --- */

.booking-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Grid for 2-column rows */
.booking-grid {
    display: flex;
    gap: 30px;
    /*margin-bottom: 5px;*/
    flex-wrap: wrap;
}

.grid-item {
    flex: 1;
    min-width: calc(50% - 15px);
}

/* Full width logic */
.full-width-item {
    width: 100%;
    margin-bottom: 5px;
}

/* Global Input Fix */
.booking-form input, 
.booking-form select, 
.booking-form textarea {
    width: 100% !important;
    box-sizing: border-box !important; 
    height: 48px !important;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 10px !important;
    font-family: 'Playfair Display', serif;
    transition: border-color 0.3s;
}

.booking-form textarea {
    height: 120px;
    resize: vertical;
}

.booking-form input:focus, 
.booking-form select:focus {
    outline: none;
    border-color: var(--primary-red);
}

/* Traveler Dynamic Rows */
.visitor-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

/*.visitor-row input {
    margin-bottom: 10px !important;
    height: 48px !important;
}*/

.add-visitor-btn, .remove-visitor-btn {
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    flex-shrink: 0;
    margin-bottom: 0 !important;
    font-size: 24px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 8px !important;
    transition: background 0.3s;
}

.add-visitor-btn { background: #28a745; }
.add-visitor-btn:hover { background: #218838; }
.remove-visitor-btn { background: #6c757d; }
.remove-visitor-btn:hover { background: #5a6268; }

/* Responsive View */
@media (max-width: 768px) {
    .grid-item { min-width: 100%; }
    .booking-grid { gap: 0; }
    .booking-form-container { padding: 25px; }
}
