/* ===== SAVANNAH TOURS - Premium Design ===== */

:root {
    --primary: #1a472a;
    --primary-light: #2d5a3a;
    --accent: #c9a227;
    --accent-light: #dbb84d;
    --dark: #0a0f0c;
    --dark-light: #141f17;
    --light: #f8f9fa;
    --light-dark: #e9ecef;
    --text: #e8e8e8;
    --text-muted: #9ca3af;
    --white: #ffffff;
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-sm: 0 10px 25px rgba(0, 0, 0, 0.3);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 15, 12, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 800;
}

.logo-icon {
    color: var(--accent);
    font-size: 1.5rem;
}

.logo-text {
    color: var(--white);
    letter-spacing: 1px;
}

.logo-accent {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: var(--accent);
}

.btn-nav {
    background: var(--accent) !important;
    color: var(--dark) !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600 !important;
}

.btn-nav:hover {
    background: var(--accent-light) !important;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ===== CINEMATIC HERO ===== */
.hero-cinematic {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 15, 12, 0.95) 0%,
        rgba(10, 15, 12, 0.7) 40%,
        rgba(10, 15, 12, 0.4) 100%
    );
}

.hero-content-wrapper {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
}

.tag-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-highlight {
    display: block;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-style: italic;
    color: var(--accent);
    font-size: clamp(3rem, 6vw, 5rem);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent);
    color: var(--dark);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-hero-primary:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.3);
}

.btn-hero-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-hero-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-3px);
}

.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--accent);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 4px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 20px; }
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--primary);
    padding: 40px 0;
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.2);
}

/* ===== SECTIONS ===== */
.section-dark {
    background: var(--dark);
    padding: 100px 0;
}

.section-light {
    background: var(--light);
    padding: 100px 0;
}

.section-label {
    display: inline-block;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-label-light {
    color: var(--accent-light);
}

.section-heading {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.section-heading span {
    color: var(--accent);
}

.section-heading-dark {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-heading-dark span {
    color: var(--primary);
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

/* ===== BENTO ABOUT GRID ===== */
.bento-about {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.bento-text {
    grid-column: 1;
    grid-row: 1 / 3;
    padding-right: 40px;
}

.bento-text p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.bento-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.bento-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.bento-feature i {
    font-size: 1.5rem;
    color: var(--accent);
}

.bento-feature strong {
    display: block;
    color: var(--white);
}

.bento-feature span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
}

.btn-text:hover {
    gap: 16px;
}

.bento-img {
    border-radius: var(--radius);
    overflow: hidden;
}

.bento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.bento-img:hover img {
    transform: scale(1.05);
}

.bento-img-1 {
    grid-column: 2;
    grid-row: 1 / 3;
    min-height: 400px;
}

.bento-img-2 {
    grid-column: 3;
    grid-row: 1;
}

.bento-img-3 {
    grid-column: 3;
    grid-row: 2;
}

/* ===== PARALLAX BREAK ===== */
.parallax-break {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 12, 0.7);
}

.parallax-content {
    position: relative;
    text-align: center;
}

.parallax-tag {
    display: block;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.parallax-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
}

/* ===== EXPERIENCES GRID ===== */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.experience-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

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

.experience-card.featured {
    border: 2px solid var(--accent);
}

.exp-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
}

.exp-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.exp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.experience-card:hover .exp-image img {
    transform: scale(1.1);
}

.exp-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.exp-duration {
    color: var(--white);
    font-size: 0.85rem;
}

.exp-content {
    padding: 24px;
}

.exp-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.exp-content p {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.exp-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--light-dark);
}

.exp-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}

.exp-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.exp-link:hover {
    color: var(--primary);
    gap: 12px;
}

/* ===== MASONRY GALLERY ===== */
.gallery-section {
    background: var(--dark-light);
}

.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
    grid-auto-flow: dense;
}

.masonry-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.masonry-item:hover img {
    transform: scale(1.1);
}

.masonry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(201, 162, 39, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

.masonry-overlay i {
    font-size: 2rem;
    color: var(--dark);
}

.masonry-wide {
    grid-column: span 2;
}

.masonry-tall {
    grid-row: span 2;
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-gallery {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-gallery:hover {
    background: var(--accent);
    color: var(--dark);
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.95) 0%, rgba(10, 15, 12, 0.9) 100%);
}

.cta-inner {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--dark);
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
}

.btn-cta-primary:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-cta-outline:hover {
    background: var(--white);
    color: var(--dark);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.cta-feature i {
    color: var(--accent);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: var(--dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--dark-light);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
}

.testimonial-rating {
    color: var(--accent);
    margin-bottom: 20px;
}

.testimonial-card p {
    color: var(--text);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark);
}

.testimonial-author strong {
    display: block;
    color: var(--white);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-light);
    padding: 80px 0 30px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 20px 0;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 12px;
}

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

.footer-social a:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-nav h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 24px;
}

.footer-nav ul,
.footer-contact ul {
    list-style: none;
}

.footer-nav li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-nav a,
.footer-contact a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--accent);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--accent);
    font-weight: 600;
}

/* Footer Grid - Alternative Class Names */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 350px;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 20px 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-links h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 12px;
}

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

.social-links a:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-3px);
}

.design-credit {
    color: var(--text-muted);
}

.design-credit a {
    color: var(--accent);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--accent);
    color: var(--dark);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent);
    color: var(--dark);
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .bento-about {
        grid-template-columns: 1fr 1fr;
    }

    .bento-text {
        grid-column: 1 / 3;
        grid-row: 1;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .bento-img-1 {
        grid-column: 1;
        grid-row: 2;
        min-height: 300px;
    }

    .bento-img-2 {
        grid-column: 2;
        grid-row: 2;
    }

    .bento-img-3 {
        display: none;
    }

    .experiences-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .masonry-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-main,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        padding: 100px 40px;
        gap: 25px;
        transition: var(--transition);
    }

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

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-content-wrapper {
        flex-direction: column;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .stats-grid {
        gap: 30px;
    }

    .stat-divider {
        display: none;
    }

    .bento-about {
        grid-template-columns: 1fr;
    }

    .bento-text {
        grid-column: 1;
    }

    .bento-img-1,
    .bento-img-2 {
        grid-column: 1;
    }

    .bento-img-1 {
        min-height: 250px;
    }

    .experiences-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .masonry-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }

    .masonry-wide {
        grid-column: span 2;
    }

    .masonry-tall {
        grid-row: span 1;
    }

    .parallax-break {
        background-attachment: scroll;
    }

    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .footer-main,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-outline {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
