/* Rint Go - Premium Landing Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;700;800&display=swap');

:root {
    --primary: #F97316;
    /* Orange */
    --primary-hover: #EA580C;
    /* Orange Dark */
    --secondary: #FB923C;
    /* Orange Light */
    --accent: #FDBA74;
    /* Orange Soft */

    /* Dark Theme Default */
    --bg-body: #0A0A0A;
    /* Near Black */
    --bg-surface: #111111;
    /* Dark surface */
    --text-main: #FFFFFF;
    /* White */
    --text-muted: #A0A0A0;
    /* Gray */
    --border-color: rgba(249, 115, 22, 0.2);
    --glass: rgba(249, 115, 22, 0.06);

    --gradient-main: linear-gradient(135deg, #F97316 0%, #DC6B14 100%);
    --shadow-glow: 0 0 25px rgba(249, 115, 22, 0.4);
}

[data-theme="light"] {
    --bg-body: #FFFFFF;
    /* White */
    --bg-surface: #F5F5F5;
    /* Light Gray */
    --text-main: #0A0A0A;
    /* Near Black */
    --text-muted: #555555;
    /* Medium Gray */
    --border-color: rgba(249, 115, 22, 0.25);
    --glass: rgba(249, 115, 22, 0.06);
    --shadow-glow: 0 5px 20px rgba(249, 115, 22, 0.3);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

input,
textarea,
button,
select {
    font-family: 'Cairo', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    background: var(--gradient-main);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--text-main);
    position: relative;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.btn-secondary:hover::after {
    opacity: 1;
}

.btn-secondary.white-border {
    border-color: white;
    color: white;
}

[data-theme="light"] .btn-secondary.white-border {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    color: white;
}

.btn-accent {
    background: var(--accent);
    color: #000;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.6);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Header */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s;
}

[data-theme="light"] header {
    background: rgba(255, 255, 255, 0.8);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-auth {
    display: flex;
    gap: 15px;
    align-items: center;
}

.theme-toggle,
.lang-toggle {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.theme-toggle:hover,
.lang-toggle:hover {
    color: var(--primary);
}


/* Hero Section - Premium Design */
.hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Animated gradient background blobs */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.4) 0%, rgba(234, 88, 12, 0.2) 40%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(100px);
    animation: blob1 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.3) 0%, rgba(249, 115, 22, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(100px);
    animation: blob2 25s ease-in-out infinite;
}

[data-theme="light"] .hero::before {
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, rgba(234, 88, 12, 0.1) 40%, transparent 70%);
}

[data-theme="light"] .hero::after {
    background: radial-gradient(circle, rgba(251, 146, 60, 0.15) 0%, rgba(249, 115, 22, 0.05) 40%, transparent 70%);
}

@keyframes blob1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes blob2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-30px, 30px) scale(1.1);
    }

    66% {
        transform: translate(20px, -20px) scale(0.9);
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    text-align: right;
    max-width: 100%;
}

[dir="ltr"] .hero-content {
    text-align: left;
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 45px;
    line-height: 1.8;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 0;
}

/* Hero Visual Container */
.hero-visual {
    position: relative;
    z-index: 1;
}

/* Glassmorphism Card with 3D effect */
.hero-card-glass {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(30px);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 35px;
    box-shadow:
        0 30px 60px -12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

[data-theme="light"] .hero-card-glass {
    background: rgba(255, 255, 255, 0.7);
    box-shadow:
        0 30px 60px -12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-card-glass:hover {
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-5px);
    box-shadow:
        0 40px 80px -12px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Floating animated badges */
.floating-badge {
    position: absolute;
    background: var(--bg-surface);
    padding: 18px 24px;
    border-radius: 18px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 6s ease-in-out infinite;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    z-index: 10;
}

[data-theme="light"] .floating-badge {
    background: rgba(255, 255, 255, 0.95);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px var(--border-color);
}

.badge-top-right {
    top: -40px;
    right: -40px;
    animation-delay: 0s;
}

.badge-bottom-left {
    bottom: -40px;
    left: -40px;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(2deg);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-card-glass {
        transform: none;
    }

    .hero-card-glass:hover {
        transform: translateY(-5px);
    }

    .floating-badge {
        display: none;
    }
}

/* Metrics/Trusted By */
.trusted-by {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    opacity: 0.5;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Features Split */
.split-features {
    padding: 100px 0;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 150px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-visual {
    flex: 1;
    height: 400px;
    background: var(--bg-surface);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    /* Placeholder gradient */
    background: linear-gradient(45deg, var(--bg-surface), var(--bg-body));
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(249, 115, 22, 0.15);
    color: var(--primary);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(249, 115, 22, 0.3);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.2);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(249, 115, 22, 0.2);
    }

    50% {
        box-shadow: 0 0 30px rgba(249, 115, 22, 0.4);
    }
}

.feature-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.feature-list i {
    color: var(--secondary);
}

/* Cards Grid */
.cards-section {
    padding: 100px 0;
    background: var(--bg-surface);
    transition: background-color 0.3s;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--bg-body);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(249, 115, 22, 0.12);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
}

/* Pricing */
.pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 50px auto 0;
}

.plan-card {
    background: var(--bg-surface);
    padding: 50px 30px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    transition: background-color 0.3s;
}

.plan-card.popular {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
    z-index: 10;
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 20px 0;
    color: var(--text-main);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.plan-features li {
    margin-bottom: 15px;
    color: var(--text-muted);
}

/* CTA */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background: var(--gradient-main);
    border-radius: 30px;
    margin: 50px 20px;
    color: white;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

/* Footer */
footer {
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    color: var(--text-main);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-links h4 {
    color: var(--text-main);
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* Details/Summary */
details {
    background: var(--bg-surface) !important;
}

/* Dashboard Mockup Styles */
.dashboard-mockup {
    background: linear-gradient(135deg, #1a1008 0%, #0a0a0a 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(249, 115, 22, 0.08);
    transition: background 0.3s ease;
}

[data-theme="light"] .dashboard-mockup {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    box-shadow: inset 0 0 40px rgba(249, 115, 22, 0.05);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .dashboard-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.dashboard-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 8px 16px rgba(249, 115, 22, 0.4);
}

.dashboard-welcome {
    font-size: 0.75rem;
    color: #94a3b8;
}

[data-theme="light"] .dashboard-welcome {
    color: #64748b;
}

.dashboard-username {
    font-weight: 700;
    color: #f1f5f9;
    font-size: 0.95rem;
}

[data-theme="light"] .dashboard-username {
    color: #0f172a;
}

.dashboard-icon-btn {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    color: #cbd5e1;
}

[data-theme="light"] .dashboard-icon-btn {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #64748b;
}

.dashboard-stat-card {
    padding: 15px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.stat-purple {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
}

[data-theme="light"] .stat-purple {
    background: linear-gradient(135deg, #FB923C 0%, #F97316 100%);
}

.stat-pink {
    background: linear-gradient(135deg, #FDBA74 0%, #F97316 100%);
}

[data-theme="light"] .stat-pink {
    background: linear-gradient(135deg, #FED7AA 0%, #FB923C 100%);
}

.stat-blue {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid rgba(249, 115, 22, 0.3);
}

[data-theme="light"] .stat-blue {
    background: linear-gradient(135deg, #1C1917 0%, #292524 100%);
}

.stat-glow {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(25px);
}

.stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 6px;
    position: relative;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    position: relative;
}

.stat-change {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 4px;
    position: relative;
    font-weight: 600;
}

.dashboard-section-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

[data-theme="light"] .dashboard-section-title {
    color: #0f172a;
}

.dashboard-section-title i {
    color: #F97316;
}

.dashboard-car-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 12px;
    align-items: center;
    backdrop-filter: blur(10px);
}

[data-theme="light"] .dashboard-car-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.car-icon {
    width: 55px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.car-icon-purple {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
}

.car-icon-pink {
    background: linear-gradient(135deg, #FDBA74 0%, #F97316 100%);
}

.car-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 2px;
}

[data-theme="light"] .car-name {
    color: #0f172a;
}

.car-status {
    font-size: 0.65rem;
    color: #94a3b8;
}

[data-theme="light"] .car-status {
    color: #64748b;
}

.car-badge {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(67, 233, 123, 0.3);
}

.car-badge-green {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.car-badge-orange {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.activity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.activity-dot-purple {
    background: #F97316;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.8);
}

.activity-dot-green {
    background: #FB923C;
    box-shadow: 0 0 10px rgba(251, 146, 60, 0.8);
}

.activity-dot-blue {
    background: #EA580C;
    box-shadow: 0 0 10px rgba(234, 88, 12, 0.8);
}

.activity-title {
    font-size: 0.7rem;
    color: #f1f5f9;
    font-weight: 600;
    margin-bottom: 2px;
}

[data-theme="light"] .activity-title {
    color: #0f172a;
}

.activity-time {
    font-size: 0.65rem;
    color: #94a3b8;
}

[data-theme="light"] .activity-time {
    color: #64748b;
}

/* Responsive */
@media (max-width: 768px) {

    nav {
        flex-wrap: wrap;
    }

    .nav-links,
    .nav-auth {
        display: none;
        flex-direction: column;
        flex-basis: 100%;
        width: 100%;
        text-align: center;
        padding: 15px 0;
        gap: 15px;
    }
    
    .nav-auth {
        padding-top: 0;
        border-top: 1px solid var(--border-color);
        margin-top: 10px;
        padding-top: 20px;
    }

    /* .mobile-menu-active classes will be added via JS */
    nav.menu-open .nav-links,
    nav.menu-open .nav-auth {
        display: flex;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .feature-row {
        flex-direction: column !important;
        text-align: center;
    }

    .feature-list li {
        justify-content: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 50px 20px;
        margin: 30px 0;
        border-radius: 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem !important;
        margin-bottom: 25px !important;
    }

    .cta-content div {
        flex-direction: column;
        gap: 15px !important;
    }

    .cta-content .btn {
        width: 100%;
        text-align: center;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand div {
        justify-content: center;
    }

    /* Mobile Menu Button Display */
    .mobile-menu-btn {
        display: block;
    }
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}