:root {
    --primary-color: #025955;
    /* Deep Emerald Green */
    --primary-dark: #013b38;
    /* Darker Emerald */
    --secondary-color: #1a3c34;
    /* Dark Moss Green */
    --accent-color: #d4af37;
    /* Royal Gold */
    --bg-cream: #f9fbfd;
    /* Cool White */
    --font-main: 'Inter', sans-serif;
}

body {
    font-family: var(--font-main);
    color: #333;
    background-color: var(--bg-cream);
}

html {
    scroll-behavior: smooth;
}

#quote-form {
    scroll-margin-top: 100px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--secondary-color);
}

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

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

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

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

.text-warning {
    color: var(--accent-color) !important;
    /* Override warning to be Gold */
}

/* Top Bar */
.top-bar {
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-right {
    width: 100%;
}

@media (min-width: 992px) {
    .top-bar-right {
        width: auto;
        border-bottom-left-radius: 30px;
        border-top-left-radius: 30px;
    }
}

.top-bar i {
    opacity: 0.8;
}

.top-bar select:focus {
    box-shadow: none;
    outline: none;
}

/* Navbar */
.navbar {
    padding: 0.25rem 0;
}

.nav-link {
    font-weight: 500;
    color: var(--secondary-color) !important;
    margin: 0 10px;
}

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

/* Transparent Navbar Styles */
.navbar {
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.navbar-transparent {
    background-color: transparent !important;
    box-shadow: none !important;
}

.navbar-transparent .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.navbar-transparent .nav-link:hover,
.navbar-transparent .nav-link.active {
    color: #fff !important;
}

.navbar-transparent .navbar-brand img {
    filter: brightness(0) invert(1);
    /* Make logo white */
}

.navbar-transparent .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-transparent .navbar-toggler-icon {
    filter: invert(1);
}

/* Scrolled/Solid Navbar Styles (when transparent class is removed or scrolled) */
.navbar-scrolled {
    background-color: #fff !important;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}


/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    transition: all 0.3s ease;
    padding-left: 20px;
    /* Adjust as needed */
    /* padding-right: 5px !important; */
    /* Minimal padding right to accommodate the circle */
}

.btn-primary .icon-circle {
    transition: transform 0.3s ease;
}



.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 89, 85, 0.4);
    /* Green shadow */
}

.btn-default .translate-middle {
    transform: translate(-60%, -50%) !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    /* Full screen height */
    padding-top: 0;
    position: relative;
    /* overflow: hidden; Removed to allow form overlap */
}



.form-overlap {
    /* margin-bottom: -400px; Remove old overlap style */
    /* margin-top: 50px; Removed */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
}

.overlap-row {
    margin-top: -250px;
    /* Pull the whole row up into the banner */
    position: relative;
    z-index: 10;
    pointer-events: none;
}

.overlap-row .feature-card,
.overlap-row .card {
    pointer-events: auto;
}

@media (min-width: 992px) {
    .push-down {
        padding-top: 210px;
        /* Push features down to start below banner */
    }
}

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

.footer-section {
    background-color: var(--primary-color);
    /* border-top: 5px solid var(--accent-color); Removed for seamless wave */
}

.hover-opacity:hover {
    opacity: 0.8;
}

.hero-section .form-control,
.hero-section .form-select {
    border: 1px solid #eee;
    padding: 12px 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.hero-section .form-control:focus,
.hero-section .form-select:focus,
.form-control:focus {
    box-shadow: none !important;
    border-color: var(--primary-color);
    background-color: #fff;
}

.l-height-1 {
    line-height: 1.2;
}

.mix-blend-multiply {
    mix-blend-mode: multiply;
}

.backdrop-blur {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.user-avatars img {
    border: 2px solid white;
    transition: transform 0.2s;
}

.user-avatars img:hover {
    transform: scale(1.1);
    z-index: 10 !important;
}

/* Feature Cards */
.feature-card {
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    transition: all 0.3s ease;
}

.feature-card:hover .icon-box {
    background-color: var(--primary-color) !important;
    color: white !important;
}

/* About Section */
.ls-1 {
    letter-spacing: 1px;
}

/* Services Section */
.bg-gradient-dark {
    background: linear-gradient(to top, rgba(11, 44, 61, 0.95), transparent);
}

.service-card .transition-scale {
    transition: transform 0.5s ease;
}

.service-card:hover .transition-scale {
    transform: scale(1.1);
}

/* Process Section */
.process-step {
    position: relative;
    z-index: 1;
}

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

.process-step .badge {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
}

/* Stats Section */
.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background-color: white !important;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

/* FAQ Section */
.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.accordion-button::after {
    background-size: 1rem;
}

/* Blog Section */
.rounded-start-4 {
    border-top-left-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
}

/* Footer */
.hover-text-white:hover {
    color: #fff !important;
}

.input-group .form-control:focus {
    box-shadow: none;
}

.bg-opacity-90 {
    background-color: rgba(255, 255, 255, 0.9);
}

.opacity-90 {
    opacity: 0.9;
}

/* Custom FAQ Styles */
#faqAccordion .accordion-button::after {
    background-image: none !important;
    content: "\f067";
    /* FontAwesome Plus */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: white;
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

#faqAccordion .accordion-button:not(.collapsed)::after {
    content: "\f068";
    /* FontAwesome Minus */
    transform: rotate(0deg) !important;
    /* Override bootstrap rotation */
    background-color: var(--primary-color);
}

#faqAccordion .accordion-button {
    color: var(--secondary-color);
    font-weight: 600;
    padding-right: 1.5rem;
    /* Ensure space for the icon */
}

#faqAccordion .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(var(--bs-primary-rgb), 0.05);
    /* Very light blue tint for active */
    box-shadow: none;
}

.bg-input-dark {
    background-color: #e9ecef !important;
    border: 1px solid #ced4da !important;
    color: #495057 !important;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.bg-input-dark:focus {
    background-color: #fff !important;
    border-color: var(--primary-color) !important;
    color: #495057 !important;
    box-shadow: none !important;
}

/* About Composition Responsive */
.about-composition {
    position: relative;
    padding-left: 1.5rem;
    padding-top: 1.5rem;
    min-height: 500px;
}

.about-tripadvisor {
    position: absolute;
    top: 0;
    left: 0;
    width: 250px;
    transform: translate(-20px, 20px);
    z-index: 3;
    background-color: #198754;
    /* bg-success */
    color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

.about-main-img {
    margin-top: 60px;
    margin-left: 40px;
    border-radius: 30px !important;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}

.about-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    transform: translate(10px, 40px);
    z-index: 2;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
}

.about-floating-icons {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    gap: 0.5rem;
    transform: translate(0, 20px);
}

.floating-icon-box {
    width: 100px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    /* rounded-3 */
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

/* Responsive Breakpoints */
@media (max-width: 991.98px) {
    .about-composition {
        min-height: 450px;
        margin-bottom: 3rem;
    }

    .about-main-img {
        margin-left: 20px;
        margin-top: 50px;
    }

    .about-tripadvisor {
        width: 200px;
        padding: 1rem;
        transform: translate(-10px, 10px);
    }
}

@media (max-width: 575.98px) {
    .about-composition {
        min-height: auto;
        padding: 0;
        margin-top: 2rem;
    }

    .about-main-img {
        margin: 0;
        width: 100%;
        height: auto;
        min-height: 300px;
        border-radius: 20px !important;
    }

    .about-tripadvisor {
        position: absolute;
        width: 160px;
        padding: 0.75rem;
        transform: translate(-10px, -10px);
        left: 10px;
        top: -10px;
    }

    .about-tripadvisor img {
        max-width: 100%;
    }

    .about-badge {
        width: 90px;
        height: 90px;
        transform: translate(10px, -10px);
        right: 10px;
        top: -10px;
    }

    .about-badge h4 {
        font-size: 1.25rem;
    }

    .about-floating-icons {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: -40px;
        margin-left: 10px;
        gap: 10px;
    }

    .floating-icon-box {
        width: 70px;
        height: 60px;
    }

    .floating-icon-box i {
        font-size: 1.25rem !important;
        /* fa-2x is 2em */
    }
}

.thankyoumain {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyouin {
    width: 50%;
    height: 400px;
    background: #fff;
    box-shadow: 0 0px 20px 0px #0000002e;
    text-align: center;
}

.thankyouin img {
    width: 50%;
    filter: hue-rotate(273deg);
}

.cancel img {
    width: 20% !important;
    margin-top: 100px;
}

.text-danger {
    color: red !important;
}

.thankyouin h3 {
    color: #000;
    font-size: 35px;
    margin-top: 0;
}

.thankyouin p {
    font-size: 16px;
    letter-spacing: 1px;
    color: #000;
}

@media (max-width: 991px) {
    .thankyouin {
        width: 100%;
    }
}

/* --- New Animations & Utilities --- */

/* Hover Lift Effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

/* Fade Up Animation */
.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

.delay-100 {
    animation-delay: 0.1s;
}

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

.delay-300 {
    animation-delay: 0.3s;
}

/* Layout Utilities */
.mt-n5 {
    margin-top: -3rem !important;
}

.overflow-visible {
    overflow: visible !important;
}

/* Form Floating Styles Overrides */
.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
    color: var(--primary-color);
    opacity: 0.8;
}

.form-floating>.form-control {
    border-radius: 0.5rem;
}

.transition-transform {
    transition: transform 0.2s ease;
}

.transition-transform:active {
    transform: scale(0.98);
}