/* 
   PREMIUM STYLE - UNTEL (IMPROVED VERSION)
   Modern, Luxury, Responsive with Enhanced Loading Spinner & Hero Background
*/

:root {
    /* Color Palette - Modern Luxury (UNTEL Orange Theme) */
    --primary-gold: #fcbc3c;
    --primary-gold-hover: #fa760a;
    --dark-navy: #626262;
    --dark-navy-light: #112240;
    --text-main: #e6f1ff;
    --text-muted: #8892b0;
    --text-dark: #1a1a1a;
    --light-bg: #f8f9fa;
    --white: #ffffff;

    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #fa760a 0%, #fcbc3c 100%);
    --navy-gradient: linear-gradient(135deg, #7c848c 0%, #b1b9c2 100%);

    /* Spacing & Layout */
    --section-padding: 3rem 0;
    --border-radius: 12px;
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    --glow-gold: 0 0 20px rgba(252, 84, 4, 0.3);
}

/* =========================================
   ENHANCED LOADING SPINNER
   ========================================= */
#overlayer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.98) 0%, rgba(18, 35, 60, 0.98) 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Modern Spinner Animation */
.spinner-border {
    width: 80px !important;
    height: 80px !important;
    border-width: 4px !important;
    border-color: rgba(252, 84, 4, 0.2) !important;
    border-right-color: #fc5404 !important;
    border-top-color: #fc5404 !important;
    animation: spin-enhanced 1.2s linear infinite;
    box-shadow: 0 0 30px rgba(252, 84, 4, 0.3);
}

/* Enhanced Spinner with Glow Effect */
.loader::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(252, 84, 4, 0.15) 0%, transparent 70%);
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Loading Text */
.loader::after {
    content: 'Chargement...';
    position: absolute;
    bottom: -60px;
    font-family: 'League Spartan', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fade-text 1.5s ease-in-out infinite;
}

@keyframes spin-enhanced {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(252, 84, 4, 0.3), 0 0 60px rgba(252, 84, 4, 0.15);
    }
    50% {
        box-shadow: 0 0 50px rgba(252, 84, 4, 0.5), 0 0 100px rgba(252, 84, 4, 0.25);
    }
}

@keyframes fade-text {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* =========================================
   GLOBAL STYLES
   ========================================= */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'League Spartan', 'Source Sans Pro', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.8;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

a {
    color: var(--primary-gold);
    transition: var(--transition-fast);
    text-decoration: none;
}

a:hover {
    color: var(--primary-gold-hover);
    text-decoration: none;
}

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

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

.site-section {
    padding: var(--section-padding);
    position: relative;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-gold);
    color: var(--white);
}

.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--white);
    transform: translateY(-2px);
}

/* =========================================
   PREMIUM NAVBAR
   ========================================= */
.premium-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.7rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand img {
    height: 50px;
    transition: height 0.3s ease;
}

.premium-navbar.scrolled .nav-brand img {
    height: 45px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--dark-navy);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-gold);
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 5px;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(10, 25, 47, 0.2);
    color: var(--dark-navy);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #fff !important;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1002;
}

.bar {
    width: 25px;
    height: 2px;
    background: var(--dark-navy);
    transition: all 0.3s ease;
}

.mobile-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 25, 47, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-link {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 1rem 0;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary-gold);
    text-decoration: none;
}

@media (max-width: 991px) {
    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }
}

/* =========================================
   ENHANCED HERO SECTION
   ========================================= */
.home-section {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0a192f 0%, #1a2a47 100%);
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-container video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.35;
}

/* Enhanced Hero Overlay with Multiple Layers */
.home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 25, 47, 0.85) 0%,
        rgba(18, 35, 60, 0.75) 50%,
        rgba(10, 25, 47, 0.85) 100%
    );
    z-index: 1;
}

/* Additional Radial Gradient for Depth */
.home-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 1;
}

.home-section .container {
    position: relative;
    z-index: 2;
}

.home-title-main {
    font-size: 6rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -2px;
    animation: slide-in-title 0.8s ease-out;
}

.home-title-sub {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    animation: fade-in-subtitle 1s ease-out 0.2s both;
}

.home-title-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

/* Hero Carousel */
#heroCarousel {
    min-height: 180px;
}

#heroCarousel .carousel-inner {
    position: relative;
}

#heroCarousel .carousel-item {
    text-align: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

#heroCarousel .carousel-item.active {
    opacity: 1;
}

#heroCarousel h1 {
    margin: 0;
}

/* Scroll Down Button */
.scroll-button {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 10;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-button:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(252, 84, 4, 0.4);
}

@keyframes slide-in-title {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-subtitle {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-us-section {
    background: var(--white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gold-gradient);
    margin-top: 10px;
}

.section-title-sub {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.img-overlap {
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    position: relative;
    z-index: 1;
}

.img-overlap img {
    height: 100%;
    min-height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

.img-overlap:hover img {
    transform: scale(1.03);
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    margin-bottom: 6px;
    font-size: 1rem;
    color: #111;
}

.about-list strong {
    color: var(--primary-gold);
}

/* Counters */
.section-counter {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-navy);
    display: block;
}

.caption {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.icon-people,
.icon-layers,
.icon-briefcase,
.icon-line-genius {
    font-size: 2.5rem;
    color: var(--primary-gold);
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
    background: var(--light-bg);
}

.block__16443 {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
    border-bottom: 3px solid transparent;
}

.block__16443:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--primary-gold);
}

.custom-icon {
    display: inline-flex;
    width: 70px;
    height: 70px;
    background: rgba(252, 84, 4, 0.1);
    color: var(--primary-gold);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.block__16443:hover .custom-icon {
    background: var(--gold-gradient);
    color: var(--white);
}

.block__16443 h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.block__16443 p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.custom-icon span {
    font-size: 48px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.block__16443:hover .custom-icon span {
    transform: scale(1.15);
    color: var(--primary-gold);
}

/* =========================================
   CERTIFICATES SECTION
   ========================================= */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--dark-navy);
    border-radius: 50%;
    padding: 10px;
    background-size: 50%;
}

#portfolio-grid-mobile .img-fluid {
    max-height: 400px;
    object-fit: contain;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

#portfolio-grid-mobile a {
    display: block;
    text-align: center;
}

.certificates-carousel {
    text-align: center;
}

.certificate-img {
    max-height: 480px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.certificate-img:hover {
    transform: scale(1.03);
}

.carousel-indicators li {
    background-color: #333;
}

@media (max-width: 768px) {
    .certificate-img {
        max-height: 300px;
    }
}

/* =========================================
   TRUSTED BY (Marquee)
   ========================================= */
#trusted-section {
    padding: 4rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--light-bg);
    overflow: hidden;
}

.trusted-marquee {
    overflow: hidden;
    position: relative;
    padding-top: 0.75rem;
    padding-bottom: 3rem;
}

.trusted-marquee .marquee-track {
    display: flex;
    animation: marquee-scroll var(--marquee-duration, 18s) linear infinite;
    will-change: transform;
}

.trusted-marquee:hover .marquee-track {
    animation-play-state: paused;
}

.trusted-marquee .marquee-group {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-right: 2rem;
}

.trusted-logo {
    max-height: 120px;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(0);
    opacity: 0.6;
    transition: var(--transition-fast);
    margin: 0 1.5rem;
}

.trusted-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-1 * var(--marquee-distance, 1000px)));
    }
}

/* =========================================
   RECRUITMENT & CONTACT FORM
   ========================================= */
#recruitment-section,
#contact-section {
    background: var(--light-bg);
}

form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.form-group label {
    font-weight: 600;
    color: var(--dark-navy);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.form-control {
    height: 50px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
    padding: 0 20px;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(252, 84, 4, 0.1);
}

textarea.form-control {
    height: auto;
    padding-top: 15px;
}
/* Style spécifique pour le champ de fichier */
input[type="file"].form-control {
    padding-top: 10px; /* Aligne le texte verticalement */
    line-height: 1;
}

/* Style du bouton "Choisir un fichier" à l'intérieur de l'input */
.form-control::file-selector-button {
    border: none;
    background: #f1f1f1;
    padding: 0 15px;
    margin-right: 15px;
    border-radius: 4px;
    height: 30px;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-navy);
}

.form-control::file-selector-button:hover {
    background: var(--gold-gradient);
    color: var(--white);
}
/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: var(--dark-navy);
    color: rgba(255, 255, 255, 0.6);
    padding: 3rem 0;
    font-size: 0.9rem;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.8);
}

.site-footer a:hover {
    color: var(--primary-gold);
}

.footer-social .social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 5px;
    transition: var(--transition-fast);
    color: var(--white);
}

.footer-social .social-link:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-3px);
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */
@media (max-width: 1199.98px) {
    .trusted-logo {
        max-height: 100px;
        max-width: 150px;
    }
}

@media (max-width: 991.98px) {
    .home-title-main {
        font-size: 4rem;
    }

    .home-title-sub {
        font-size: 1.8rem;
    }

    .section-hero {
        height: auto;
        padding: 150px 0 100px 0;
    }

    .site-navbar {
        background: var(--dark-navy);
        padding: 10px 0;
    }

    .site-navbar .site-logo a {
        color: var(--white);
    }

    .trusted-logo {
        max-height: 80px;
        max-width: 120px;
    }
}

@media (max-width: 767.98px) {
    .home-title-main {
        font-size: 3rem;
    }

    .home-title-sub {
        font-size: 1.5rem;
    }

    .section-counter .col-6 {
        margin-bottom: 30px;
    }

    .loader::after {
        bottom: -80px;
        font-size: 12px;
    }

    .spinner-border {
        width: 60px !important;
        height: 60px !important;
        border-width: 3px !important;
    }
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Logo (Left) */
.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand img {
    height: 55px;
    transition: height 0.3s ease;
}

.premium-navbar.scrolled .nav-brand img {
    height: 48px;
}

/* Desktop Navigation (Center) */
.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--dark-navy);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-gold);
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Desktop Actions (Right) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0.4rem;
}

.lang-btn {
    background: transparent;
    border: 1.5px solid rgba(10, 25, 47, 0.15);
    color: var(--dark-navy);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #fff;
}

/* Mobile Toggle (Hidden on Desktop) */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1002;
    padding: 5px;
    color: #0a192f;
}

.bar {
    width: 26px;
    height: 3px;
    background: var(--dark-navy);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 2rem;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-lang-switcher {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-bg);
}

.mobile-nav-link {
    font-size: 1.8rem;
    color: var(--dark-navy);
    margin: 1rem 0;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.mobile-nav-link:hover {
    color: var(--primary-gold);
    text-decoration: none;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .nav-menu {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .navbar-container {
        justify-content: space-between;
    }
}

@media (max-width: 767px) {
    .premium-navbar {
        padding: 1rem 0;
    }

    .nav-brand img {
        height: 45px;
    }

    .premium-navbar.scrolled .nav-brand img {
        height: 40px;
    }

    .mobile-nav-link {
        font-size: 1.5rem;
    }
}