.header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0px;
    box-sizing: border-box;
}

.mainheader {
    background: rgba(245, 245, 245, 1);
    position: fixed;
    top: 0px;
    width: 100%;
    left: 0;
    z-index: 9999;
}

.navbar-brand {
    border-right: 3px solid rgba(224, 224, 224, 1);
    padding-right: 15px;
}

.footerlinks h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footerlinks h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #06853A, #4AC14B);
    border-radius: 2px;
}

.footerlinks ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footerlinks ul li {
    margin-bottom: 14px;
}

.footerlinks ul li a {
    font-size: 15px;
    font-weight: 400;
    color: #666;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footerlinks ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #06853A;
    transition: width 0.3s ease;
}

.footerlinks ul li a:hover {
    color: #06853A;
    padding-left: 8px;
    transform: translateX(4px);
}

.footerlinks ul li a:hover::before {
    width: 20px;
}

/* Newsletter Section - Separate from Footer */
.newsletter-section {
    background: linear-gradient(135deg, #06853A 0%, #4AC14B 100%);
    padding: 80px 0;
    margin-top: 150px;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.newsletter-wrapper {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-newsletter {
    color: white;
}

.footer-newsletter h4 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.footer-newsletter p {
    font-size: 16px;
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.98);
    color: #1a1a1a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    background: #ffffff;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    padding: 16px 40px;
    background: #ffffff;
    color: #06853A;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.newsletter-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 133, 58, 0.1), transparent);
    transition: left 0.5s ease;
}

.newsletter-form button:hover::before {
    left: 100%;
}

.newsletter-form button:hover {
    background: #f8f9fa;
    color: #06853A;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.newsletter-form button:active {
    transform: translateY(-1px) scale(0.98);
}

.newsletter-form button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.newsletter-form button:hover svg {
    transform: translateX(4px);
}

/* Modern Footer Styles */
.mainfooter {
    padding: 80px 0px 40px;
}

.footersocial ul {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.footersocial ul li a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e9ecef;
}

.footersocial ul li a:hover {
    background: #06853A;
    border-color: #06853A;
    transform: translateY(-4px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(6, 133, 58, 0.3);
}

.footersocial ul li a svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.footersocial ul li a svg path {
    fill: #666;
    transition: fill 0.3s ease;
}

.footersocial ul li a:hover svg {
    transform: scale(1.1);
}

.footersocial ul li a:hover svg path {
    fill: #ffffff;
}

.destinationfooterbox {
    /* border-bottom: 1px solid #e9ecef; */
    padding-bottom: 0px;
    margin-bottom: 20px;
}

.destinationfooterbox h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.destinationfooterbox ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.destinationfooterbox ul li a {
    font-size: 15px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 6px 0;
    position: relative;
}

.destinationfooterbox ul li a::before {
    content: '→';
    opacity: 0;
    margin-right: 8px;
    transition: all 0.3s ease;
    transform: translateX(-10px);
}

.destinationfooterbox ul li a:hover {
    color: #06853A;
    padding-left: 20px;
}

.destinationfooterbox ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footerbottmbox {
    border-top: 1px solid #e9ecef;
    margin-top: 50px;
    padding-top: 30px;
}

.footerbottmbox p {
    font-size: 14px;
    text-align: center;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.footerbottmbox p a {
    color: #06853A;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footerbottmbox p a:hover {
    color: #05682e;
    text-decoration: underline;
}

.footer-trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    padding: 40px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    margin: 40px 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #1a1a1a;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.trust-badge svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    padding: 8px;
    background: rgba(6, 133, 58, 0.1);
    border-radius: 8px;
}

.trust-badge-content {
    display: flex;
    flex-direction: column;
}

.trust-badge-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.trust-badge-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.footer-contact-info {
    margin-top: 24px;
}

.footer-contact-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.footer-contact-info p svg {
    flex-shrink: 0;
}

.footer-contact-info a {
    color: #06853A;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-contact-info a:hover {
    color: #05682e;
    text-decoration: underline;
}

.footerlogo {
    margin-bottom: 24px;
}

.footerlogo img {
    transition: transform 0.3s ease;
}

.footerlogo:hover img {
    transform: scale(1.05);
}

.listhomebannerbox {
    height: 400px;
    margin-top: 50px;
    border-radius: 30px;
    overflow: hidden;
}

.listhomebannerbox::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #00000075;
    top: 0;
    position: absolute;
}

.searchinputbox {
    border: none;
    border-radius: 40px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    cursor: pointer;
}

.searchinputbox input {
    border-radius: 40px;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
        margin-top: 100px;
    }

    .footer-newsletter h4 {
        font-size: 26px;
        margin-bottom: 14px;
    }

    .footer-newsletter p {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }

    .newsletter-form input {
        padding: 14px 20px;
        font-size: 15px;
    }

    .newsletter-form button {
        width: 100%;
        padding: 14px 32px;
        justify-content: center;
    }

    .footer-trust-badges {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 30px 0;
    }

    .trust-badge {
        padding: 14px;
    }

    .destinationfooterbox ul {
        grid-template-columns: 1fr;
    }

    .mainfooter {
        padding: 50px 0px 30px;
    }

    .footer-trust-badges {
        margin: 30px 0;
    }
}

@media only screen and (max-width: 600px) {
    .newsletter-section {
        padding: 50px 20px;
        margin-top: 80px;
    }

    .footer-newsletter h4 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .footer-newsletter p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .newsletter-form input {
        padding: 12px 18px;
        font-size: 14px;
    }

    .newsletter-form button {
        padding: 12px 28px;
        font-size: 15px;
    }

    .footerlogo {
        margin-bottom: 24px;
    }

    .footerlogo img {
        height: 32px;
    }

    .footerbottmbox p {
        font-size: 12px;
    }

    .mainfooter {
        padding: 40px 0px 20px;
    }

    .navbar-brand img {
        height: 25px;
    }

    .listhomebannerbox {
        height: 300px;
    }

    .footerlinks h4 {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .destinationfooterbox h4 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .footer-trust-badges {
        padding: 24px 0;
        gap: 12px;
    }

    .trust-badge {
        padding: 12px;
        gap: 12px;
    }

    .trust-badge svg {
        width: 24px;
        height: 24px;
    }
}


/* Booking Modal Styles */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-modal-overlay.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.booking-modal {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    /* max-height: 90vh; */
    /* overflow-y: auto; */
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 10001;
}

.booking-modal-overlay.show .booking-modal {
    transform: scale(1);
}

.booking-modal-header {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: white;
    padding: 15px 30px 15px 30px;
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
}

.booking-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.booking-modal-header-content {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    position: relative;
    z-index: 1;
    padding-right: 50px;
}

.booking-modal-icon-wrapper {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.booking-modal-icon-wrapper:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.booking-modal-icon-wrapper svg {
    width: 28px;
    height: 28px;
    color: white;
    stroke: currentColor;
}

.booking-modal-text-content {
    flex: 1;
}

.booking-modal-text-content h3 {
    margin: 0 0 10px 0;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.4px;
    color: white;
}

.booking-modal-text-content p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.95);
    opacity: 0.95;
}

.booking-modal-text-content p em {
    font-style: italic;
    opacity: 0.9;
    font-weight: 500;
}

.booking-modal-header .close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
    z-index: 10;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.booking-modal-header .close-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.booking-modal-header .close-btn:active {
    transform: rotate(90deg) scale(0.95);
}

.booking-modal-body {
    padding: 30px;
    height: 500px;
    overflow-y: auto;
}

.booking-form-group {
    margin-bottom: 20px;
}

.booking-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.booking-form-group label .required {
    color: #e74c3c;
    margin-left: 3px;
}

.booking-form-group input,
.booking-form-group select,
.booking-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fff;
}

.booking-form-group input:focus,
.booking-form-group select:focus,
.booking-form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.booking-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.booking-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (max-width: 576px) {
    .booking-form-row {
        grid-template-columns: 1fr;
    }

    .booking-modal-header {
        padding: 24px 20px;
    }

    .booking-modal-header-content {
        gap: 16px;
    }

    .booking-modal-icon-wrapper {
        width: 48px;
        height: 48px;
    }

    .booking-modal-icon-wrapper svg {
        width: 24px;
        height: 24px;
    }

    .booking-modal-text-content h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .booking-modal-text-content p {
        font-size: 14px;
    }

    .booking-modal-header {
        padding: 22px 20px;
    }

    .booking-modal-header-content {
        padding-right: 45px;
        gap: 14px;
    }

    .booking-modal-header .close-btn {
        top: 18px;
        right: 18px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
}

.booking-submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.booking-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.booking-submit-btn:active {
    transform: translateY(0);
}

.booking-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.booking-package-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #667eea;
}

.booking-package-info h5 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 16px;
}

.booking-package-info p {
    margin: 5px 0;
    color: #666;
    font-size: 14px;
}


/* Modern Header */
.modern-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.modern-header.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-top-bar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    font-size: 14px;
}

.header-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.header-contact-link:hover {
    color: #4AC14B;
    transform: translateY(-1px);
}

.header-contact-link svg {
    flex-shrink: 0;
}

.whatsapp-link:hover {
    color: #4AC14B;
}

.user-greeting {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.btn-logout {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-logout:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.main-navbar {
    background: #ffffff;
    padding: 12px 0;
    border-bottom: none;
}

.logo-img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo-img {
    transform: scale(1.05);
}

.main-navbar .navbar-brand {
    border: none;
    padding: 0;
    margin-right: 0;
}

.main-navbar .navbar-nav {
    align-items: center;
    gap: 4px;
}

.main-navbar .nav-link {
    color: #333333;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.main-navbar .nav-link:hover {
    color: #06853A;
    background: rgba(6, 133, 58, 0.05);
}

.main-navbar .nav-link.btn-cta {
    background: linear-gradient(135deg, #06853A 0%, #4AC14B 100%);
    color: #ffffff !important;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    margin-left: 8px;
    border-radius: 8px;
    font-weight: 600;
}

.main-navbar .nav-link.btn-cta:hover {
    background: linear-gradient(135deg, #057030 0%, #3da83a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 133, 58, 0.3);
    color: #ffffff !important;
}

.main-navbar .dropdown-menu {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 8px;
}

.main-navbar .dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.main-navbar .dropdown-item:hover {
    background: rgba(6, 133, 58, 0.05);
    color: #06853A;
}

/* Explore Dropdown */
.explore-dropdown {
    min-width: 280px;
    padding: 12px 0;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 8px;
}

.explore-dropdown .dropdown-header {
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.explore-dropdown .dropdown-item {
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 0;
    transition: all 0.2s ease;
}

.explore-dropdown .dropdown-item:hover {
    background: #f8f9fa;
    color: #06853A;
    transform: none;
}

.destination-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.dest-name {
    font-weight: 500;
    color: #333;
}

.dest-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dest-badge.trending {
    background: #fff3e0;
    color: #f57c00;
}

.explore-dropdown .dropdown-item:hover .dest-name {
    color: #06853A;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Currency Selector */
.currency-selector {
    position: relative;
}

.currency-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: transparent;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.currency-btn:hover {
    border-color: #06853A;
    color: #06853A;
    background: rgba(6, 133, 58, 0.05);
}

.currency-symbol {
    font-weight: 600;
}

.currency-icon {
    font-size: 16px;
}

.currency-btn svg {
    transition: transform 0.2s ease;
}

.currency-btn[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.currency-menu {
    min-width: 140px;
    padding: 8px 0;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 8px;
}

.currency-menu .dropdown-item {
    padding: 10px 16px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.currency-menu .dropdown-item:hover {
    background: #f8f9fa;
    color: #06853A;
}

/* User Menu */
.user-menu {
    position: relative;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: transparent;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.user-btn:hover {
    border-color: #06853A;
    color: #06853A;
    background: rgba(6, 133, 58, 0.05);
}

.user-btn svg {
    flex-shrink: 0;
}

.user-menu-dropdown {
    min-width: 200px;
    padding: 8px 0;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 8px;
}

.user-menu-dropdown .dropdown-item {
    padding: 10px 16px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.user-menu-dropdown .dropdown-item svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.user-menu-dropdown .dropdown-item:hover {
    background: #f8f9fa;
    color: #06853A;
}

.user-menu-dropdown .logout-btn {
    width: 100%;
    text-align: left;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #dc3545;
}

.user-menu-dropdown .logout-btn:hover {
    background: #fff5f5;
    color: #c82333;
}

/* Dropdown Divider */
.dropdown-divider {
    margin: 8px 0;
    border-color: #e9ecef;
}

/* Login Button */
.btn-login {
    padding: 8px 20px;
    background: #06853A;
    color: #ffffff !important;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.btn-login:hover {
    background: #057030;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(6, 133, 58, 0.3);
    color: #ffffff !important;
}

.navbar-toggler {
    border: 2px solid #333;
    padding: 6px 10px;
    border-radius: 6px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(6, 133, 58, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
}

/* Desktop styles */
@media (min-width: 992px) {
    .main-navbar .navbar-collapse {
        display: flex !important;
    }

    .main-navbar .navbar-nav {
        flex-direction: row;
    }
}

/* Mobile styles */
@media (max-width: 991.98px) {
    .header-top-bar .d-flex {
        flex-wrap: wrap;
        gap: 8px;
    }

    .header-top-bar .d-flex>div:first-child {
        flex: 1 1 100%;
        justify-content: center;
    }

    .header-top-bar .d-flex>div:last-child {
        flex: 1 1 100%;
        justify-content: center;
    }

    .main-navbar {
        padding: 10px 0;
    }

    .main-navbar .navbar-collapse {
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid #e9ecef;
    }

    .main-navbar .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 0;
    }

    .main-navbar .nav-item {
        width: 100%;
    }

    .main-navbar .nav-link {
        width: 100%;
        padding: 12px 16px;
        text-align: left;
    }

    .main-navbar .nav-link.btn-cta {
        margin-left: 0;
        margin-top: 8px;
        justify-content: center;
        width: 100%;
    }

    .main-navbar .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        margin-top: 4px;
        box-shadow: none;
        border: 1px solid #e9ecef;
    }

    .header-actions {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        margin-top: 12px;
    }

    .currency-btn,
    .user-btn,
    .btn-login {
        width: 100%;
        justify-content: center;
    }

    .explore-dropdown {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .header-top-bar {
        font-size: 12px;
        padding: 8px 0;
    }

    .header-contact-link {
        font-size: 12px;
        gap: 6px;
    }

    .header-contact-link svg {
        width: 16px;
        height: 16px;
    }

    .user-greeting {
        font-size: 12px;
    }

    .btn-logout,
    .btn-login {
        padding: 5px 12px;
        font-size: 12px;
    }

    .main-navbar .navbar-brand img {
        height: 32px !important;
    }

    .main-navbar .nav-link {
        padding: 8px 12px;
        font-size: 14px;
    }

    .logo-img {
        height: 35px !important;
    }
}