/*
 * English Experte Platform - Main Stylesheet
 * Built on Bootstrap 5.3.0
 */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700&display=swap');

/* D-DIN PRO Font Face - Add your font files to /assets/fonts/ */
/* @font-face {
    font-family: 'D-DIN-PRO';
    src: url('../fonts/D-DIN-PRO-700.woff2') format('woff2'),
        url('../fonts/D-DIN-PRO-700.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
} */

/* Custom CSS Variables */
:root {
    --primary-color: #062749;
    --primary-dark: #04192e;
    --secondary-color: #fec003;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;

    /* Typography Colors */
    --text-color: #273044;
    --heading-color: #102C49;

    --bs-link-color: #fed132 !important;
    /* Font Families */
    --font-family-sans-serif: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-family-headings: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-base: 1rem;
    --line-height-base: 1.5;

    --border-radius: 0.375rem;
    --box-shadow: 0 0.125rem 0.25rem rgba(6, 39, 73, 0.075);
    --box-shadow-sm: 0 0.125rem 0.25rem rgba(6, 39, 73, 0.075);
    --box-shadow-lg: 0 1rem 3rem rgba(6, 39, 73, 0.175);

    --transition-base: all 0.2s ease-in-out;
}

.bg-primary-dark {
    background-color: var(--primary-dark) !important;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: var(--light-color) !important;
    background-color: var(--primary-color) !important;
}

.form-check-input:checked {
    background-color: var(--secondary-color) !important;
}

.form-check-input:checked,
.form-check-input:focus,
.form-check-input:active {
    border-color: var(--secondary-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 221, 1, 0.365);
}


.fa-eye:before {
    color: var(--secondary-color) !important;
}

.fa-eye-slash:before {
    color: var(--secondary-color) !important;
}

/* Base Styles */
body {
    font-family: var(--font-family-sans-serif);
    line-height: var(--line-height-base);
    color: var(--text-color);
    background-color: #fff;
    font-weight: 400;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-headings);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    /* color: var(--heading-color); */
}

p,
span,
.text-body,
.form-label,
.btn,
.nav-link,
.card-text,
.list-group-item {
    font-family: var(--font-family-sans-serif);
    font-weight: 400;
    /* color: var(--text-color); */
}

.navbar-brand {
    font-family: var(--font-family-headings);
    color: var(--heading-color) !important;
}

/* Additional Typography Classes */
.text-primary-custom {
    color: var(--primary-color) !important;
}

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

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.bg-secondary-custom {
    background-color: var(--secondary-color) !important;
}

.text-light-50 {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Navigation */
.navbar {
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition-base);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
}

/* Buttons */
.btn {
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition-base);
    border-width: 2px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 0.125rem 0.5rem rgba(6, 39, 73, 0.25);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important
}

/* Cards */
.card {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.125);
}

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

.card-header {
    background-color: var(--light-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    font-weight: 600;
}

/* Forms */
.form-control {
    border-radius: var(--border-radius);
    transition: var(--transition-base);
    border: 1px solid #ced4da;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(6, 39, 73, 0.25);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.invalid-feedback {
    display: block;
}

/* Alerts */
.alert {
    border-radius: var(--border-radius);
    border: none;
    font-weight: 500;
}

.alert-success {
    background-color: #d1e7dd;
    color: #0f5132;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><path d="M0,0v100h1000V0H0z M500,50l-50-25h100L500,50z"/></svg>') repeat;
    opacity: 0.1;
}

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

/* Features Section */
.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
    transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

/* Teacher Cards */
.teacher-card {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition-base);
}

.teacher-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--light-color);
    transition: var(--transition-base);
}

.teacher-card:hover .teacher-avatar {
    border-color: var(--primary-color);
}

.teacher-rating {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Pricing Cards */
.pricing-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-base);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.featured .card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-card .price-currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.pricing-card .price-period {
    font-size: 1rem;
    color: var(--secondary-color);
}

/* Dashboard Styles */
.dashboard-card {
    border-left: 4px solid var(--primary-color);
    transition: var(--transition-base);
}

.dashboard-card:hover {
    border-left-color: var(--primary-dark);
    box-shadow: var(--box-shadow-lg);
}

.stats-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: var(--border-radius);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

/* Level Test Styles */
.question-card {
    border-left: 4px solid var(--info-color);
    transition: var(--transition-base);
}

.question-number {
    background-color: var(--info-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.option-button {
    text-align: left;
    border: 2px solid #e9ecef;
    background: white;
    color: var(--dark-color);
    transition: var(--transition-base);
    margin-bottom: 0.5rem;
}

.option-button:hover {
    border-color: var(--primary-color);
    background-color: rgba(6, 39, 73, 0.1);
}

.option-button.selected {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: white;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-circle {
    transition: stroke-dashoffset 0.35s;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

/* Calendar Styles */
.calendar-day {
    aspect-ratio: 1;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    border-radius: var(--border-radius);
}

.calendar-day:hover {
    background-color: rgba(6, 39, 73, 0.1);
    border-color: var(--primary-color);
}

.calendar-day.available {
    background-color: rgba(40, 167, 69, 0.1);
    border-color: var(--success-color);
}

.calendar-day.selected {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.calendar-day.disabled {
    background-color: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}

/* Chat Widget Styles */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border: none;
    box-shadow: var(--box-shadow-lg);
    transition: var(--transition-base);
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 1rem 2rem rgba(37, 211, 102, 0.3);
}

/* Loading Spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }

    .pricing-card.featured {
        transform: none;
        margin-top: 1rem;
    }

    .teacher-avatar {
        width: 100px;
        height: 100px;
    }

    .stats-number {
        font-size: 2rem;
    }

    .navbar-nav .nav-link.active::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 1.5rem 0;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .pricing-card .price {
        font-size: 2rem;
    }

    .stats-number {
        font-size: 1.8rem;
    }

    .chat-widget {
        bottom: 10px;
        right: 10px;
    }

    .chat-button {
        width: 50px;
        height: 50px;
    }
}


/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

.slide-in-up {
    animation: slideInUp 0.5s ease-out;
}

.bounce-in {
    animation: bounceIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    100% {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3);
    }

    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        transform: scale3d(.9, .9, .9);
    }

    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        transform: scale3d(.97, .97, .97);
    }

    100% {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

/* Modern iOS-Style Components */
.modern-card {
    background: #ffffff;
    border-radius: 16px;
    border: none;
    box-shadow: 0 4px 20px rgba(6, 39, 73, 0.08);
    transition: all 0.3s ease;
    padding: 24px;
    margin-bottom: 20px;
}

.modern-card:hover {
    box-shadow: 0 8px 32px rgba(6, 39, 73, 0.12);
    transform: translateY(-2px);
}

.modern-card-header {
    border: none;
    background: transparent;
    padding: 0 0 16px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(39, 48, 68, 0.1);
}

.modern-card-title {
    font-family: var(--font-family-headings);
    font-weight: 700;
    color: var(--heading-color);
    font-size: 1.25rem;
    margin: 0;
}

.modern-button {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-family: var(--font-family-sans-serif);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(6, 39, 73, 0.2);
}

.modern-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(6, 39, 73, 0.3);
    color: white;
}

.modern-button-secondary {
    background: var(--secondary-color);
    color: var(--heading-color);
    font-weight: 600;
}

.modern-button-secondary:hover {
    background: #e5ac02;
    color: var(--heading-color);
}

.modern-button-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.modern-button-outline:hover {
    background: var(--primary-color);
    color: white;
}

.modern-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.modern-stat-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.modern-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.modern-stat-number {
    font-family: var(--font-family-headings);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.modern-stat-label {
    font-family: var(--font-family-sans-serif);
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 8px;
}

.modern-form-group {
    margin-bottom: 24px;
}

.modern-form-label {
    font-family: var(--font-family-sans-serif);
    font-weight: 500;
    color: var(--heading-color);
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: block;
}

.modern-form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(39, 48, 68, 0.1);
    border-radius: 12px;
    font-family: var(--font-family-sans-serif);
    font-size: 0.95rem;
    color: var(--text-color);
    background: #ffffff;
    transition: all 0.2s ease;
}

.modern-form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(6, 39, 73, 0.1);
}

.modern-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(6, 39, 73, 0.08);
    border: none;
}

.modern-table thead th {
    background: rgba(6, 39, 73, 0.05);
    border: none;
    font-family: var(--font-family-sans-serif);
    font-weight: 600;
    color: var(--heading-color);
    padding: 16px 20px;
    font-size: 0.9rem;
}

.modern-table tbody td {
    border: none;
    border-bottom: 1px solid rgba(39, 48, 68, 0.08);
    padding: 16px 20px;
    font-family: var(--font-family-sans-serif);
    color: var(--text-color);
}

.modern-table tbody tr:last-child td {
    border-bottom: none;
}

.modern-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: var(--font-family-sans-serif);
}

.modern-badge-success {
    background: rgba(40, 167, 69, 0.1);
    color: #0f5132;
}

.modern-badge-warning {
    background: rgba(254, 192, 3, 0.2);
    color: #102C49;
}

.modern-badge-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #721c24;
}

.modern-badge-primary {
    background: rgba(6, 39, 73, 0.1);
    color: var(--primary-color);
}

.modern-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 40px 0;
    margin-bottom: 32px;
    border-radius: 0 0 24px 24px;
}

.modern-header-title {
    font-family: var(--font-family-headings);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.modern-header-subtitle {
    font-family: var(--font-family-sans-serif);
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 8px 0 0 0;
}

.modern-sidebar {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(6, 39, 73, 0.08);
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 24px;
}

.modern-nav-item {
    display: block;
    padding: 12px 16px;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 12px;
    margin-bottom: 4px;
    font-family: var(--font-family-sans-serif);
    font-weight: 500;
    transition: all 0.2s ease;
}

.modern-nav-item:hover {
    background: rgba(6, 39, 73, 0.08);
    color: var(--primary-color);
    text-decoration: none;
}

.modern-nav-item.active {
    background: var(--primary-color);
    color: white;
}

.modern-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(6, 39, 73, 0.1);
}

.modern-avatar-lg {
    width: 80px;
    height: 80px;
    border-radius: 16px;
}

/* Utility Classes */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.border-gradient {
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) 1;
}

.shadow-soft {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.rounded-lg {
    border-radius: 1rem;
}

.rounded-xl {
    border-radius: 1.5rem;
}

/* iOS-Style Page Loader */
.page-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-loader-overlay.hide {
    opacity: 0;
    visibility: hidden;
}

.page-loader-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    min-width: 220px;
    transform: scale(1);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-loader-overlay.hide .page-loader-container {
    transform: scale(0.8);
}

/* iOS Style Spinner */
.page-loader-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    position: relative;
}

.page-loader-spinner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: pageLoaderRotate 1s linear infinite;
}

.page-loader-spinner::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    border: 2px solid transparent;
    border-top: 2px solid var(--secondary-color);
    border-radius: 50%;
    animation: pageLoaderRotate 0.8s linear infinite reverse;
}

@keyframes pageLoaderRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Loader Text */
.page-loader-text {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
    font-family: var(--font-family-sans-serif);
}

.page-loader-subtext {
    color: #666;
    font-size: 14px;
    font-weight: 400;
    margin: 8px 0 0 0;
    opacity: 0.8;
    font-family: var(--font-family-sans-serif);
}

/* Hide page content while loading */
body.page-loading {
    overflow: hidden;
}

body.page-loading .navbar,
body.page-loading main,
body.page-loading .hero-section,
body.page-loading .modern-header,
body.page-loading .container:not(.page-loader-container) {
    opacity: 0;
    pointer-events: none;
}

.gtranslate_wrapper {
    margin-left: 10px !important
}

.glink img {

    border-radius: 12px !important;
    transition: transform 0.3s ease !important;
}

/* Print Styles */
@media print {

    .navbar,
    .footer,
    .chat-widget,
    .toast-container,
    .btn,
    .page-loader-overlay {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: white;
    }

    .card {
        border: 1px solid #ccc;
        box-shadow: none;
    }
}

.footer-bg {
    background: linear-gradient(135deg, #2c4663 0%, #1e3245 100%);
    color: white;
}

.footer-main {
    padding: 80px 0 60px;
}

.footer-bottom {
    background-color: #1a2d3d;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.logo-section {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    height: 45px;
    margin-right: 15px;
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.footer-text {
    font-size: 15px;
    line-height: 1.7;
    color: #c2d0e0;
    font-weight: 400;
}

.footer-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
    position: relative;
}

.footer-heading::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ffd700;
    margin-top: 8px;
    margin-bottom: 25px;
}

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

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

.footer-links a {
    color: #c2d0e0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
    padding-left: 5px;
}

.footer-links a::before {
    content: '>';
    color: #ffd700;
    font-weight: 600;
    margin-right: 10px;
    font-size: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #c2d0e0;
    font-size: 15px;
    font-weight: 400;
}

.contact-item svg {
    margin-right: 15px;
}




.footer-bottom-text {
    font-size: 14px;
    color: #8fa3b5;
    margin: 0;
}

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

.footer-bottom a:hover {
    color: #ffd700;
}

.heart {
    color: #e74c3c;
    margin: 0 3px;
}

.footer-bottom-links {
    text-align: right;
}

.footer-bottom-links a {
    margin-left: 25px;
}

.contact-item a {
    color: #aab9c6;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #ffd700;
    font-weight: 600;
    margin-right: 5px;
}


@media (max-width: 768px) {
    .footer-main {
        padding: 60px 0 40px;
    }

    .footer-heading {
        font-size: 18px;
    }

    .footer-text,
    .footer-links a,
    .contact-item {
        font-size: 14px;
    }



    .footer-bottom-links {
        text-align: left;
        margin-top: 15px;
    }

    .footer-bottom-links a {
        margin-left: 0;
        margin-right: 25px;
    }
}