:root {
    --primary: #b1162a;
    --primary-light: #d41e3a;
    --gold: #c9b48c;
    --gold-bright: #dcc9a3;
    --dark-bg: #050509;
    --card-bg: #0a0a10;
    --muted-bg: #12121a;
    --text-primary: #bdb4c7;
    --text-muted: #9b92a5;
    --border-color: #1a1a25;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-primary);
}

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

.text-crimson {
    color: var(--primary) !important;
}

.text-gradient-crimson {
    background: linear-gradient(135deg, #d41e3a 0%, #b1162a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #8a1120 100%);
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(177, 22, 42, 0.4);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(177, 22, 42, 0.6);
    color: #fff;
}

.btn-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: rgba(201, 180, 140, 0.15);
    color: var(--gold-bright);
    border-color: var(--gold-bright);
}

/* Navigation */
.navbar {
    background: transparent;
    transition: all 0.4s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    background: rgba(5, 5, 9, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(177, 22, 42, 0.2);
    border: 1px solid rgba(177, 22, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.brand-text .main {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    line-height: 1.2;
}

.brand-text .sub {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    transition: color 0.3s ease;
    margin: 0 8px;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.navbar-toggler {
    border-color: var(--border-color);
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0a0512 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1534447677768-be436bb09401?w=1920') center/cover no-repeat;
    opacity: 0.3;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, var(--dark-bg) 0%, rgba(5,5,9,0.8) 50%, rgba(5,5,9,0.5) 100%);
}

.hero-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(177, 22, 42, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
}

.hero-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 550px;
    margin-bottom: 2rem;
}

.badge-fantasy {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    background: rgba(10, 10, 16, 0.8);
    border: 1px solid rgba(201, 180, 140, 0.3);
    color: var(--gold);
    margin-left: 8px;
    margin-bottom: 8px;
}

.book-cover-wrapper {
    position: relative;
}

.book-glow {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(177, 22, 42, 0.3) 0%, rgba(201, 180, 140, 0.2) 50%, rgba(177, 22, 42, 0.3) 100%);
    border-radius: 20px;
    filter: blur(30px);
    opacity: 0.6;
}

.book-cover {
    position: relative;
    width: 100%;
    max-width: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

.book-cover:hover {
    transform: rotate(-2deg);
}

.book-cover img {
    width: 100%;
    display: block;
}

.book-label {
    position: absolute;
    bottom: -15px;
    right: 30px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.book-label span {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(201, 180, 140, 0.5);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-indicator .wheel {
    width: 6px;
    height: 10px;
    background: rgba(201, 180, 140, 0.5);
    border-radius: 3px;
    animation: scroll-wheel 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(8px); }
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section-label {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

.section-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Fantasy Cards */
.fantasy-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s ease;
    height: 100%;
}

.fantasy-card:hover {
    border-color: rgba(177, 22, 42, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(177, 22, 42, 0.15);
}

.fantasy-card .card-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.fantasy-card:hover .card-img {
    transform: scale(1.1);
}

.fantasy-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
}

.fantasy-card .card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--card-bg) 0%, transparent 50%);
}

.fantasy-card .card-label {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.7;
}

.fantasy-card .card-body {
    padding: 20px;
}

.fantasy-card .card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.fantasy-card:hover .card-title {
    color: var(--gold);
}

.fantasy-card .card-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Character Cards */
.character-card {
    position: relative;
}

.character-card .gold-label {
    position: absolute;
    top: 0;
    right: 25px;
    z-index: 10;
    background: linear-gradient(to bottom, var(--gold) 0%, #a89968 100%);
    color: var(--dark-bg);
    padding: 8px 16px;
    border-radius: 0 0 8px 8px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(201, 180, 140, 0.3);
}

.character-card .card-img {
    aspect-ratio: 3/4;
}

.character-card .name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, var(--card-bg) 0%, transparent 100%);
}

.character-card .name-en {
    color: rgba(201, 180, 140, 0.6);
    font-size: 0.75rem;
    font-weight: 600;
}

.character-card .name-ar {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

/* Creature Cards */
.creature-card .danger-label {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    background: rgba(177, 22, 42, 0.9);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

.creature-card .card-img {
    aspect-ratio: 1/1;
}

/* World Section */
.world-section {
    background: linear-gradient(to right, rgba(177, 22, 42, 0.05) 0%, transparent 50%);
}

.world-image-wrapper {
    position: relative;
}

.world-image-glow {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(177, 22, 42, 0.2) 0%, rgba(201, 180, 140, 0.1) 100%);
    border-radius: 20px;
    filter: blur(30px);
}

.world-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
}

.world-image img {
    width: 100%;
    transition: transform 0.7s ease;
}

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

.world-image .image-label {
    position: absolute;
    bottom: 20px;
    right: 20px;
    left: 20px;
}

.world-image .image-label span {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
}

.stat-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 15px 20px;
    text-align: center;
}

.stat-box .stat-number {
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}

.stat-box .stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Trailers Section */
.trailers-section {
    background: linear-gradient(to bottom, var(--dark-bg) 0%, var(--muted-bg) 50%, var(--dark-bg) 100%);
}

.video-placeholder {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--muted-bg) 0%, var(--card-bg) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(177, 22, 42, 0.2);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse-glow 2s infinite;
}

.play-button:hover {
    background: rgba(177, 22, 42, 0.4);
}

.play-button i {
    color: var(--primary);
    font-size: 2rem;
    margin-right: -5px;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(177, 22, 42, 0.3); }
    50% { box-shadow: 0 0 40px rgba(177, 22, 42, 0.6); }
}

.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px 25px;
    background: linear-gradient(to top, var(--card-bg) 0%, transparent 100%);
}

.video-info .info-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-info .info-icon i {
    color: #fff;
    font-size: 1rem;
}

.trailer-list .trailer-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-radius: 10px;
    background: rgba(18, 18, 26, 0.5);
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trailer-list .trailer-item:hover {
    background: var(--muted-bg);
}

.trailer-list .trailer-thumb {
    width: 60px;
    height: 45px;
    border-radius: 8px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.3s ease;
}

.trailer-list .trailer-item:hover .trailer-thumb {
    border-color: rgba(177, 22, 42, 0.5);
}

.trailer-list .trailer-thumb i {
    color: var(--primary);
    font-size: 0.9rem;
}

.trailer-list .trailer-info {
    flex: 1;
}

.trailer-list .trailer-title {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    transition: color 0.3s ease;
}

.trailer-list .trailer-item:hover .trailer-title {
    color: var(--gold);
}

.trailer-list .trailer-subtitle {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.trailer-list .trailer-number {
    color: rgba(155, 146, 165, 0.4);
    font-size: 1.2rem;
    font-weight: 700;
}

/* Read Section */
.quote-box {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 50px;
    overflow: hidden;
}

.quote-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold) 0%, rgba(201, 180, 140, 0.3) 100%);
}

.quote-box .quote-icon {
    position: absolute;
    color: rgba(201, 180, 140, 0.15);
    font-size: 4rem;
}

.quote-box .quote-icon.top {
    top: 20px;
    right: 20px;
}

.quote-box .quote-icon.bottom {
    bottom: 20px;
    left: 20px;
    transform: rotate(180deg);
}

.quote-box blockquote {
    position: relative;
    z-index: 1;
}

.quote-box blockquote p {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .quote-box {
        padding: 30px;
    }
    .quote-box blockquote p {
        font-size: 1.1rem;
    }
}

.quote-box blockquote footer {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    margin-top: 25px;
}

.quote-box blockquote cite {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: normal;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(to bottom, var(--dark-bg) 0%, rgba(177, 22, 42, 0.05) 50%, var(--dark-bg) 100%);
}

.newsletter-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(177, 22, 42, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(177, 22, 42, 0.2);
    border: 1px solid rgba(177, 22, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.newsletter-icon i {
    color: var(--primary);
    font-size: 1.8rem;
}

.newsletter-form .form-control {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 14px 20px;
    border-radius: 10px;
    font-family: 'Cairo', sans-serif;
}

.newsletter-form .form-control::placeholder {
    color: var(--text-muted);
}

.newsletter-form .form-control:focus {
    background: var(--card-bg);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(177, 22, 42, 0.2);
    color: var(--text-primary);
}

/* Footer */
.footer {
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(177, 22, 42, 0.5), transparent);
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-brand .brand-icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
}

.footer-links h5 {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 15px;
}

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

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

.footer-links ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--gold);
}

.back-to-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--muted-bg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: rgba(177, 22, 42, 0.2);
    border-color: rgba(177, 22, 42, 0.5);
}

.back-to-top i {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.back-to-top:hover i {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    margin-top: 40px;
}

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

.footer-bottom a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* Utilities */
.bg-muted {
    background: var(--muted-bg);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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



/* ===========================================
   GLOBAL MOBILE FIXES
=========================================== */
html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

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


/* ===========================================
   HERO SECTION
=========================================== */
@media (max-width: 576px) {

    .hero-section {
        padding-top: 120px !important;
        text-align: center !important;
    }

    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.4 !important;
        word-break: break-word !important;
    }

    .hero-description {
        max-width: 92% !important;
        margin: 0 auto 20px !important;
        font-size: 1rem !important;
        text-align: center !important;
    }

    .btn-hero, .btn-gold {
        width: 100%;
        padding: 14px !important;
        font-size: 1rem !important;
        text-align: center !important;
    }

    .hero-glow {
        width: 250px !important;
        height: 150px !important;
        filter: blur(20px);
    }

    .book-cover {
        max-width: 230px !important;
        margin: 20px auto 0 !important;
    }
}


/* ===========================================
   NAVBAR MOBILE MENU
=========================================== */
@media (max-width: 991px) {

    .navbar-collapse {
        background: rgba(5, 5, 9, 0.97) !important;
        padding: 20px !important;
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.08);
        margin-top: 12px !important;
        backdrop-filter: blur(14px);
    }

    .navbar-nav .nav-link {
        padding: 12px 0 !important;
        font-size: 1.1rem !important;
        text-align: center !important;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
}


/* ===========================================
   SECTIONS GENERAL
=========================================== */
@media (max-width: 576px) {

    .section {
        padding: 60px 0 !important;
    }

    .section-title {
        font-size: 1.8rem !important;
        line-height: 1.4 !important;
        padding: 0 10px !important;
        word-break: break-word;
        text-align: center !important;
    }

    .section-description {
        font-size: 1rem !important;
        padding: 0 10px !important;
        text-align: center !important;
    }
}


/* ===========================================
   WORLD SECTION FIX
=========================================== */
@media (max-width: 576px) {
    .world-image-glow {
        inset: -5px !important;
        filter: blur(12px) !important;
    }

    .text-end {
        text-align: center !important;
    }

    .stat-box {
        width: 48% !important;
        margin-bottom: 10px !important;
    }
}


/* ===========================================
   FANTASY CARDS (REALMS)
=========================================== */
@media (max-width: 576px) {
    .fantasy-card .card-img {
        aspect-ratio: 4/5 !important;
        height: auto !important;
    }

    .fantasy-card .card-body {
        padding: 15px !important;
        text-align: center !important;
    }
}


/* ===========================================
   CHARACTERS CARDS
=========================================== */
@media (max-width: 576px) {

    .character-card .card-img {
        aspect-ratio: 3/4 !important;
    }

    .name-overlay {
        text-align: center !important;
        padding-bottom: 25px !important;
    }

    .name-ar {
        font-size: 1.2rem !important;
    }
}


/* ===========================================
   CREATURE CARDS
=========================================== */
@media (max-width: 576px) {

    .creature-card .card-img {
        aspect-ratio: 4/5 !important;
    }

    .creature-card .card-body {
        text-align: center !important;
    }
}


/* ===========================================
   TRAILERS / VIDEOS
=========================================== */
@media (max-width: 576px) {

    .trailer-item {
        padding: 10px !important;
        gap: 8px !important;
    }

    .trailer-title {
        font-size: 0.9rem !important;
    }

    .ratio {
        border-radius: 10px !important;
        overflow: hidden !important;
    }
}


/* ===========================================
   QUOTE / READING SECTION
=========================================== */
@media (max-width: 576px) {
    .quote-box {
        padding: 30px !important;
    }

    .quote-box blockquote p {
        font-size: 1.1rem !important;
    }
}


/* ===========================================
   NEWSLETTER SECTION
=========================================== */
@media (max-width: 576px) {

    .newsletter-icon {
        width: 60px !important;
        height: 60px !important;
    }

    .newsletter-form input {
        width: 100% !important;
        max-width: none !important;
    }
}


/* ===========================================
   FOOTER
=========================================== */
@media (max-width: 576px) {

    .footer {
        text-align: center !important;
    }

    .footer-brand {
        justify-content: center !important;
    }

    .back-to-top {
        margin: 0 auto !important;
    }
}
