:root {
    --primary-blue: #002D62;         /* Apex Dark Navy Blue */
    --primary-gold: #70b324;         /* Apex Green */
    --primary-gold-light: #edf7e1;   /* Apex Light Green Tint */
    --gold-gradient: linear-gradient(135deg, #002D62 0%, #70b324 100%);
    --wave-top: #ffffff;
    --footer-bg: #021329;            /* Deep dark blue */

    --text-dark: #111827;
    --text-gray: #4b5563;
    --white: #ffffff;
    --bg-light: #f9fafb;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1rem;
    overflow-x: hidden;
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.2rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Layout Elements */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title span {
    color: var(--primary-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.75rem;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 1.5rem;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 2px;
}

/* Header & Top Bar */
.top-bar {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 0.6rem 0;
    height: 48px;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(112, 179, 36, 0.2);
    position: relative;
    z-index: 3001;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 1.5rem;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-info a {
    transition: var(--transition);
}

.top-info a:hover {
    color: var(--primary-gold);
}

header {
    background: transparent;
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    z-index: 3000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.scrolled {
    position: fixed;
    top: 0;
    background: #021329;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-bottom: 3px solid var(--primary-gold);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.logo img {
    height: 90px !important;
    width: auto !important;
    display: block;
    max-width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 2rem;
    font-weight: 600;
}

.nav-links > li > a {
    color: var(--white);
    padding: 0.5rem 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.nav-links > li > a:hover {
    color: #FFC107;
}

.nav-links > li > a.active {
    color: #FFC107;
    position: relative;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FFC107;
}

/* Buttons */
.btn-cta {
    background: var(--gold-gradient);
    color: var(--white);
    padding: 0.8rem 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(112, 179, 36, 0.3);
    text-align: center;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(112, 179, 36, 0.5);
    background: linear-gradient(135deg, #70b324 0%, #002D62 100%);
}

.btn-pill {
    background: var(--white);
    color: var(--primary-blue);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-pill:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    background: var(--primary-gold);
    color: var(--white);
}

/* Hero Section */
.hero {
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    background-size: cover !important;
    background-position: center 20% !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll;
    padding-top: 100px;
}

.wave-divider {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 10;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 4px);
    height: 105px;
    transform: translateX(-2px);
}

.wave-divider .shape-fill {
    fill: #ffffff;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

/* Stats Section */
.stats-section {
    background: var(--gold-gradient);
    padding: 8rem 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 10;
}

.stat-card {
    background: var(--white);
    padding: 3.5rem 2rem;
    border-radius: 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

/* Value Cards */
.value-card {
    text-align: center;
    padding: 3rem;
    border-radius: 1.5rem;
    background: var(--bg-light);
    border-bottom: 4px solid transparent;
    transition: var(--transition);
}

.value-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--primary-gold);
}

/* Feature Hover Box (Lifestyle Features list) */
.feature-hover-box {
    padding: 1.5rem;
    border-radius: 1rem;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: default;
}

.feature-hover-box:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-hover-box:hover div:first-child {
    background: var(--primary-blue);
    color: white;
}

.hover-zoom {
    transition: var(--transition);
}

.hover-zoom:hover {
    transform: scale(1.05) rotate(1deg);
    z-index: 5;
}

/* Testimonial Section */
.testimonial-section {
    background-size: cover !important;
    background-position: center 20% !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed;
    padding: 8rem 0;
    color: var(--white);
    text-align: center;
    position: relative;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 45, 98, 0.9) 0%, rgba(2, 19, 41, 0.95) 100%);
    z-index: 1;
}

.testimonial-section .container {
    position: relative;
    z-index: 10;
}

.testimonial-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-box i {
    font-size: 3rem;
    color: var(--primary-gold-light);
    margin-bottom: 1.5rem;
    display: block;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
}

/* Services Alternating blocks */
.service-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.service-image {
    flex: 1;
    min-width: 300px;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
}

.service-info {
    flex: 1;
    min-width: 300px;
}

.service-info span {
    color: var(--primary-gold);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.service-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.service-info p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    line-height: 1.8;
}

/* About Steps section */
.step-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    position: relative;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 5rem;
    font-weight: 800;
    color: rgba(112, 179, 36, 0.1);
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.step-content {
    position: relative;
    z-index: 1;
}

/* CTA Banner */
.cta-banner {
    padding: 6rem 0;
    color: var(--white);
    text-align: center;
    border-radius: 2rem;
    margin: 4rem 0;
    background: linear-gradient(135deg, #002D62 0%, #021329 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(112, 179, 36, 0.05);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Footer styling */
footer {
    background: var(--footer-bg);
    color: var(--white);
    padding: 6rem 0 2rem;
    position: relative;
    margin-top: 4rem;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.footer-wave .shape-fill {
    fill: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 90px;
    width: auto;
    margin-bottom: 1rem;
    display: block;
}

.footer-logo p {
    margin-top: 1.5rem;
    color: #9ca3af;
    line-height: 1.8;
}

.footer-links h4 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #d1d5db;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #1f2937;
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Mobile responsive navigation backdrop */
.nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 19, 41, 0.75);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 2000;
}

.nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    header {
        background: #021329;
        top: 0;
        position: fixed;
    }
    
    header .btn-cta {
        display: none;
    }
    
    

    .top-bar {
        display: block !important;
        height: auto !important;
        padding: 0.8rem 0 !important;
        text-align: center;
    }
    .top-bar .container {
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center;
        gap: 2rem !important;
    }
    .top-info {
        display: flex;
        flex-direction: row !important;
        gap: 2rem !important;
        align-items: center;
    }
    .top-info span {
        margin-right: 0 !important;
    }
    /* Hide text on mobile but show icons */
    .top-bar a, .top-bar span {
        font-size: 0 !important;
    }
    .top-bar i {
        font-size: 1.4rem !important;
        margin: 0 !important;
    }
    
    
    
    .hero {
        padding-top: 100px;
        background-attachment: scroll !important;
    }

    .testimonial-section {
        background-attachment: scroll !important;
    }

    .nav-toggle {
        display: block;
        color: var(--primary-gold);
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding-top: 6rem;
        transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: 20px 0 50px rgba(0,0,0,0.1);
        z-index: 2001;
        gap: 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        color: var(--primary-blue);
        font-size: 1.3rem;
        font-weight: 600;
        display: inline-block;
        padding: 1rem 0;
        width: 100%;
    }

    .nav-links li a.active {
        color: var(--primary-gold);
        border-bottom: 3px solid var(--primary-gold);
        display: inline-block;
        width: auto;
    }
    
    .nav-links li a.active::after {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .services-grid, .stats-grid {
        grid-template-columns: 1fr !important;
    }

    .service-block {
        gap: 2rem !important;
    }
    
    .service-image img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    h1 {
        font-size: 2.2rem !important;
    }
    
    h2 {
        font-size: 1.8rem !important;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

/* Gallery Grid in About Us */
.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.gallery-item-7 {
    grid-column: span 7;
    height: 500px;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.gallery-item-5 {
    grid-column: span 5;
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
}

.gallery-sub-row {
    height: 240px;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.gallery-item-6 {
    grid-column: span 6;
    height: 300px;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .about-gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .gallery-item-7,
    .gallery-item-6,
    .gallery-sub-row {
        grid-column: span 1 !important;
        height: 250px !important;
    }
    
    .gallery-item-5 {
        grid-column: span 1 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }
}

/* Referral Form Styling */
.referral-form-section {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
    border-top: 6px solid var(--primary-blue);
    max-width: 1000px;
    margin: 0 auto;
}

.form-group-title {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    border-bottom: 2px solid var(--primary-gold-light);
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-control-wrapper {
    margin-bottom: 1rem;
}

.form-control-wrapper.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-blue);
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid #d1d5db;
    border-radius: 0.6rem;
    font-family: inherit;
    font-size: 0.95rem;
    background: #f9fafb;
    outline: none;
    transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--primary-gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(112, 179, 36, 0.15);
}

/* Checkbox group styling */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.checkbox-input {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid var(--primary-blue);
    accent-color: var(--primary-gold);
    cursor: pointer;
}

@media (max-width: 768px) {
    .referral-form-section {
        padding: 2.5rem 1.5rem;
    }
    .checkbox-group {
        flex-direction: column;
        gap: 1rem;
    }
    .form-grid-2 {
        grid-template-columns: 1fr !important;
    }
}

/* Responsive Contact details and links updates to prevent horizontal scrolling */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .contact-info-card {
        padding: 1.5rem !important;
    }
}

.responsive-email-link {
    word-break: break-all !important;
    overflow-wrap: anywhere !important;
}

@media (max-width: 480px) {
    .footer-contact-link {
        white-space: normal !important;
        word-break: break-all !important;
        overflow-wrap: anywhere !important;
        display: flex !important;
        flex-wrap: wrap !important;
    }
}

/* Header Dropdown Menu Styling */
.nav-links li.dropdown {
    position: relative;
}

.nav-links li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 0;
    width: 350px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 4000;
    list-style: none;
    margin: 0;
    overflow: hidden;
}

.dropdown-menu li {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

.dropdown-menu li a {
    color: #111827 !important;
    padding: 1.1rem 1.5rem !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    transition: all 0.2s ease !important;
    border-bottom: none !important;
}

.dropdown-menu li a::after {
    display: none !important;
}

.dropdown-menu li a:hover {
    background: var(--primary-blue) !important;
    color: var(--white) !important;
    padding-left: 1.5rem !important;
}

@media (max-width: 991px) {
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        width: 100% !important;
        padding: 0.5rem 0 0.5rem 0 !important;
        border-top: none !important;
        background: #f9fafb !important;
        display: none !important;
        border-radius: 0.5rem !important;
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .dropdown.open .dropdown-menu {
        display: block !important;
    }

    .dropdown-toggle i {
        transition: transform 0.3s ease;
    }

    .dropdown.open .dropdown-toggle i {
        transform: rotate(180deg);
    }
    
    .dropdown-menu li a {
        font-size: 1.1rem !important;
        padding: 0.6rem 1.5rem !important;
        font-weight: 500 !important;
        color: #4b5563 !important;
        text-align: center !important;
    }
    
    .dropdown-menu li a:hover {
        color: var(--primary-gold) !important;
        background: transparent !important;
        padding-left: 1.5rem !important;
    }

    .mobile-logo-item {
        display: block !important;
    }
}

.translate-wrapper {
    margin-top: 2px;
}


/* Mobile Top Bar - Icons Only */
@media (max-width: 992px) {
    .top-bar {
        display: block !important;
        height: auto !important;
        padding: 0.8rem 0 !important;
        text-align: center;
    }
    .top-bar .container {
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center;
        gap: 2.5rem !important;
    }
    .top-info {
        display: flex;
        flex-direction: row !important;
        gap: 2.5rem !important;
        align-items: center;
        justify-content: center;
    }
    .top-info span {
        margin-right: 0 !important;
    }
    /* Hide text on mobile but show icons */
    .top-bar a, .top-bar span, .top-location span {
        font-size: 0 !important;
    }
    .top-bar i {
        font-size: 1.5rem !important;
        margin: 0 !important;
    }
    .top-location {
        display: none !important; /* Hide location entirely on mobile to save space if needed, or keep it */
    }
}

/* Desktop Top Bar - Reset */
@media (min-width: 993px) {
    .top-bar a, .top-bar span, .top-location span {
        font-size: 0.85rem !important; /* Normal text size */
    }
    .top-bar i {
        font-size: 0.85rem !important;
        margin-right: 0.5rem !important;
    }
    .top-bar {
        display: block !important;
    }
}


/* Exact Mercy Style Top Bar */
.top-bar .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-direction: row !important;
}
.top-info {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 1.5rem !important;
}
.top-right-items {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 1.5rem !important;
}
.top-icon {
    color: #ffffff !important; /* White icons */
    font-size: 1.1rem !important;
}

@media (max-width: 992px) {
    .top-bar {
        padding: 0.8rem 1rem !important;
    }
    .top-info {
        gap: 1.5rem !important;
    }
    .top-text {
        display: none !important; /* Hide text on mobile */
    }
    .top-icon {
        font-size: 1.3rem !important;
    }
    .top-location-text {
        display: none !important; /* Hide location entirely on mobile */
    }
}
@media (min-width: 993px) {
    .top-icon {
        color: var(--primary-gold) !important; /* Green on desktop */
        font-size: 0.9rem !important;
    }
    .top-text {
        display: inline !important;
    }
    .top-location-text {
        display: inline-flex !important;
        align-items: center;
        gap: 0.5rem;
    }
}


/* Final Top Bar Adjustments */
.top-bar {
    position: relative !important;
    top: 0 !important;
    z-index: 3001 !important;
}

header {
    top: auto !important;
    margin-top: 0 !important;
}
header.scrolled {
    top: 0 !important;
}

@media (max-width: 992px) {
    .top-bar {
        padding: 0.6rem 1.5rem !important;
    }
    .top-bar .container {
        justify-content: space-between !important;
    }
}


/* Clean Google Translate Styling */





/* The icon wrapper */

/* Hide the default google icon image */

/* Hide all text inside the widget completely */



/* Make the invisible Google button cover the full click area */





/* Hide Google Translate Banner */

body { top: 0px !important; position: static !important; }


/* Force Google Translate to fill its container for clicking */

/* Ensure inner elements stretch so the click is always intercepted natively */







/* Google Translate - Clean Styling */
.goog-te-banner-frame.skiptranslate { display: none !important; }
body { top: 0px !important; }

#google_translate_element {
    display: flex;
    align-items: center;
}

/* Style the Google Translate widget to match our top bar */
.goog-te-gadget-simple {
    background-color: transparent !important;
    border: none !important;
    padding: 4px 8px !important;
    font-size: 0.85rem !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    border-radius: 4px !important;
}

.goog-te-gadget-simple:hover {
    background-color: rgba(255, 255, 255, 0.15) !important;
}

/* Style the text inside */


/* Show only the icon - replace Google's icon with a globe */
.goog-te-gadget-simple .goog-te-gadget-icon {
    background-image: none !important;
    width: 0 !important;
    height: 0 !important;
    display: none !important;
}

/* Use pseudo element for globe icon */
.goog-te-gadget-simple::before {
    content: "\f0ac";
    font-family: "Font Awesome 5 Free", "Font Awesome 6 Free", "FontAwesome";
    font-weight: 900;
    color: #ffffff;
    font-size: 1.3rem;
    pointer-events: none;
}

/* Aggressively hide ALL text and arrows inside the Google widget */
.goog-te-gadget-simple span,
.goog-te-gadget-simple > span,
.goog-te-gadget-simple a,
.goog-te-gadget-simple img {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    font-size: 0 !important;
    color: transparent !important;
}

/* Make sure the globe icon is the ONLY thing giving it size */
.goog-te-gadget-simple {
    width: 30px !important;
    height: 30px !important;
    justify-content: center !important;
    padding: 0 !important;
}




/* Hide default img */
.goog-te-gadget-simple img {
    display: none !important;
}


/* Hide Google Translate Top Banner completely */
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.goog-te-banner-frame.skiptranslate, 
.goog-te-banner-frame,
iframe.goog-te-banner-frame,
#goog-gt-tt, 
.goog-te-balloon-frame {
    display: none !important;
    visibility: hidden !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}

body {
    top: 0px !important;
}

@media (max-width: 576px) {
    .top-bar .container {
        justify-content: space-between !important;
    }
    .top-right-items {
        margin-left: auto !important;
    }
    #google_translate_element {
        justify-content: flex-end !important;
    }
}
