/*
Theme Name: Roxy Dev Custom
Author: meshekari
Description: Custom responsive theme for Roxy Development Inc.
Version: 1.6 - Color Overhaul Final Fix
*/
/* --- Global Styles & Variables --- */
:root {
    --gold-color: #D7AE55;
    --gold-darker: #c49a43;
    --dark-bg: #4A483E;
    --main-bg: #757165;
    --card-bg: #8a8678;
    --light-text: #F5F5F5;
    --white-color: #ffffff;
    --font-serif: 'Noto Serif', serif;
    --font-sans: 'Roboto', sans-serif;
    --header-height: 100px;
    --header-shrink-height: 80px;
}

/* --- Base & Typography --- */
*, *::before, *::after {
    box-sizing: border-box;
}
body {
    font-family: var(--font-sans);
    color: var(--light-text);
    background-color: var(--main-bg);
    margin: 0;
    line-height: 1.7;
    font-size: 16px;
}
body.no-scroll {
    overflow: hidden;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: var(--white-color);
    font-weight: 700;
    line-height: 1.3;
}
a {
    color: var(--gold-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: var(--gold-darker);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- Reusable Components --- */
.section-padding {
    padding: 60px 0;
}
.section-padding-grey {
    padding: 60px 0;
    background-color: var(--card-bg);
}
.text-center {
    text-align: center;
}
.section-title {
    margin-bottom: 40px;
}
.section-title .subtitle {
    display: block;
    font-size: 1rem;
    color: var(--gold-color);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.section-title h2 {
    font-size: 2.2rem;
    margin: 0;
    color : var(--dark-bg);
}
.section-title p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 15px auto 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid var(--gold-color);
    text-align: center;
}
.btn-gold {
    background-color: var(--gold-color);
    color: var(--white-color);
}
.btn-gold:hover {
    background-color: var(--gold-darker);
    border-color: var(--gold-darker);
    color: var(--white-color);
}
.btn-outline-gold {
    background-color: transparent;
    color: var(--gold-color);
}
.hero .btn-outline-gold {
    color: var(--white-color);
    border-color: var(--white-color);
}
.hero .btn-outline-gold:hover {
    background-color: var(--white-color);
    color: var(--dark-bg);
}
.btn-outline-gold:hover {
    background-color: var(--gold-color);
    color: var(--white-color);
}

/* --- Header --- */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--dark-bg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}
.top-bar {
    background-color: var(--dark-bg);
    color: var(--white-color);
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar .social-icons a {
    color: var(--white-color);
    margin-right: 15px;
}
.top-bar .social-icons a:hover {
    color: var(--gold-color);
}
.top-bar .social-icons svg {
    height: 32px;
    width: 32px;
    fill: currentColor;
}
.top-bar-phone {
    color: var(--white-color);
}
.main-header-bar {
    height: var(--header-height);
    transition: height 0.3s ease;
}
.site-header.shrink .main-header-bar {
    height: var(--header-shrink-height);
}
.nav-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
}
.nav-wrapper .call-btn.desktop {
    margin-left: auto;
}
.logo-container {
    margin-right: 0;
}
.logo-container a {
    display: flex;
    align-items: center;
    height: 100%;
}
.logo-img {
    height: 120px;
    width: auto;
    transition: height 0.3s ease;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
}
.site-header.shrink .logo-img {
    height: 70px;
    padding: 5px;
}
.main-nav.desktop {
    display: none;
    margin-left: 40px;
}
.main-nav .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}
.main-nav .menu li {
    margin-left: 20px;
}
.main-nav .menu a {
    color: var(--light-text);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    padding: 5px 0;
}
.main-nav .menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold-color);
    transition: width 0.3s ease;
}
.main-nav .menu a:hover::after,
.main-nav .menu .current-menu-item > a::after {
    width: 100%;
}
.call-btn.desktop {
    display: none;
}

/* --- Mobile Menu --- */
.menu-toggle {
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
}
.hamburger-icon {
    display: block;
    position: relative;
    width: 25px;
    height: 2px;
    background-color: var(--light-text);
    transition: all 0.3s ease;
}
.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--light-text);
    transition: all 0.3s ease;
}
.hamburger-icon::before {
    top: -8px;
}
.hamburger-icon::after {
    bottom: -8px;
}
.menu-toggle[aria-expanded="true"] .hamburger-icon {
    background-color: transparent;
}
.menu-toggle[aria-expanded="true"] .hamburger-icon::before {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--dark-bg);
}
.menu-toggle[aria-expanded="true"] .hamburger-icon::after {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--dark-bg);
}
.mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white-color);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    padding-top: 120px;
    text-align: center;
    z-index: 999;
}
.mobile-nav.open {
    transform: translateX(0);
}
.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-menu-list li {
    margin-bottom: 25px;
}
.mobile-menu-list a {
    font-size: 1.5rem;
    color: var(--dark-bg);
    font-weight: bold;
}
.mobile-nav .call-btn {
    margin-top: 30px;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}
.hero .container {
    position: relative;
    z-index: 2;
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white-color);
}
.hero-subtitle {
    font-size: 1.1rem;
    margin: 20px 0 30px 0;
}
.hero-buttons .btn {
    margin: 10px;
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.service-item {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.service-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.service-content h3 {
    margin-top: 0;
    font-size: 1.5rem;
}
.service-content p {
    flex-grow: 1;
}
.service-content .read-more {
    font-weight: bold;
    margin-top: 15px;
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}
.about-image img {
    width: 100%;
    border-radius: 8px;
}
.why-choose-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}
.why-choose-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}
.why-choose-list li::before {
    content: '✔';
    color: var(--gold-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* --- Contact Form Section --- */
.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
}

/* --- Footer --- */
.site-footer {
    background-color: var(--dark-bg);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
.footer-widget .widget-title {
    font-size: 1.2rem;
    color: var(--white-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold-color);
}
.footer-logo {
    max-height: 80px;
    margin-bottom: 20px;
}
.footer-description {
    margin-bottom: 20px;
}
.footer-social-icons a {
    color: var(--white-color);
    margin-right: 15px;
    display: inline-block;
}
.footer-social-icons svg {
    height: 22px;
    width: 22px;
    fill: currentColor;
}
.footer-menu-list, .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-menu-list li, .contact-list li {
    margin-bottom: 10px;
}
.footer-menu-list a, .contact-list a {
    color: rgba(255, 255, 255, 0.8);
}
.footer-menu-list a:hover, .contact-list a:hover {
    color: var(--white-color);
}
.contact-list li {
    display: flex;
    align-items: center;
}
.contact-list .icon-placeholder {
    color: var(--gold-color);
    margin-right: 10px;
    min-width:30px;
    flex-shrink: 0;
}
.copyright-bar {
    background-color: #222;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 0.9rem;
}
.copyright-bar p {
    margin: 0;
}
.footer-cta-text {
    margin-bottom: 25px;
    font-size: 0.95em;
    line-height: 1.6;
}
.footer-cta-button {
    display: block;
    text-align: center;
    width: 100%;
}
.footer-license {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9em;
    opacity: 0.8;
    text-align: center;
}

/* --- Page Template --- */
.page-entry .entry-title {
    font-size: 2.5rem;
}
.page-entry .entry-content {
    max-width: 800px;
    margin: 40px auto 0 auto;
}
.page-entry .entry-content p,
.page-entry .entry-content ul,
.page-entry .entry-content ol {
    margin-bottom: 1.5em;
}

/* --- WPForms Styling --- */
.wpforms-container .wpforms-form .wpforms-field-label {
    font-weight: bold !important;
    color: var(--light-text) !important;
}
.wpforms-container .wpforms-form .wpforms-field input[type="text"],
.wpforms-container .wpforms-form .wpforms-field input[type="email"],
.wpforms-container .wpforms-form .wpforms-field textarea {
    border-radius: 5px !important;
    border: 1px solid var(--main-bg) !important;
    background-color: rgba(0,0,0,0.2) !important;
    color: var(--white-color) !important;
    width: 100%;
}
.wpforms-container .wpforms-form .wpforms-submit-container .wpforms-submit {
    width: 100%;
    background-color: var(--gold-color) !important;
    color: var(--white-color) !important;
    border: none !important;
    padding: 15px !important;
    font-size: 1rem !important;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px !important;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.wpforms-container .wpforms-form .wpforms-submit-container .wpforms-submit:hover {
    background-color: var(--gold-darker) !important;
}
.footer-form .wpforms-field-label {
    color: var(--white-color) !important;
}

/*------------------------ Pages ----------------------------------*/
/* --- Thank You Page --- */
.thank-you-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color : var(--main-bg);
}
.thank-you-icon {
    margin-bottom: 25px;
}
.thank-you-title {
    font-size: 3rem;
    color: var(--white-color);
    margin-bottom: 15px;
}
.thank-you-subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 500px;
    margin: 0 auto 30px auto;
}

/* --- About Us Page Specific Styles --- */
.page-header {
    background-color: var(--dark-bg);
    padding: 60px 0;
    text-align: center;
}
.page-header .page-title {
    color: var(--white-color);
    font-size: 3rem;
    margin: 0 0 10px 0;
}
.page-header .page-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin: 0;
}
.about-grid-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.about-founder-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about-founder-content .subtitle {
    display: block;
    color: var(--gold-color);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.about-founder-content h2 {
    font-size: 2.5rem;
    margin-top: 0;
}
.about-signature {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--light-text);
    margin-top: 25px;
}
.certifications-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}
.cert-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.cert-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    background-color: var(--gold-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cert-icon svg {
    width: 30px;
    height: 30px;
}
.cert-item h3 {
    font-size: 1.5rem;
    margin: 0 0 10px 0;
    color: var(--white-color);
}
.cert-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--light-text);
}

/* Responsive adjustments for About Page */
@media (min-width: 768px) {
    .about-grid-two-col {
        grid-template-columns: 1fr 1.5fr;
        gap: 60px;
    }
    .certifications-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Contact Page Specific Styles --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}
.contact-details h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--gold-color);
    padding-bottom: 10px;
    display: inline-block;
}
.contact-list-page {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.contact-list-page li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}
.contact-list-page .icon-placeholder {
    color: var(--gold-color);
    font-weight: bold;
    margin-right: 15px;
    width: 60px;
}
.follow-us-title {
    margin-top: 40px;
}
.social-icons-contact a {
    color: var(--light-text);
    margin-right: 20px;
    display: inline-block;
}
.social-icons-contact svg {
    width: 28px;
    height: 28px;
    transition: color 0.3s ease;
}
.social-icons-contact a:hover {
    color: var(--gold-color);
}
.map-section {
    padding: 0;
    margin-top: 80px;
    line-height: 0;
}
@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 60px;
        align-items: flex-start;
    }
}

/* --- Service Page Template Styles --- */
.service-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}
.service-hero-title {
    font-size: 3rem;
    color: var(--white-color);
    margin: 0;
}
.service-hero-subtitle {
    font-size: 1.2rem;
    margin-top: 15px;
    max-width: 600px;
    color: var(--white-color);
    margin-left: auto;
    margin-right: auto;
}
.service-hero .hero-overlay {
    background-color: rgba(0, 0, 0, 0.25); /* opacity  */
}
.service-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    
}
.service-description h2 {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 20px;
}
.service-description ul {
    list-style: none;
    padding-left: 0;
}
.service-description ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}
.service-description ul li::before {
    content: '✔';
    color: var(--gold-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}
.service-content-section{
    background-color: var(--dark-bg);
}
.service-side-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.gallery-grid img {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
.service-cta {
    background-color: var(--dark-bg);
}
.service-cta h2 {
    color: var(--white-color);
    font-size: 2.5rem;
}
.service-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}
/* --- Video Gallery Styles --- */
.video-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 column on mobile */
    gap: 20px;
}

.video-item video {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    background-color: #000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* 2 columns on tablets and larger screens */
@media (min-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .service-layout {
        grid-template-columns: 1.5fr 1fr;
        gap: 60px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    .service-hero-title {
        font-size: 4rem;
    }
}

/* --- REVISED Submenu Styles (Desktop) --- */
/* Parent container for positioning the dropdown */
.main-nav .menu .menu-item-has-children {
    position: relative;
}

/* The dropdown menu itself */
.main-nav .menu .sub-menu {
    display: block; /* Use opacity for smooth transitions */
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--dark-bg);
    list-style: none;
    padding: 10px 0;
    margin-top: 10px; /* Add a little space from the parent */
    min-width: 240px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-radius: 0 0 5px 5px;
    z-index: 1001;
    border-top: 3px solid var(--gold-color);
    transition: opacity 0.3s ease, visibility 0.3s ease, margin-top 0.3s ease;
}

/* Show the dropdown on hover */
.main-nav .menu .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

/* Sub-menu list items */
.main-nav .menu .sub-menu li {
    margin-left: 0;
    width: 100%;
}

/* Sub-menu links - CORRECTED ALIGNMENT */
.main-nav .menu .sub-menu li a {
    padding: 12px 20px;
    display: block;
    font-size: 0.8rem;
    color: var(--light-text);
    text-transform: uppercase; /* Match the user's screenshot */
    white-space: nowrap;
    font-weight: normal;
    text-align: left; /* <<<< FIX: Explicitly set left alignment */
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Remove the underline from all sub-menu links */
.main-nav .menu .sub-menu li a::after {
    content: none !important;
}

/* Hover effect for sub-menu links */
.main-nav .menu .sub-menu li a:hover {
    background-color: var(--gold-color);
    color: var(--dark-bg) !important;
}


/* --- Parent Item Specific Styles (No Underline & Arrow on Hover) --- */

/* Remove the original underline effect for parent items that have sub-menus */
.main-nav.desktop .menu-item-has-children > a::after {
    content: none; /* <<<< FIX: Removes the underline */
}

/* Create a new pseudo-element for the arrow using ::before */
.main-nav.desktop .menu-item-has-children > a {
    position: relative;
    padding-right: 15px; /* Make space for the arrow */
}

.main-nav.desktop .menu-item-has-children > a::before {
    content: '▾'; /* The triangle/arrow */
    font-size: 16px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-text);
    /* <<<< FIX: Make it hidden by default and show on hover */
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* <<<< FIX: Show the arrow on hover */
.main-nav.desktop .menu-item-has-children:hover > a::before {
    opacity: 1;
}

/* --- Media Queries for Responsiveness --- */
@media (min-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }
    .section-padding-grey {
        padding: 80px 0;
    }
    .section-title h2 {
        font-size: 2.8rem;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .footer-about, .footer-form {
        grid-column: 1 / -1;
    }
}
@media (min-width: 1024px) {
    body {
        font-size: 17px;
    }
    .section-padding {
        padding: 100px 0;
    }
    .section-padding-grey {
        padding: 100px 0;
    }
    .menu-toggle {
        display: none;
    }
    .main-nav.desktop {
        display: flex;
        align-items: center;
    }
    .call-btn.desktop {
        display: flex;
        align-items: center;
        margin-left: 2rem;
    }
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: 30px 50px;
    }
    .footer-about, .footer-form {
        grid-column: auto;
    }
}
@media (min-width: 1200px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

/* --- Final Mobile Responsiveness Fixes --- */

@media (max-width: 767px) {

    /* 1. Fix Top Bar Social Icon Size */
    .top-bar .social-icons svg {
        height: 22px; 
        width: 22px;
    }
    
    .top-bar .social-icons a {
        margin-right: 12px; 
    }

    /* 2. Fix Mobile Menu Toggle Position */
    .logo-container {
        margin-right: auto; 
    }

    /* 3. Style Mobile Sub-Menus */
    .mobile-nav .sub-menu {
        list-style: none;
        padding-left: 30px;
        margin-top: 20px;
        margin-bottom: 20px;
        border-left: 2px solid var(--gold-color);
        margin-left: 25%; 
        margin-right: 25%;
        text-align: left;
    }

    .mobile-nav .sub-menu li {
        margin-bottom: 18px;
    }

    .mobile-nav .sub-menu li a {
        font-size: 1rem; 
        font-weight: normal;
        color: #5f5c51; 
    }
    
    .mobile-nav .menu > .menu-item-has-children > a {
        font-style: italic;
        color: var(--dark-bg);
        pointer-events: none;
    }
}
