:root {
    /* Color Palette - Modern Marine (LIGHT MODE) */
    --color-bg-dark: #f0f4f8;
    /* Light Blue/Grey Background */
    --color-white: #ffffff;
    --color-bg-card: #ffffff;
    /* White Cards */
    --color-primary: #0077b6;
    /* Ocean Blue (Darker for contrast on light) */
    --color-secondary: #00bcd4;
    /* Cyan/Teal for accents */
    --color-text-main: #334155;
    /* Slate 700 - Body Text */
    --color-text-muted: #64748b;
    /* Slate 500 - Muted Text */
    --color-heading: #0f172a;
    /* Slate 900 - Headings (Replacing --color-white usage) */
    --color-glass-border: rgba(0, 0, 0, 0.05);
    /* Subtle dark border */

    /* Text Inverse (For Dark Backgrounds like Hero/Footer) */
    --color-text-inverse: #ffffff;
    --color-text-inverse-muted: #cbd5e1;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Effects */
    --transition-fast: 0.3s ease;
    --shadow-card: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --backdrop-blur: 10px;
}

.btn.small-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
    margin-top: 15px;
    background-color: var(--color-heading);
    /* Dark background */
    color: var(--color-text-inverse);
    /* Light text */
    border: 1px solid var(--color-heading);
}

.btn.small-btn:hover {
    background-color: transparent;
    color: var(--color-heading);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-heading);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Utilities */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-heading);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-secondary);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-solid {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-solid:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
}

.btn-white {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-white:hover {
    background-color: #ffffff;
    color: var(--color-heading);
}

/* Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(var(--backdrop-blur));
    -webkit-backdrop-filter: blur(var(--backdrop-blur));
    border-bottom: 1px solid var(--color-glass-border);
    padding: 15px 0;
    transition: var(--transition-fast);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--color-heading);
}

.logo span {
    color: var(--color-secondary);
}

.nav-menu {
    display: flex;
    gap: 30px;

    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-heading);
}

.nav-link:hover {
    color: var(--color-secondary);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background-color: var(--color-white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid var(--color-glass-border);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: var(--color-heading);
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.2s;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #f8fafc;
    color: var(--color-secondary);
    padding-left: 25px;
    /* Subtle slide effect */
}

/* Mobile Dropdown adjustment */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: transparent;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        border: none;
        text-align: center;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-item {
        padding: 10px;
        color: var(--color-text-main);
    }
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-heading);
}

/* Footer */
.main-footer {
    background-color: #0f172a;
    /* Keep dark footer for contrast */
    color: var(--color-text-inverse-muted);
    border-top: none;
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--color-text-inverse);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p,
.footer-col a {
    color: var(--color-text-inverse-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.footer-col a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    color: var(--color-text-inverse-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        /* Add JS toggle later */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px;
        text-align: center;
        border-bottom: 1px solid var(--color-glass-border);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        z-index: 9999;
        /* Ensure high z-index */
    }

    .nav-menu.active {
        display: flex;
    }

    /* Dropdown arrow rotation */
    .dropdown>.nav-link::after {
        content: ' ▾';
        display: inline-block;
        transition: transform 0.3s;
    }

    .dropdown.active>.nav-link::after {
        transform: rotate(180deg);
    }

    .menu-toggle {
        display: block;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem !important;
    }
}

/* --- HERO SECTION --- */
/* Hero maintains dark aesthetic for image impact, but text explicitly set to white */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://img.freepik.com/free-photo/top-view-old-tanker-that-ran-aground-overturned-shore-near-coast_1153-7297.jpg') no-repeat center center/cover;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Lighter gradient for light mode feel or keep dark? Darker is better for text readability on bg */
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-subtitle {
    color: var(--color-secondary);
    /* Cyan/Teal pops on dark */
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
    font-weight: 600;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
    /* Explicit white for hero */
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.1rem;
    color: #e2e8f0;
    /* Light grey for hero desc */
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* --- SECTIONS COMMON --- */
section {
    padding: var(--section-padding);
}

.bg-dark {
    background-color: var(--color-bg-dark);
}

.bg-darker {
    background-color: #010812;
    color: var(--color-text-inverse-muted);
}

.bg-darker .section-title,
.bg-darker h1,
.bg-darker h2,
.bg-darker h3,
.bg-darker h4,
.bg-darker h5,
.bg-darker h6 {
    color: var(--color-text-inverse);
}

/* --- SERVICES SECTION --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-glass-border);
    padding: 30px;
    border-radius: 12px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-secondary);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-icon {
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.service-icon img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-heading);
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* --- FEATURES / HIGHLIGHTS --- */
.features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 900px) {
    .features-container {
        grid-template-columns: 1fr;
    }
}

.feature-text {
    flex: 1;
    min-width: 300px;
}

.feature-list {
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--color-text-main);
}

.feature-item::before {
    content: '✓';
    color: var(--color-secondary);
    margin-right: 10px;
    font-weight: bold;
}

/* --- CONTACT SECTION --- */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-bg-card);
    padding: 50px;
    border-radius: 16px;
    border: 1px solid var(--color-glass-border);
    box-shadow: var(--shadow-card);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-heading);
    font-weight: 500;
}

.form-row-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .form-row-group {
        grid-template-columns: 1fr;
    }
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    color: var(--color-heading);
    font-family: var(--font-body);
    transition: 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-secondary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Animation Utilities */
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

/* --- FAQ SECTION --- */
.faq-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-glass-border);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
    color: var(--color-heading);
}

.toggle-icon {
    font-size: 1.5rem;
    color: var(--color-secondary);
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #f8fafc;
}

.faq-answer p {
    padding: 20px;
    color: var(--color-text-muted);
    margin: 0;
    border-top: 1px solid var(--color-glass-border);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- HEADER & NAVIGATION --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: var(--color-text-main);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-primary);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: ' ▼';
    font-size: 0.7em;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--color-text-main);
    transition: background 0.3s ease;
}

.dropdown-item:hover {
    background: var(--color-bg-dark);
    color: var(--color-primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--color-text-main);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 110px;
        right: 0;
        width: 280px;
        height: calc(100vh - 110px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 20px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        gap: 0;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--color-bg-dark);
        padding: 15px 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        box-shadow: none;
        padding: 0;
        margin-top: 10px;
        transform: none;
        transition: all 0.3s ease;
        background: var(--color-bg-dark);
        border-radius: 4px;
    }

    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 10px 0;
    }

    /* Disable hover on mobile */
    .dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        max-height: 0;
    }

    .dropdown.active:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
    }

    .dropdown-item {
        padding: 10px 15px;
        font-size: 0.95rem;
    }
}

/* Ensure desktop menu is always visible and horizontal */
@media (min-width: 769px) {
    .menu-toggle {
        display: none !important;
    }

    .nav-menu {
        position: static !important;
        display: flex !important;
        flex-direction: row !important;
        right: auto !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        align-items: center !important;
        padding: 0 !important;
        box-shadow: none !important;
        overflow-y: visible !important;
        gap: 30px !important;
    }

    .nav-menu li {
        width: auto !important;
        border-bottom: none !important;
        padding: 0 !important;
    }

    .dropdown-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-10px) !important;
        background: white !important;
        min-width: 250px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
        border-radius: 8px !important;
        padding: 10px 0 !important;
        margin-top: 0 !important;
        max-height: none !important;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        max-height: none !important;
    }
}

/* --- WHATSAPP FLOATING BUTTON --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    /* WhatsApp Green */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    /* Darker WhatsApp Green on hover */
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    /* Hero section mobile padding to prevent text being hidden under header */
    .hero-content {
        padding-top: 100px !important;
    }
}

/* --- NEW SEPARATE MOBILE MENU STYLES --- */

/* Hide Default Desktop Nav on Mobile */
@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }
}

/* Hide Mobile Menu on Desktop */
@media (min-width: 769px) {
    .mobile-menu-wrapper {
        display: none !important;
    }
}

/* Mobile Menu Wrapper */
.mobile-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    visibility: hidden;
    pointer-events: none;
    /* Let clicks pass through when hidden */
}

.mobile-menu-wrapper.active {
    visibility: visible;
    pointer-events: auto;
}

/* Overlay */
.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-wrapper.active .mobile-menu-overlay {
    opacity: 1;
}

/* Sidebar */
.mobile-menu-sidebar {
    position: absolute;
    top: 0;
    right: -280px;
    /* Hidden off-screen */
    width: 280px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
}

.mobile-menu-wrapper.active .mobile-menu-sidebar {
    right: 0;
}

/* Header inside Mobile Menu */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.mobile-menu-header .logo-text {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--color-heading);
}

.close-mobile-nav {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-heading);
}

/* Mobile List */
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list>li {
    border-bottom: 1px solid #f0f4f8;
}

.mobile-nav-link {
    display: block;
    padding: 15px 0;
    font-size: 1rem;
    color: var(--color-heading);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-link:hover {
    color: var(--color-primary);
}

.mobile-nav-link .arrow {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

/* Mobile Submenu */
.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #f8fafc;
    border-radius: 4px;
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 500px;
    /* Arbitrary large height */
    margin-bottom: 15px;
}

.mobile-dropdown.active .arrow {
    transform: rotate(180deg);
}

.mobile-submenu li {
    padding: 0;
}

.mobile-submenu a {
    display: block;
    padding: 12px 15px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.mobile-submenu a:last-child {
    border-bottom: none;
}

.mobile-submenu a:hover {
    color: var(--color-primary);
    padding-left: 20px;
    /* Slight indent on hover */
    background: #fff;
    transition: all 0.2s;
}

.btn-block {
    display: block;
    width: 100%;
}