/* Ultra Modern style.css */
:root {
    /* Color Palette - Deep Dark Mode with vibrant Gold/Orange accents */
    --surface-900: #050505;
    --surface-800: #0a0a0a;
    --surface-700: #141414;
    --surface-600: #1f1f1f;
    
    --accent-primary: #eab308; /* Vibrant Yellow/Gold */
    --accent-secondary: #f59e0b; /* Orange hue */
    --accent-glow: rgba(234, 179, 8, 0.15);
    
    --text-100: #ffffff;
    --text-200: #f1f5f9;
    --text-300: #cbd5e1;
    --text-400: #94a3b8;
    
    --border-color: rgba(255, 255, 255, 0.08);
    
    /* Typography */
    --font-heading: 'Clash Display', sans-serif;
    --font-body: 'Satoshi', sans-serif;
    
    /* Spacing & Utilities */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--surface-900);
    color: var(--text-200);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--text-100);
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.container-large {
    max-width: 1400px;
}

/* Ambient Background Orbs */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

.orb-1 {
    top: -10%;
    right: -5%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
}

.orb-2 {
    bottom: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
}

/* -------------------------------------
   Modern Navbar
-------------------------------------- */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.85);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    padding: 15px 30px;
    top: 15px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 45px;
    width: 45px;
    border-radius: 50%; /* Circle shape */
    object-fit: cover;
    transition: var(--transition-smooth);
}

.logo-img:hover {
    transform: rotate(5deg) scale(1.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-100);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--accent-primary);
    font-weight: 500;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links li a {
    color: var(--text-300);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.nav-links li a:hover {
    color: var(--text-100);
    background: rgba(255, 255, 255, 0.05);
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.burger-line {
    width: 24px;
    height: 2px;
    background: var(--text-100);
    transition: var(--transition-smooth);
}

/* -------------------------------------
   Hero Section
-------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 100px;
    z-index: 1;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1548625361-ec853112bd24?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.7) 100%);
    backdrop-filter: blur(2px);
}

.hero-content {
    max-width: 900px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.2);
    color: var(--accent-primary);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 30px;
}

.gradient-text {
    background: linear-gradient(to right, #fff, var(--text-400));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

/* The glowing verse box */
.hero-verse-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 40px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    max-width: 700px;
    margin-bottom: 40px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 40px;
    font-size: 2rem;
    color: var(--accent-primary);
    background: var(--surface-800);
    padding: 0 10px;
}

.hero-verse-box p {
    font-size: 1.15rem;
    color: var(--text-200);
    font-style: italic;
    line-height: 1.8;
}

.verse-ref {
    margin-top: 15px;
    font-weight: 600;
    color: var(--accent-primary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background: var(--text-100);
    color: var(--surface-900);
    border: 1px solid var(--text-100);
}

.btn-primary:hover {
    background: transparent;
    color: var(--text-100);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-200);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-300);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-300);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

.scroll-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* -------------------------------------
   Sections Global
-------------------------------------- */
section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 16px;
}

.section-title span {
    color: var(--accent-primary);
}

.section-subtitle {
    color: var(--text-400);
    font-size: 1.1rem;
}

/* -------------------------------------
   Schedule (Bento Grid)
-------------------------------------- */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr; /* Stack vertically on mobile */
    grid-gap: 20px;
    grid-auto-rows: minmax(200px, auto);
}

.featured {
    grid-column: 1;
}

/* Make card content padding slightly tighter so it doesn't force a huge height */
.bento-card {
    background: var(--surface-800);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.bento-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.card-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(234,179,8,0.05), transparent 60%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.bento-card:hover .card-bg-gradient {
    opacity: 1;
}

.card-content {
    padding: 25px; /* Reduzido de 30px */
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.secondary {
    grid-column: 1;
}

.info {
    grid-column: 1;
    background: linear-gradient(135deg, var(--surface-700), var(--surface-800));
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
/* Pastor Section */
.pastor {
    background: var(--surface-800);
}

.pastor-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.pastor-img-container {
    flex: 0.8; /* Diminuído para reduzir a foto */
    position: relative;
    max-width: 450px;
}

.pastor-img-container::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--accent-primary);
    border-radius: var(--radius-lg);
    z-index: 0;
}

.pastor-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.pastor-info {
    flex: 1.4; /* Aumentado para dar mais destaque ao texto */
}

.pastor-tag {
    color: var(--accent-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1.4rem; /* Aumentado conforme solicitado */
    margin-bottom: 15px;
    display: block;
}

.pastor-name {
    font-size: 3rem;
    margin-bottom: 20px;
}

.pastor-description {
    color: var(--text-400);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Banking / Itaú Badge */
.bank-info {
    margin-top: 25px;
    background: #003399; /* Itaú Blue */
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.itau-icon {
    background: #FF7800; /* Itaú Orange */
    color: #fff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-family: sans-serif;
    border-radius: 6px;
    font-size: 10px;
    line-height: 1;
    flex-shrink: 0;
}

.bank-details {
    display: flex;
    flex-direction: column;
}

.bank-name {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}

.bank-cnpj {
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .pastor-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .pastor-img-container {
        max-width: 300px;
    }
    .pastor-name {
        font-size: 2.2rem;
    }
}

.day-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.highlight-icon {
    font-size: 1.5rem;
    color: var(--accent-primary);
}

.bento-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.card-desc {
    color: var(--text-400);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

/* Timeline Layout inside Card */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Reduzido de 30px */
    margin-top: auto;
}

.time-slot {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    align-items: center;
    padding: 15px;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.02);
}

.time-slot:hover {
    background: rgba(255, 255, 255, 0.05);
}

.time-slot.highlight {
    background: rgba(234, 179, 8, 0.08); border: 1px solid rgba(234, 179, 8, 0.15);
}

.time-slot .time {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-primary);
}

.time-slot .event h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.time-slot .event span {
    color: var(--text-400);
    font-size: 0.9rem;
}

/* Single Event Card */
.single-event {
    margin-top: auto;
}

.huge-time {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-100);
    line-height: 1;
    margin-bottom: 10px;
}

.event-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    font-weight: 500;
}

/* Info Card Centered */
.centered {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.icon-ring {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(234, 179, 8, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
    color: var(--accent-primary);
}

.info h3 {
    font-size: 1.8rem;
}

.info p {
    color: var(--text-400);
    margin-bottom: 24px;
}

.text-link {
    color: var(--text-100);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.text-link i {
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.text-link:hover {
    color: var(--accent-primary);
}
.text-link:hover i {
    transform: translateX(4px);
}

/* -------------------------------------
   Location Section
-------------------------------------- */
.location {
    background: var(--surface-800);
    border-top: 1px solid var(--border-color);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr; /* Stack vertically */
    gap: 40px;
    align-items: center;
}

.location-details {
    padding-right: 0;
}

.location-details .section-title {
    margin-bottom: 20px;
    text-align: left;
}

.location-desc {
    color: var(--text-400);
    font-size: 1.15rem;
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--surface-700);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(234, 179, 8, 0.1);
    color: var(--accent-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.contact-card h5 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-card p {
    color: var(--text-400);
    font-size: 0.95rem;
}

.map-frame {
    height: 600px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
}

/* Visual trick to make map distinct */
.map-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 10px solid var(--surface-800);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(100%) hue-rotate(180deg) brightness(80%) contrast(120%);
}

/* -------------------------------------
   Modern Footer
-------------------------------------- */
.modern-footer {
    background: var(--surface-900);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr; /* Stack vertically by default */
    gap: 30px; /* Reduced gap */
    margin-bottom: 60px;
    text-align: center; /* Centered for mobile */
}

.brand-desc {
    color: var(--text-400);
    margin: 20px auto 0; /* Centered with margin-top */
    max-width: 400px;
}

.modern-footer h4 {
    font-size: 1.2rem;
    margin-bottom: 16px; /* Reduced from 24px */
}

.footer-social {
    order: 1; /* First */
}

.footer-brand {
    order: 2; /* Second */
}

.footer-links {
    order: 3; /* Third */
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-400);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--text-100);
    padding-left: 5px;
}

.social-pills {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface-800);
    padding: 12px 20px;
    border-radius: 100px;
    color: var(--text-200);
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.social-pill:hover {
    background: var(--text-100);
    color: var(--surface-900);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-400);
    font-size: 0.9rem;
}

/* -------------------------------------
   Animations & Reveals
-------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(var(--delay) * 100ms);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-15px);}
    60% {transform: translateY(-7px);}
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1;}
    100% { transform: translateY(15px); opacity: 0;}
}

/* -------------------------------------
   Dízimos e Ofertas Section
-------------------------------------- */
.offerings {
    background: var(--surface-800);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Pix Card Styling */
.pix-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.pix-card:hover {
    transform: translateY(-5px);
    border-color: rgba(234, 179, 8, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pix-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    z-index: 1;
}

.pix-badge {
    background: var(--accent-primary);
    color: var(--surface-900);
    padding: 6px 16px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.pix-card h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    z-index: 1;
}

.pix-card p {
    color: var(--text-400);
    margin-bottom: 30px;
    z-index: 1;
}

.pix-key-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1;
    position: relative;
}

.key-label {
    font-size: 0.8rem;
    color: var(--text-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.key-value {
    font-family: monospace;
    font-size: 1.1rem;
    color: var(--text-100);
    word-break: break-all;
}

.copy-btn {
    background: var(--text-100);
    color: var(--surface-900);
    border: none;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 10px;
}

.copy-btn:hover {
    background: var(--accent-primary);
    transform: scale(1.02);
}

.copy-btn.copied {
    background: #10b981; /* Green */
    color: white;
}

/* Bank Card Styling (Itaú) */
.bank-card {
    background: #003399; /* Itaú Blue */
    border-radius: var(--radius-lg);
    padding: 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bank-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.itau-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 12px;
    flex-shrink: 0;
}

.bank-header h3 {
    margin: 0;
    font-size: 1.8rem;
    color: white;
}

.bank-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-item.full {
    grid-column: span 2;
}

.info-item .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

.info-item .value {
    font-size: 1.2rem;
    font-weight: 600;
}

/* -------------------------------------
   Responsive Design
-------------------------------------- */
@media (max-width: 1024px) {
    .map-frame {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .navbar {
        width: 95%;
        padding: 15px 20px;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background: var(--surface-800);
        flex-direction: column;
        justify-content: center;
        padding: 50px;
        transition: 0.5s ease-in-out;
        z-index: 1000;
        gap: 30px;
        border-left: 1px solid var(--border-color);
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links li a {
        font-size: 1.5rem;
    }
    .menu-btn {
        display: flex;
    }
    .menu-btn.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .menu-btn.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .time-slot {
        grid-template-columns: 1fr;
        gap: 5px;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
