@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200..800&family=Outfit:wght@200..900&family=Yellowtail&display=swap');

:root {
    --white: #FFFFFF;
    --primary-green: #0F3E2B;       /* Deep Forest Emerald */
    --secondary-green: #1A5C3F;     /* Sage Forest */
    --mint-bg: #F1F6F3;             /* Light Mint Green Background */
    --accent-gold: #D99F2A;         /* Sunset Gold */
    --dark-gold: #A47214;           /* Dark Ochre Gold */
    
    --primary-blue: var(--primary-green);
    --primary-dark-blue: #081E15;
    --light-blue: var(--secondary-green);
    --x-light-blue: #238C5F;
    --first-light-blue: var(--mint-bg);
    --orange: var(--accent-gold);
    --dark-orange: var(--dark-gold);
    --light-gray: #F8FAFC;          /* Clean slate grey */
    --gray-bg: #E2E8F0;             /* Slate grey border/bg */
    --text-color: #2D3732;          /* Charcoal text with a hint of green */
    --light-text: #4E5E56;
    --secondry-text-color: #1A2420;
    --heading-color: #0B2217;
    --mobile-header-dark-bg: #0C1E15;
    --mobile-header-light-bg: #143224;
    --mega-menu-color: #0C1E15;
    --footer-bg: #0A1C14;
    --footer-light: #12261E;
    --yellow: #F1C40F;
    --whatsapp: #25D366;
    --top-header-bg: #0A1C14;
    --mobile-toggler-icon: #0A1C14;
    --top-header-mobile: #06120D;
    
    --primary-font: "Inter", sans-serif;
    --heading-font: "Outfit", sans-serif;
    --yellowtail-font: "Yellowtail", cursive;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--primary-font);
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography & Headings */
p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--light-text);
    text-align: justify;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.4;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 36px;
}

@media (max-width: 768px) {
    h1 { font-size: 32px; }
    h2 { font-size: 28px; }
}

.pre-heading {
    font-family: var(--yellowtail-font);
    font-size: 24px;
    font-weight: 400;
    color: var(--orange);
    margin-bottom: 5px;
}

.common-heading-blue {
    color: var(--heading-color);
    font-weight: 700;
}

.common-heading-blue span {
    color: var(--x-light-blue);
}

.about-badge {
    background-color: var(--first-light-blue);
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 30px;
    text-transform: uppercase;
    display: inline-block;
}

/* Global Buttons */
.book-btn {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: 30px;
    background: var(--orange);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    min-width: 130px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(217, 159, 42, 0.25);
}

.book-btn:hover {
    background-color: var(--primary-blue);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(15, 62, 43, 0.3);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #fff;
}

/* Floating Contact Pulse Icons */
.btn-whatsapp-pulse, .btn-call-pulse {
    position: fixed;
    z-index: 99;
    color: #fff;
    left: 20px;
    height: 55px;
    width: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.btn-whatsapp-pulse {
    background: #25d366;
    bottom: 20px;
    font-size: 32px;
}

.btn-call-pulse {
    background: var(--primary-blue);
    bottom: 85px;
    font-size: 26px;
}

.btn-whatsapp-pulse:hover, .btn-call-pulse:hover {
    transform: scale(1.1);
    color: #fff;
}

.btn-whatsapp-pulse-border::before, .btn-call-pulse-border::before {
    content: "";
    position: absolute;
    border: 5px solid #25d366;
    opacity: 0.65;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    animation: pulse-border 1.8s infinite ease-out;
}

.btn-call-pulse-border::before {
    border-color: var(--primary-blue);
}

.btn-whatsapp-pulse i, .btn-call-pulse i {
    animation: icon_vibrate 1.8s infinite ease-in-out;
}

@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 0.65;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes icon_vibrate {
    0%, 100%, 50% { transform: rotate(0); }
    25% { transform: rotate(15deg); }
    75% { transform: rotate(-15deg); }
}

/* Breadcrumb Navigation */
.breadcrumb-sec {
    padding: 18px 0;
    background-color: var(--light-gray);
    border-bottom: 1px solid var(--gray-bg);
}

.breadcrumb-content .breadcrumb-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item a {
    font-size: 14px;
    font-weight: 600;
    color: var(--light-text);
}

.breadcrumb-item a:hover {
    color: var(--orange);
}

.breadcrumb-item.active {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "•";
    color: var(--orange);
    font-weight: 900;
    padding: 0 10px;
}

/* Enquiry Form Style */
.enquiry-form-section {
    padding-bottom: 50px;
    position: relative;
    z-index: 10;
}

.enquiry-container {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    margin-top: -50px;
}

.quick-enquiry-card {
    padding: 30px 40px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark-blue) 100%);
}

.enquiry-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-left: 4px solid var(--orange);
    padding-left: 12px;
}

.enquiry-form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .enquiry-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .enquiry-container {
        margin-top: -30px;
    }
}

@media (max-width: 768px) {
    .enquiry-form-grid {
        grid-template-columns: 1fr;
    }
    .enquiry-container {
        margin-top: 0;
        border-radius: 0;
    }
    .quick-enquiry-card {
        padding: 25px 20px;
    }
}

.input-group-custom {
    position: relative;
}

.input-group-custom input, .input-group-custom select {
    width: 100%;
    height: 52px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 10px 15px 10px 45px;
    font-size: 14px;
    color: var(--white);
    transition: all 0.3s ease;
}

.input-group-custom input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input-group-custom select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: none;
}

.input-group-custom select option {
    background-color: var(--primary-dark-blue);
    color: var(--white);
}

.input-group-custom input:focus, .input-group-custom select:focus {
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(217, 159, 42, 0.25);
}

.input-group-custom .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--orange);
    font-size: 16px;
    pointer-events: none;
}

.input-group-custom .input-icon-right {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.input-group-custom select:focus ~ .input-icon-right {
    transform: translateY(-50%) rotate(180deg);
}

.button-group {
    margin-top: 25px;
    text-align: center;
}

.submit-btn-custom {
    width: 100%;
    max-width: 200px;
    height: 52px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 159, 42, 0.3);
}

.submit-btn-custom:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Pricing Table */
.pricing-table-wrapper {
    background: #fff;
    border: 1px solid var(--gray-bg);
}

.custom-pricing-table th {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.custom-pricing-table td {
    vertical-align: middle;
    font-size: 15px;
}

.custom-pricing-table .btn-book {
    background-color: var(--orange);
    color: #fff;
    font-weight: 600;
    border-radius: 20px;
    padding: 6px 16px;
    transition: all 0.3s ease;
}

.custom-pricing-table .btn-book:hover {
    background-color: var(--primary-blue);
    transform: translateY(-1px);
}

.table-active-row {
    background-color: var(--first-light-blue);
}

/* FAQs Accordion Customization */
.faqs-section .accordion {
    gap: 15px;
    display: flex;
    flex-direction: column;
}

.faqs-section .accordion-item {
    border: 1px solid var(--gray-bg);
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.faqs-section .accordion-button {
    background-color: var(--white) !important;
    padding: 20px 24px;
    color: var(--heading-color) !important;
    font-size: 16px;
    font-weight: 600;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.faqs-section .accordion-button:not(.collapsed) {
    color: var(--primary-blue) !important;
    border-bottom: 1px solid var(--gray-bg);
}

.faqs-section .accordion-body {
    padding: 20px 24px;
    color: var(--light-text);
    font-size: 15px;
    line-height: 1.6;
    background-color: var(--light-gray);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 45px;
    height: 45px;
    z-index: 99;
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: translateY(-3px);
}

/* Toast Message - Custom styling */
.sonner-toast {
    font-family: var(--primary-font);
    border-radius: 10px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Split Hero Section Styles */
.hero-split-section {
    position: relative;
    min-height: 600px;
    background-color: var(--primary-green);
    overflow: hidden;
}

.hero-bg-carousel {
    pointer-events: none;
}

.hero-bg-carousel .carousel-item {
    height: 100%;
}

.btn-tab {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid transparent;
}

.btn-tab:hover {
    color: var(--white);
}

.btn-tab.active {
    color: var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
}

.booking-widget-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.booking-widget-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35) !important;
}

/* Staggered Grid About Us layout replacement styles */
.pillar-card {
    background-color: var(--mint-bg);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(15, 62, 43, 0.05);
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(15, 62, 43, 0.08);
    background-color: var(--white);
    border-color: rgba(15, 62, 43, 0.15);
}

.pillar-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(15, 62, 43, 0.1);
    color: var(--primary-green);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon-box {
    background-color: var(--accent-gold);
    color: var(--white);
}

/* Bootstrap Theme Overrides to match Forest Emerald & Sunset Gold */
.bg-primary {
    background-color: var(--primary-green) !important;
}

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

.border-primary {
    border-color: var(--primary-green) !important;
}

.btn-primary {
    background-color: var(--primary-green) !important;
    border-color: var(--primary-green) !important;
    color: var(--white) !important;
    font-family: var(--heading-font);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: var(--secondary-green) !important;
    border-color: var(--secondary-green) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
}

.btn-outline-primary {
    color: var(--primary-green) !important;
    border-color: var(--primary-green) !important;
    font-family: var(--heading-font);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
    background-color: var(--primary-green) !important;
    border-color: var(--primary-green) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
}

.bg-warning {
    background-color: var(--accent-gold) !important;
}

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

.btn-warning {
    background-color: var(--accent-gold) !important;
    border-color: var(--accent-gold) !important;
    color: var(--primary-dark-blue) !important;
    font-family: var(--heading-font);
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-warning:hover, .btn-warning:focus, .btn-warning:active {
    background-color: var(--dark-gold) !important;
    border-color: var(--dark-gold) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
}

.btn-outline-warning {
    color: var(--accent-gold) !important;
    border-color: var(--accent-gold) !important;
    font-family: var(--heading-font);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-warning:hover, .btn-outline-warning:focus, .btn-outline-warning:active {
    background-color: var(--accent-gold) !important;
    border-color: var(--accent-gold) !important;
    color: var(--primary-dark-blue) !important;
    transform: translateY(-1px);
}


