/* ============================================
   ELİT ULAŞIM - TAMAMEN BAĞIMSIZ STİL DOSYASI
   Sıfırdan yazılmış, hiçbir framework bağımlılığı yok
   ============================================ */

/* ===== CSS RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: #1f2937;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

p {
    margin: 0 0 1rem 0;
}

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --secondary: #f59e0b;
    --accent: #10b981;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-gray: #f3f4f6;
    --border: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* ===== CONTAINER & GRID SYSTEM ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

[class*="col-"] {
    padding: 0 15px;
}

.col-12 { width: 100%; }
.col-6 { width: 50%; }

@media (min-width: 768px) {
    .col-md-6 { width: 50%; }
    .col-md-12 { width: 100%; }
}

@media (min-width: 992px) {
    .col-lg-2 { width: 16.666%; }
    .col-lg-3 { width: 25%; }
    .col-lg-4 { width: 33.333%; }
    .col-lg-5 { width: 41.666%; }
    .col-lg-6 { width: 50%; }
    .col-lg-7 { width: 58.333%; }
    .col-lg-12 { width: 100%; }
}

@media (min-width: 1200px) {
    .col-xl-6 { width: 50%; }
}

.g-4 > [class*="col-"] {
    margin-bottom: 30px;
}

.g-3 > [class*="col-"] {
    margin-bottom: 20px;
}

.text-center {
    text-align: center;
}

.text-md-end {
    text-align: right;
}

@media (max-width: 767px) {
    .text-md-end {
        text-align: left;
    }
}

.mb-0 { margin-bottom: 0 !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mb-20 { margin-bottom: 1.25rem !important; }
.mt-4 { margin-top: 1.5rem !important; }

.pb-130 { padding-bottom: 5rem; }
.pt-130 { padding-top: 5rem; }

.align-items-center {
    align-items: center;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.primary-header {
    padding: 0;
}

.primary-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.header-logo img {
    max-height: 50px;
    width: auto;
}

.header-right-wrap {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.mobile-menu-items ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.mobile-menu-items a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    position: relative;
}

.mobile-menu-items a:hover {
    color: var(--primary);
}

.mobile-menu-items a[href*="elittopluulasim.com"] {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.mobile-menu-items a[href*="elittopluulasim.com"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.sidebar-trigger {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.sidebar-trigger svg {
    width: 24px;
    height: 24px;
}

.sidebar-trigger path {
    fill: currentColor;
}

@media (max-width: 991px) {
    .mobile-menu-items {
        display: none;
    }
}

/* ===== SIDEBAR ===== */
.sidebar-area {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.sidebar-area.active {
    right: 0;
}

.sidebar-trigger.close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.side-menu-content {
    padding: 60px 30px 30px;
}

.side-menu-logo {
    margin-bottom: 30px;
}

.side-menu-logo img {
    max-height: 50px;
}

.side-menu-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.side-menu-about p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.side-menu-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.side-menu-list i {
    color: var(--primary);
    margin-top: 3px;
}

.side-menu-list a {
    color: var(--primary);
}

.side-menu-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.side-menu-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    color: var(--primary);
}

/* ===== HERO SECTION ===== */
.modern-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    padding: 100px 0 60px;
    overflow: hidden;
}

.modern-hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modern-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(229, 231, 235, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(229, 231, 235, 0.3) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    z-index: 0;
}

.modern-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.hero-bus-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
    opacity: 0.8;
}

.hero-bus-icon i {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out;
}

.hero-badge span {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-main-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.title-main {
    color: var(--text-dark);
    display: block;
}

.title-accent {
    color: var(--secondary);
    display: block;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

.btn-modern {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-outline {
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}


/* ===== STATS SECTION ===== */
.modern-stats {
    padding: 5rem 0;
    background: var(--bg-white);
}

.stat-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* ===== SERVICES SECTION ===== */
.modern-services {
    padding: 6rem 0;
    background: var(--bg-light);
}

.section-heading {
    margin-bottom: 3rem;
}

.sub-heading {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: inline-block;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}

.service-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(245, 158, 11, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* ===== ABOUT SECTION ===== */
.modern-about {
    background: var(--bg-white);
    padding: 6rem 0;
}

.about-content .section-title {
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
}

.feature-item:hover {
    background: rgba(37, 99, 235, 0.05);
    border-color: var(--primary);
    transform: translateX(5px);
}

.feature-item i {
    color: var(--accent);
    font-size: 1.25rem;
}

.feature-item span {
    color: var(--text-dark);
    font-weight: 600;
}

.about-img-wrap {
    position: relative;
}

.about-img img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* ===== FAQ/CONTACT SECTION ===== */
.modern-faq {
    background: var(--bg-light);
    padding: 6rem 0;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.contact-card:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h5 {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details a,
.contact-details p {
    color: var(--text-dark);
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

.contact-details a:hover {
    color: var(--primary);
}

/* ===== ACCORDION ===== */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    width: 100%;
    padding: 1.25rem;
    background: white;
    color: var(--text-dark);
    font-weight: 600;
    text-align: left;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-button::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.accordion-button.active {
    background: var(--bg-light);
    color: var(--primary);
}

.accordion-button.active::after {
    content: '−';
    transform: rotate(180deg);
}

.accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-collapse.show {
    max-height: 1000px;
}

.accordion-body {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-gray);
}

.accordion-body p {
    margin-bottom: 0.75rem;
}

.accordion-body a {
    color: var(--primary);
}

.accordion-body a:hover {
    text-decoration: underline;
}

.faq-img img {
    max-width: 100%;
    border-radius: 20px;
}

/* ===== İETT SECTION ===== */
.modern-iett {
    background: var(--bg-white);
    padding: 6rem 0;
}

.iett-description {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.8;
}

.iett-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.iett-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.iett-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.iett-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.iett-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.iett-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.iett-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.iett-social-section {
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.iett-social-section h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
}

.iett-social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.iett-social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 1.5rem 2rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 15px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 120px;
}

.iett-social-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.iett-social-link i {
    font-size: 2rem;
}

.iett-social-link span {
    font-size: 0.9rem;
    font-weight: 600;
}

.side-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    color: var(--primary);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.side-social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.side-menu-social {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

/* ===== FOOTER ===== */
.modern-footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-wrap {
    margin-bottom: 3rem;
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.modern-footer p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-hours .title {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hours-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.widget-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-list a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-link-special {
    color: var(--secondary) !important;
    font-weight: 600;
}

.footer-link-special:hover {
    color: var(--accent) !important;
}

.address-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
}

.address-list i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.address-list a,
.address-list span {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.address-list a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.copyright-area {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
}

.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.animated {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .mobile-menu-items {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-modern {
        width: 100%;
        justify-content: center;
    }
    
    .modern-hero {
        min-height: 60vh;
        padding: 80px 0 40px;
    }
    
    .hero-bus-icon {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .stat-card,
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
    }
    
    .copyright-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== UTILITY CLASSES ===== */
.d-lg-block {
    display: block;
}

@media (max-width: 991px) {
    .d-lg-block {
        display: none;
    }
}
