/* Global Styles */
:root {
    --primary-color: #08534d;
    --secondary-color: #08534d;
    --accent-color: #e8c07d;
    --light-color: #c7d7e9;
    --dark-color: #222;
    --text-color: #333;
    --text-light: #777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Exo 2", sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #c7d7e9;
}

.row {
    padding: 0.5rem;
}

.hero-content p {
    backdrop-filter: blur(10px);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, .55);
    background: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(101, 193, 195, 0.1);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--primary-color);
    }

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

    .page-loader.fade-out {
        opacity: 0;
        visibility: hidden;
    }

.loader-content {
    text-align: center;
}

.loader-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}

    .loader-logo .logo-text {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        font-weight: 700;
        color: white;
    }

    .loader-logo .logo-subtext {
        font-size: 1rem;
        letter-spacing: 3px;
        color: var(--primary-color);
        text-transform: uppercase;
    }

.loader-spinner {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.spinner-dot {
    width: 15px;
    height: 15px;
    background-color: beige;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

    .spinner-dot:nth-child(1) {
        animation-delay: -0.32s;
    }

    .spinner-dot:nth-child(2) {
        animation-delay: -0.16s;
    }

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}
h1 {
    color: antiquewhite;
}

h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--secondary-color);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn {
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: beige;
    border-radius: 10px;
}

    .btn-primary:hover {
        background-color: transparent;
        border-color: var(--primary-color);
        color: var(--secondary-color);
    }

.btn-outline-light {
    border-radius: 10px;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--secondary-color);
}

.hero-btn {
    background-color: var(--primary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 10px;
}

    .section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

        .section-header h2::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

    .section-header p {
        color: var(--text-light);
        font-size: 1.1rem;
    }

/* Navigation */
.navbar {
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
    padding: 0px 20px;
}

    .navbar.scrolled {
        padding: 0px 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    height: 70px;
    width: 180px;
    filter: brightness(0) invert(1);
}



.navbar-nav .nav-link {
    color: white;
    font-weight: 500;
    padding: 10px 15px;
    margin: 0 5px;
    position: relative;
}

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        background-color: white;
        bottom: 0;
        left: 0;
        transition: width 0.3s ease;
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        width: 100%;
    }

    .navbar-nav .nav-link:hover {
        color: var(--primary-color);
    }

.btn-book {
    background-color: var(--secondary-color);
    color: white;
    border-radius: 40px;
    margin-left: 10px;
    padding: 10px 20px !important;
}

    .btn-book:hover {
        color: aquamarine;
    }

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.carousel {
    height: 100%;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
}

.carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

    .carousel-img::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 2;
    }

.carousel-caption {
    display:flex;
    justify-content:center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 20px;
    z-index: 3;
}

    .carousel-caption h1 {
        font-size: 4rem;
        font-weight: 700;
        margin-bottom: 20px;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    }

    .carousel-caption p {
        letter-spacing: 1px;
        font-family: "Courgette", cursive;
        backdrop-filter: blur(10px);
        font-size: 1.5rem;
        margin-bottom: 30px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        width: fit-content;
        padding: 15px 20px;
        border: 1px solid var(--light-color);
        border-radius: 10px;
    }

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: transparent;
    border: 2px solid white;
    opacity: 1;
    transition: all 0.3s ease;
}

    .carousel-indicators button.active {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.hero-section:hover .carousel-control-prev,
.hero-section:hover .carousel-control-next {
    opacity: 1;
}


/* Contact CTA Section */
.contact-cta {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: white;
}

    .contact-cta h2 {
        color: white;
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .contact-cta p {
        font-size: 1.1rem;
        opacity: 0.8;
    }

/* Features Section */
.features-section {
    padding: 30px 0;
    background-color: var(--light-color);
}

.feature-item {
    text-align: center;
    padding: 15px 10px;
    background-color: #a6c2cb;
    border-radius: 17px;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2), -5px -5px 15px rgba(255, 255, 255, 0.5), inset 2px 2px 5px rgba(0, 0, 0, 0.1), inset -2px -2px 5px rgba(255, 255, 255, 0.7);
}


    .feature-item:hover {
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2px;
    background-color: rgba(193, 154, 107, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background-color: var(--primary-color);
    color: white;
}

.feature-icon i {
    font-size: 30px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon i {
    color: white;
}

.feature-item h3 {
    margin-bottom: 5px;
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 0;
}

.footer-col {
    margin-bottom: 50px;
}

.footer h3, .footer h4 {
    color: white;
    margin-bottom: 25px;
    position: relative;
    font-family: 'Playfair Display', serif;
}

    .footer h3::after, .footer h4::after {
        content: '';
        position: absolute;
        width: 40px;
        height: 2px;
        background-color: var(--primary-color);
        bottom: -10px;
        left: 0;
    }

.footer p {
    color: rgba(255, 255, 255, 0.7);
    line-height:1.6;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
    padding: 0;
    background: bottom;
}

    .footer ul li {
        margin-bottom: 12px;
    }

        .footer ul li a {
            color: white !important;
            transition: all 0.3s ease;
            position: relative;
            display: inline-block;
        }

            .footer ul li a::after {
                content: '';
                position: absolute;
                width: 0;
                height: 1px;
                background-color: white;
                bottom: -2px;
                left: 0;
                transition: width 0.3s ease;
            }

            .footer ul li a:hover,
            .footer ul li a.active {
                color: var(--accent-color);
                padding-left: 5px;
            }

                .footer ul li a:hover::after,
                .footer ul li a.active::after {
                    width: 100%;
                }

/* Contact Info Styles */
.contact-info {
    list-style: none;
    padding: 0;
}


    .contact-info li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .contact-info i {
        color: beige;
        margin-right: 15px;
        margin-top: 3px;
        min-width: 20px;
        text-align: center;
    }

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

        .social-links a:hover {
            background-color: var(--light-color);
            color: var(--primary-color);
            transform: translateY(-3px);
        }



.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 20px;
}

    .footer-bottom p {
        margin: 0;
        margin: 0;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
    }

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

    .footer-bottom-links a {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

        .footer-bottom-links a:hover {
            color: white;
            text-decoration: none;
        }

/* Animations */
.wow {
    visibility: hidden;
}


/* Responsive Styles */
@media (max-width: 991.98px) {
    .footer-col {
        margin-bottom: 30px;
    }

    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
}

@media (max-width: 767.98px) {
    .footer {
        padding: 50px 0 0;
    }

    .footer-col {
        margin-bottom: 30px;
    }

    .contact-info li {
        flex-direction: column;
    }

    .contact-info i {
        margin-bottom: 5px;
    }
}

@media (max-width: 575.98px) {
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .carousel-caption h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 991.98px) {
    .navbar-nav {
        padding-top: 20px;
    }

    .btn-book {
        margin-left: 0;
        margin-top: 10px;
        display: inline-block;
    }

    .carousel-caption h1 {
        font-size: 3rem;
    }

    .carousel-caption p {
        font-size: 1.2rem;
    }

    .quote-box blockquote p {
        font-size: 1.3rem;
    }

    .footer-bottom-links {
        text-align: left;
        margin-top: 15px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 500px;
    }

    .carousel-caption h1 {
        font-size: 2.5rem;
    }

    .carousel-caption p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .quote-box {
        padding: 30px 20px;
    }

        .quote-box blockquote p {
            font-size: 1.1rem;
        }

    .contact-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
}

@media (max-width: 575.98px) {
    .logo-text {
        font-size: 1.5rem;
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .feature-item {
        padding: 30px 15px;
    }
}







/* Featured Rooms Section */
.featured-rooms {
    padding: 30px 0;
    background-color: var(--light-color);
}

.room-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .room-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.room-image {
    height: 220px;
    overflow: hidden;
}

    .room-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease;
    }

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.room-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: beige;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2), -5px -5px 15px rgba(255, 255, 255, 0.5), inset 2px 2px 5px rgba(0, 0, 0, 0.1), inset -2px -2px 5px rgba(255, 255, 255, 0.7);
}

    .room-content h3 {
        color: #1a2a3a;
        margin-bottom: 5px;
        font-size: 1.4rem;
    }

.room-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
    color: #777;
    font-size: 0.9rem;
}

    .room-meta i {
        margin-right: 5px;
        color: var(--secondary-color);
    }

.room-content p {
    color: #555;
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

.room-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 5px 0;
}

/* Gallery Preview Section */
.gallery-preview {
    padding: 80px 0;
    background-color: var(--light-color);
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    transition: all 0.3s ease;
}

    .gallery-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(193, 154, 107, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 30px;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .room-image {
        height: 180px;
    }

    .gallery-item {
        height: 200px;
    }
}

@media (max-width: 575.98px) {
    .featured-rooms, .gallery-preview {
        padding: 60px 0;
    }

    .room-image {
        height: 160px;
    }

    .gallery-item {
        height: 180px;
    }
}


/* Location Section */
.location-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.location-container {
    display: flex;
    flex-wrap: wrap;
    align-items:center;
    gap: 30px;
}

.address-details {
    flex: 1;
    min-width: 300px;
}

.map-container {
    flex: 1;
    min-width: 300px;
    height: 500px;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2), -5px -5px 15px rgba(255, 255, 255, 0.5);
}

.address-card,
.contact-info-card,
.hours-card {
    background-color: #a6c2cb;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2), -5px -5px 15px rgba(255, 255, 255, 0.5), inset 2px 2px 5px rgba(0, 0, 0, 0.1), inset -2px -2px 5px rgba(255, 255, 255, 0.7);
}

    .address-card h3,
    .contact-info-card h3,
    .hours-card h3 {
        color: var(--secondary-color);
        font-size: 1.4rem;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

        .address-card h3 i,
        .contact-info-card h3 i,
        .hours-card h3 i {
            margin-right: 15px;
            color: var(--primary-color);
        }

    .address-card p {
        line-height: 1.8;
        margin-bottom: 0;
    }

    .contact-info-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .contact-info-card li {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }

        .contact-info-card li i {
            margin-right: 12px;
            color: var(--primary-color);
            width: 20px;
            text-align: center;
        }

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .location-section {
        padding: 60px 0;
    }

    .map-container {
        height: 400px;
    }

    .address-card,
    .contact-info-card,
    .hours-card {
        padding: 25px;
    }
}

@media (max-width: 575.98px) {
    .map-container {
        height: 350px;
    }

    .address-card h3,
    .contact-info-card h3,
    .hours-card h3 {
        font-size: 1.2rem;
    }
}



/* About Section */
.about-section {
    padding: 50px 0;
    background-color: var(--light-color);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-features {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

    .about-features li {
        margin-bottom: 12px;
        padding-left: 30px;
        position: relative;
    }

    .about-features i {
        position: absolute;
        left: 0;
        top: 4px;
        color: var(--primary-color);
    }

.image-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2), -5px -5px 15px rgba(255, 255, 255, 0.5);
}

    .image-frame img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 20px;
    text-align: center;
}


/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .about-content {
        flex-direction: column;
    }

    .about-text,
    .about-image {
        width: 100%;
    }

    .about-image {
        order: -1;
    }
}

@media (max-width: 767.98px) {
    .about-section {
        padding: 60px 0;
    }
}

@media (max-width: 575.98px) {
    .about-features li {
        font-size: 0.95rem;
    }

    .image-overlay .btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* Custom Hamburger Menu */
.custom-toggler {
    border: none;
    padding: 0.75rem;
    outline: none !important;
    box-shadow: none !important;
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hamburger-menu {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bar {
    height: 2px;
    width: 100%;
    background-color: white;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Transform to X when menu is open */
.navbar-toggler[aria-expanded="true"] .bar1 {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .bar2 {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .bar3 {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Styling */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--secondary-color);
        padding: 20px;
        margin-top: 10px;
        border-radius: 5px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .navbar-nav {
        padding-top: 0;
    }

    .nav-item {
        margin-bottom: 10px;
    }

    .nav-link {
        padding: 10px 15px !important;
        border-radius: 5px;
    }

        .nav-link:hover,
        .nav-link.active {
            background-color: rgba(255,255,255,0.1);
        }

    .btn-book {
        margin-left: 0 !important;
        margin-top: 10px;
        width: 100%;
        display: block;
    }
}


/* ==================== TOP BANNER STYLES ==================== */

/* Top Banner */
.top-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 8px 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1040;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 35px;
    position: relative;
}

.banner-left,
.banner-center,
.banner-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.banner-left {
    justify-content: flex-start;
}

.banner-center {
    justify-content: center;
}

.banner-right {
    justify-content: flex-end;
    position: relative;
}

/* Contact Item */
.contact-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
}

    .contact-item i {
        margin-right: 8px;
        color: var(--accent-color);
        font-size: 0.9rem;
    }

/* Welcome Text */
.welcome-text {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

    .welcome-text i {
        color: var(--accent-color);
        margin: 0 10px;
        font-size: 0.7rem;
        animation: twinkle 2s ease-in-out infinite alternate;
    }

@keyframes twinkle {
    0% {
        opacity: 0.5;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Phone Numbers */
.phone-numbers {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-item {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

    .phone-item i {
        margin-right: 6px;
        color: var(--accent-color);
        font-size: 0.8rem;
    }

    .phone-item a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .phone-item:hover {
        transform: translateY(-1px);
    }

    .phone-item a:hover {
        color: var(--accent-color);
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }

.phone-separator {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

/* Banner Toggle Button (Mobile) */
.banner-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

    .banner-toggle:hover,
    .banner-toggle.active {
        background: rgba(255, 255, 255, 0.2);
        border-color: var(--accent-color);
        color: var(--accent-color);
        transform: scale(1.05);
    }

    .banner-toggle i {
        font-size: 0.9rem;
    }

/* Mobile Phone Dropdown */
.mobile-phone-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1050;
    margin-top: 5px;
}

    .mobile-phone-dropdown.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-phone-dropdown::before {
        content: '';
        position: absolute;
        top: -8px;
        right: 20px;
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid white;
    }

.mobile-phone-item {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    background-color: var(--light-color);
}

    .mobile-phone-item:last-child {
        border-bottom: none;
    }

    .mobile-phone-item:hover {
        background-color: rgba(8, 83, 77, 0.05);
    }

    .mobile-phone-item i {
        margin-right: 10px;
        color: var(--primary-color);
        width: 16px;
        text-align: center;
    }

    .mobile-phone-item a {
        color: var(--text-color);
        text-decoration: none;
        font-weight: 500;
        font-size: 0.9rem;
    }

    .mobile-phone-item:hover a {
        color: var(--primary-color);
    }

/* Adjust sticky header position to account for banner */
.sticky-top {
    top: 0;
}

body {
    padding-top: 0;
}

/* ==================== RESPONSIVE STYLES ==================== */

/* Large Desktop */
@media (min-width: 1200px) {
    .banner-content {
        padding: 0 20px;
    }

    .welcome-text {
        font-size: 0.9rem;
    }
}

/* Desktop */
@media (max-width: 1199.98px) {
    .welcome-text span {
        font-size: 0.85rem;
    }

    .phone-numbers {
        gap: 12px;
    }
}

/* Tablet */
@media (max-width: 991.98px) {
    .banner-center {
        display: none;
    }

    .banner-left,
    .banner-right {
        flex: 1;
    }

    .contact-item span {
        font-size: 0.8rem;
    }
}

/* Mobile Large */
@media (max-width: 767.98px) {
    .top-banner {
        padding: 6px 0;
    }

    .banner-content {
        min-height: 32px;
    }

    .contact-item {
        font-size: 0.8rem;
    }

    .banner-left {
        flex: 2;
    }

    .banner-right {
        flex: 0 0 auto;
    }
}

/* Mobile Small */
@media (max-width: 575.98px) {
    .top-banner {
        font-size: 0.8rem;
        padding: 5px 0;
    }

    .banner-content {
        min-height: 30px;
    }

    .contact-item i {
        font-size: 0.8rem;
    }

    .mobile-phone-dropdown {
        min-width: 180px;
        right: -10px;
    }

        .mobile-phone-dropdown::before {
            right: 25px;
        }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    .contact-item span.d-md-none {
        font-size: 0.75rem;
    }

    .mobile-phone-dropdown {
        min-width: 160px;
        right: -15px;
    }
}

/* ==================== ANIMATION ENHANCEMENTS ==================== */

/* Smooth banner appearance animation */
.top-banner {
    animation: slideInDown 0.5s ease-out;
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Phone number hover animations */
.phone-item {
    position: relative;
    overflow: hidden;
}

    .phone-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .phone-item:hover::before {
        left: 100%;
    }

    /* ==================== ACCESSIBILITY IMPROVEMENTS ==================== */

    /* Focus states */
    .phone-item a:focus,
    .banner-toggle:focus,
    .mobile-phone-item a:focus {
        outline: 2px solid var(--accent-color);
        outline-offset: 2px;
        border-radius: 2px;
    }

/* High contrast mode support */
@media (prefers-contrast: high) {
    .top-banner {
        background: var(--secondary-color);
        border-bottom: 2px solid var(--accent-color);
    }

    .banner-toggle {
        border-width: 2px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .welcome-text i,
    .phone-item,
    .banner-toggle,
    .mobile-phone-dropdown,
    .phone-item::before,
    .top-banner {
        animation: none;
        transition: none;
    }
}