/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
   :root {
    /* LIGHT MODE DEFAULTS */
    --primary-dark: #f8fafc;
    --secondary-dark: #ffffff;
    --gold: #ba9553;            
    --gold-light: #d6b880;
    --white: #ffffff;
    --text-main: #16324b;
    --text-muted: #64748b;
    --bg-light: #ffffff;        
    --font-text: 'Tajawal', sans-serif;
    --font-heading: 'Tajawal', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(186, 149, 83, 0.3);
}

[data-theme="dark"] {
    /* DARK MODE OVERRIDES */
    --primary-dark: #0B1320;
    --secondary-dark: #112240;
    --gold: #C5A059;
    --gold-light: #E3C382;
    --text-main: #f0f4f8;
    --text-muted: #a8b2d1;
    --bg-light: #0B1320;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(197, 160, 89, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-text);
    color: var(--text-main);
    background-color: var(--primary-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.bg-dark {
    background-color: var(--primary-dark);
    color: var(--text-main);
}

/* ==========================================================================
   Typography & UI Elements
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
}

/* Glassmorphism Classes */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    color: var(--text-main);
    transition: var(--transition);
}

.glass-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    backdrop-filter: blur(5px);
}
.glass-input::placeholder {
    color: var(--text-muted);
}

.glass-btn {
    background: rgba(197, 160, 89, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold);
    color: var(--gold);
}
.glass-btn:hover {
    background: var(--gold);
    color: var(--primary-dark);
}

.gold-glow {
    position: relative;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
}
.gold-glow:hover {
    box-shadow: 0 0 25px rgba(197, 160, 89, 0.7);
}

.section-title {
    font-size: 3.2rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.bg-dark .section-title {
    color: var(--text-main);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background-color: var(--gold);
}

.center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-badge {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    font-weight: bold;
    border-radius: 30px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.primary-btn {
    background-color: var(--gold);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.primary-btn:hover {
    background-color: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.secondary-btn {
    background-color: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.secondary-btn:hover {
    background-color: var(--gold);
    color: var(--primary-dark);
}

.whatsapp-btn {
    background-color: #25d366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    color: var(--white);
    transform: translateY(-3px);
}

.w-100 {
    width: 100%;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    background-color: var(--secondary-dark);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

.header.scrolled {
    padding: 10px 0;
    background-color: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo a {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--primary-dark);
}

.logo-slogan {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.nav-menu ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.close-sidebar, .mobile-icon {
    display: none !important;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-main);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
}

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

/* Theme Toggle Button */
.animated-theme-switch {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--gold);
    transition: opacity 0.3s;
}

.animated-theme-switch:hover {
    opacity: 0.8;
}

.animated-theme-switch i {
    position: absolute;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Light mode defaults (when data-theme is empty/light) */
.animated-theme-switch .sun-icon {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.animated-theme-switch .moon-icon {
    transform: scale(0.5) translateY(20px);
    opacity: 0;
}

/* Dark mode overrides */
[data-theme="dark"] .animated-theme-switch .sun-icon {
    transform: scale(0.5) translateY(20px);
    opacity: 0;
}

[data-theme="dark"] .animated-theme-switch .moon-icon {
    transform: scale(1) translateY(0);
    opacity: 1;
}

[data-theme="dark"] .logo img {
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}
.theme-toggle:hover {
    transform: scale(1.1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--primary-dark);
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--primary-dark);
    color: var(--white);
    padding-top: 150px;
    padding-bottom: 50px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Separating the background from the overlay for blurring */
    background: url('../assets/images/hero-bg.jpg') no-repeat center center/cover;
    filter: blur(5px);
    transform: scale(1.05); /* Prevents white edges from blur */
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 35, 55, 0.9) 0%, rgba(22, 50, 75, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content h2 {
    font-size: 3.8rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.license-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 10px 20px;
    border-radius: 5px;
    border-right: 3px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    text-align: center;
}

.stat-card {
    background-color: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 20px 10px;
    border-radius: 10px;
    border-bottom: 3px solid var(--gold);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stat-card h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.stat-card span {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--text-main);
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(45deg, var(--primary-dark), var(--secondary-dark));
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: 20px;
    z-index: -1;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section .section-title::after {
    background-color: var(--gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    background-color: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    color: var(--primary-dark);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-list {
    margin-top: 30px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-list i {
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-list div {
    display: flex;
    flex-direction: column;
}

.contact-list strong {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
    resize: vertical;
}

/* ==========================================================================
   Partners Section
   ========================================================================== */
.partners-section {
    padding: 80px 0;
    overflow: hidden;
}

.partners-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    direction: ltr; /* Force LTR on the wrapper to fix anchor calculation */
}

.partners-slider-wrapper::before,
.partners-slider-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.partners-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--primary-dark), transparent);
}

.partners-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--primary-dark), transparent);
}

[data-theme="light"] .partners-slider-wrapper::before {
    background: linear-gradient(to right, var(--bg-light), transparent);
}
[data-theme="light"] .partners-slider-wrapper::after {
    background: linear-gradient(to left, var(--bg-light), transparent);
}

.partners-track {
    display: flex;
    width: calc(200px * 18); /* 9 original + 9 duplicate */
    animation: scroll-partners 25s linear infinite;
}

.partner-logo {
    min-width: 200px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.partner-logo img {
    height: 100px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

[data-theme="dark"] .partner-logo img {
    /* Make logos visible/monochromatic white on dark background by inverting */
    filter: grayscale(1) brightness(0) invert(1);
    opacity: 0.8;
}

[data-theme="dark"] .partner-logo:hover img {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll-partners {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--black); /* Almost black */
    background: #0a1118;
    color: #e0e0e0;
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.social-links a:hover {
    background-color: var(--gold);
    color: var(--primary-dark);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background-color: var(--gold);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a:hover {
    color: var(--gold);
    padding-right: 5px;
}

.footer-license {
    background-color: rgba(212, 175, 55, 0.1);
    padding: 15px;
    border-radius: 5px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-bottom {
    background-color: #05090d;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   Animations & Keyframes
   ========================================================================== */
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.right {
    transform: translateX(-40px);
}

.scroll-reveal.left {
    transform: translateX(40px);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ==========================================================================
   Responsive Design (Mobile & Tablet)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-content h2 { font-size: 3.2rem; }
    .about-container { grid-template-columns: 1fr; }
    .about-image { grid-row: 1; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .header-container {
        position: relative;
        justify-content: center;
        min-height: 90px; /* Prevent header collapse when items are absolute */
    }
    
    .nav-actions {
        position: absolute;
        width: 100%;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        justify-content: space-between;
        flex-direction: row-reverse; /* Puts first element (Sun) on Left in RTL */
        padding: 0 15px;
        pointer-events: none; /* Let clicks pass through empty space */
    }

    .nav-actions > * {
        pointer-events: auto; /* Re-enable clicks on buttons */
        margin: 0 !important;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 250px;
        height: 100vh;
        background: var(--secondary-dark); /* Solid background to prevent text blur rendering bug */
        border-left: 1px solid var(--glass-border);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 50px 30px;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1001;
    }

    .close-sidebar {
        display: block !important;
        position: absolute;
        top: 20px;
        left: 20px;
        background: transparent;
        border: none;
        color: var(--text-muted);
        font-size: 1.5rem;
        cursor: pointer;
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .close-sidebar:hover {
        color: var(--gold);
        transform: scale(1.1) rotate(90deg);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        display: flex;
        flex-direction: column;
        gap: 30px;
        list-style: none; 
        padding: 0;
        margin: 0; 
    }

    .nav-menu ul li {
        text-align: right;
        transform: translateX(30px);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }

    /* Staggered link reveal when active */
    .nav-menu.active ul li:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateX(0); }
    .nav-menu.active ul li:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateX(0); }
    .nav-menu.active ul li:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateX(0); }

    .nav-menu ul a {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        font-size: 1.5rem;
        font-family: var(--font-heading);
        font-weight: 700;
        color: var(--text-main);
        padding: 10px 0;
        position: relative;
    }

    .nav-menu ul a:hover, .nav-menu ul a.active {
        color: var(--gold);
        transform: translateX(-10px); /* Arabic RTL translates left on hover */
    }

    .nav-menu ul a .mobile-icon {
        display: inline-block !important;
        font-size: 1.4rem;
        color: var(--gold);
        opacity: 0.8;
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.65); /* Darker solid color instead of blur */
        z-index: 990; /* Must sit below header (1000) and nav-menu */
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

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

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: transparent;
        color: var(--text-main);
        border: none;
        font-size: 1.6rem;
        cursor: pointer;
        z-index: 1002; /* Must sit above overlay */
        transition: transform 0.3s ease;
    }
}

@media (max-width: 768px) {
    
    .nav-actions .primary-btn {
        display: none; 
    }

    .hero-content h2 { font-size: 2.1rem; }
    .hero { padding-top: 100px; text-align: center; }
    .hero-buttons { justify-content: center; }
    
    .stats-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Comprehensive Mobile Overrides for Phones (< 576px) */
@media (max-width: 576px) {
    html, body {
        overflow-x: hidden !important; /* Prevent horizontal scrolling */
        width: 100%;
    }
    
    .container {
        padding: 0 15px !important;
        width: 100% !important;
        overflow-x: hidden;
    }

    .hero {
        padding-top: 120px !important;
    }

    .hero-content h2 {
        font-size: 1.8rem !important; /* Smaller title */
        line-height: 1.4 !important;
    }

    .hero-content p {
        font-size: 1.1rem !important; /* Proper text balance */
        padding: 0 5px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 20px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2.3rem !important;
    }

    .services-grid, .stats-grid, .about-container, .footer-container {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .service-card {
        padding: 30px 20px;
    }

    .nav-actions .primary-btn {
        display: none !important;
    }
    
    .nav-menu {
        width: 85%;
    }
    
    .footer {
        padding-top: 50px;
    }
}
