@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

section.Luxury_Rooms {
    padding: 40px 0px;
    background: #f7f5f0;
}

.about-tabs-section {
    padding: 20px 0;
    background: #f5f6f1;
}

.about-tabs-sticky-placeholder {
    width: 100%;
}

.about-tabs-sticky {
    width: 100%;
    background: #f5f6f1;
    z-index: 100;
    margin-bottom: 35px;
    padding-top: 10px;
    transition: background 0.3s ease;
}

.about-tabs-sticky.is-sticky {
    position: fixed !important;
    left: 0;
    right: 0;
    width: 100% !important;
    z-index: 990 !important;
    background: #f5f6f1 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    margin-bottom: 0 !important;

}

.about-tabs-sticky.is-sticky .about-tabs {
    max-width: 1250px;
    padding: 0 10px;
    margin: 0 auto;
}

.about-tabs {
    display: flex;
    justify-content: flex-start;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
    overflow-x: auto;
    white-space: nowrap;
    overflow-y: hidden;
}

.about-tabs::-webkit-scrollbar {
    display: none;
}

.about-tabs .nav-item {
    margin-right: 40px;
}

.about-tabs .nav-link {
    background: transparent;
    border: none;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    outline: none;
}

.about-tabs .nav-link.active {
    color: #EC7954;
}

.about-tabs .nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #EC7954;
    transition: width 0.3s ease;
}

.about-tabs .nav-link.active::after,
.about-tabs .nav-link:hover::after {
    width: 100%;
}

.about-tab-content .tab-pane {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.about-tab-content .tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* WYSIWYG Content Styling - Policy Box Pattern */
.about-content-wrapper {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    border-radius: 12px;
}

.about-content-wrapper.first .cs-col img {
    height: 560px !important;
    object-fit: contain;
}

@media (max-width: 768px) {
    .about-content-wrapper.first .cs-col img {
        height: auto !important;
    }
}

.about-content-wrapper .cs-row {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e6dfcc;
}

.about-content-wrapper .cs-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.about-content-wrapper h3 {
    font-size: 20px;
    color: #173633;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 15px;
}

.about-content-wrapper h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #173633;
}

.about-content-wrapper h5 {
    font-size: 16px;
    color: #222;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 12px;
}

.about-content-wrapper p {
    margin-bottom: 15px;
    text-align: justify;
}

.about-content-wrapper p:last-child {
    margin-bottom: 0;
}

.about-content-wrapper strong {
    color: #173633;
}

.about-content-wrapper ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.about-content-wrapper ul li {
    position: relative;
    padding: 8px 0 8px 25px;
    margin-bottom: 0;
    color: #444;
    border-bottom: 1px dashed #f5f0e1;
}

.about-content-wrapper ul li:last-child {
    border-bottom: none;
}

.about-content-wrapper ul li::before {
    content: '\25AA';
    /* Small square */
    position: absolute;
    left: 0;
    top: 8px;
    color: #EC7954;
    font-size: 12px;
}

/* Image Styling */
.about-content-wrapper img {
    max-width: 100%;
    height: auto !important;
    border-radius: 8px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

/* CKEditor Custom Layout Specifics */
.about-content-wrapper .row {
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    flex-wrap: wrap;
}

.about-content-wrapper .cs-col {
    padding-left: 15px;
    padding-right: 15px;
}

.about-content-wrapper .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.about-content-wrapper .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .about-tabs-section {
        padding: 20px 0;
    }

    .about-tabs-sticky {
        top: 60px;
    }

    .about-tabs .nav-item {
        margin-right: 25px;
    }

    .about-tabs .nav-link {
        font-size: 14px;
    }

    .about-content-wrapper .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        /* margin-bottom: 25px; */
    }

    .about-content-wrapper ul {
        margin-bottom: 0;
    }

    .about-content-wrapper .cs-col:last-child {
        margin-bottom: 0;
    }
}

.images-brackham-details::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

.about-hero-text {
    top: 65% !important;
    transform: translate(-50%, -50%) !important;
    width: 100% !important;
    z-index: 2;
}

.hero-title-wrapper {
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hero-subtitle {
    color: #fff;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
    font-family: sans-serif;
}

.hero-title {
    color: #fff;
    font-size: 42px !important;
    font-weight: 400;
    margin: 0;
    text-transform: capitalize;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 3px;
    }
}


.booking-section {
    /* flex: 1; */
    background-color: #f0ede8;
    padding: 19px 40px 0px;
    /* border-top: 5px solid #EC7954; */
}

.contact-section {
    /* flex: 1; */
    padding: 4px 40px 0px;
}

.section-header {
    font-size: var(--text-sm);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 20px;
    font-weight: normal;
}

.main-title {
    font-size: var(--heading-1);
    font-weight: normal;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.2;
}

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

.form-label {
    display: block;
    font-size: var(--text-base);
    color: #666;
    margin-bottom: 8px;
    font-weight: normal;
}

.form-input,
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    background-color: #fff;
    font-size: var(--text-base);
    color: #333;
    border-radius: 0;
    appearance: none;
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.check-btn {
    width: 100%;
    background-color: #b8956b;
    color: white;
    padding: 18px;
    border: none;
    font-size: var(--text-sm);
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    font-weight: 600;
    font-size: var(--text-lg);
}

.check-btn:hover {
    background-color: #a18458;
}

.contact-title {
    font-size: var(--heading-1);
    font-weight: normal;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.3;
}

.contact-description {
    font-size: var(--text-base);
    color: #888;
    line-height: 1.7;
    margin-bottom: 60px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: #b8956b;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.contact-info h3 {
    font-size: var(--text-xl);
    font-weight: normal;
    color: #333;
    margin-bottom: 0px;
}

.contact-info p {
    font-size: var(--text-base);
    color: #888;
}

.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: var(--text-sm);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.box-container-contact-pages {
    display: grid;
    padding: 5rem 0px;
    grid-template-columns: 1fr 1fr;
}

.contact-info {
    display: block;
    margin-bottom: 0px;
}

.contact-section .map {
    padding-top: 24px;
}

.contact-section .map iframe {
    height: 411px;
    width: 100%;
}

.contact-section ul li {
    list-style: disc;
    margin-left: 25px;
}

.booking-section h1 {
    padding-bottom: 20px;
}

@media (max-width: 768px) {
    .box-container-contact-pages {
        grid-template-columns: 1fr;
        padding: none;
    }

    .booking-section,
    .contact-section {
        padding: 0px 10px;
    }

    .main-title,
    .contact-title {
        font-size: var(--heading-2);
    }
}

#gtx-trans {
    display: none;
}