/* ========================================
   MODERN TRANSFER WEBSITE - MAIN CSS
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --primary: #d64045;
    --primary-color: #d64045;
    --primary-dark: #bf2f3a;
    --primary-light: #e06065;
    --accent-color: #d64045;
    --accent-dark: #bf2f3a;
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a68;
    --text-light: #8b8b9f;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-dark: #1a1a2e;
    --border-color: #e5e7eb;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-base: 16px;
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s ease;
    --radius: 12px;
}

/* ========================================
   RESET & BASE
   ======================================== */

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

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

ul, ol {
    list-style: none;
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.main-content {
    min-height: 100vh;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

/*.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: var(--shadow-md);
}*/

.main-header {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.main-header .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    padding: 0;
}

.navbar-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    flex-shrink: 0;
    z-index: 2;
}

.logo:hover {
    color: var(--text-primary);
}

.logo-img {
    height: 44px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}


.logo-fallback {
    display: none;
    align-items: center;
    gap: 10px;
}

.logo-icon-x {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    transform: none;
}

.logo-text-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1;
}

.logo-text-upper {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.logo-text-lower {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-smooth);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
    transition: width 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    width: 100%;
}

/* Navigation Dropdown Sub-menus */
.nav-links > li {
    position: relative;
}

.nav-links > li > .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 230px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 100;
    list-style: none;
}

.nav-links > li:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-item:hover,
.dropdown-item.active {
    background: #fff5f5;
    color: var(--primary-color);
}

.dropdown-item.active {
    font-weight: 600;
}

.dropdown-item i:not(.dropdown-arrow) {
    font-size: 14px;
    width: 20px;
    text-align: center;
    color: #bbb;
    transition: color 0.2s ease;
}

.dropdown-item:hover i:not(.dropdown-arrow),
.dropdown-item.active i:not(.dropdown-arrow) {
    color: var(--primary-color);
}

.dropdown-submenu {
    position: absolute;
    left: calc(100% + 4px);
    top: 0;
    min-width: 210px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 101;
    list-style: none;
}

.dropdown-menu li:hover > .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nav-links > li:hover > .nav-link::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    z-index: 2;
}

.mobile-menu-toggle {
    display: none;
}

/* Hide mobile-only elements on desktop */
.mobile-menu-header,
.mobile-menu-social,
.mobile-menu-overlay {
    display: none;
}

/* Header Social Links */
.header-social-links {
    display: none;
}

.header-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 16px;
    transition: var(--transition-smooth);
}

.header-social-link:hover {
    background: #d64045;
    color: white;
    transform: translateY(-1px);
}

/* Language Selector */
.language-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 16px;
    background: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.lang-btn:hover {
    border-color: #d1d5db;
    background: #fafafa;
    color: var(--text-primary);
}

.lang-flag {
    width: 16px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    vertical-align: middle;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    padding: 8px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
    z-index: 100;
}

.language-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 13px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.lang-option .lang-flag {
    margin-right: 8px;
}

.lang-option:hover,
.lang-option.active {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

.lang-dropdown.show,
.currency-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Currency Selector */
.currency-selector {
    position: relative;
}

.currency-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 16px;
    background: var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    color: #fff;
    transition: var(--transition-smooth);
    border: 1px solid var(--primary-color);
}

.currency-btn:hover {
    border-color: var(--primary-dark);
    background: var(--primary-dark);
    color: #fff;
}

.currency-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    padding: 8px;
    min-width: 130px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
    z-index: 100;
}

.currency-selector:hover .currency-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.currency-option {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 13px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.currency-option:hover,
.currency-option.active {
    background: #fff5f5;
    color: var(--primary-color);
}

/* Header Auth Buttons */
.header-auth-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-header-register {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 6px 12px;
    transition: var(--transition-smooth);
}

.btn-header-register:hover {
    color: #d64045;
}

.btn-header-login {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.btn-header-login:hover {
    border-color: #d64045;
    color: #d64045;
    background: #fff5f5;
}

.btn-header-login i {
    font-size: 13px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float i {
    font-size: 20px;
}

.whatsapp-float:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
    color: white;
}

.btn-header-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-header-contact:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.header-phone-text {
    display: inline;
}

/* Mobile menu overlay - styles moved to mobile-menu.css */

/* ========================================
   SHARED PAGE HEADER
   ======================================== */

.breadcrumb-wrap {
    background: #fff;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-wrap--centered .breadcrumb {
    justify-content: center;
}

.breadcrumb-wrap .breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.875rem;
    color: var(--text-light);
}

.breadcrumb-wrap .breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
}

.breadcrumb-wrap .breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb-wrap .breadcrumb > span:not(.sep) {
    color: var(--text-light);
}

.breadcrumb-wrap .breadcrumb .sep {
    margin: 0 8px;
    color: #ccc;
    user-select: none;
}

.site-page-header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 26px 0 28px;
}

.site-page-header--with-breadcrumb {
    padding-top: 20px;
}

.site-page-header__content {
    width: 100%;
}

.site-page-header__content--centered {
    text-align: center;
}

.site-page-header__content--narrow {
    max-width: 780px;
}

.site-page-title {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.site-page-subtitle {
    max-width: 760px;
    margin: 6px 0 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.site-page-header__content--centered .site-page-subtitle,
.site-page-header__content--narrow .site-page-subtitle {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .site-page-header {
        padding: 20px 0 22px;
    }

    .site-page-header--with-breadcrumb {
        padding-top: 16px;
    }

    .breadcrumb-wrap .breadcrumb {
        font-size: 12px;
    }

    .site-page-title {
        font-size: 24px;
    }

    .site-page-subtitle {
        font-size: 14px;
    }
}

/* ========================================
   INLINE RESERVATION FORM (Shared)
   ======================================== */

.inline-reservation-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.inline-reservation-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    padding: 32px;
}

.inline-reservation-header {
    text-align: center;
    margin-bottom: 24px;
}

.inline-reservation-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
}

.inline-reservation-subtitle {
    font-size: 14px;
    color: #888;
}

.inline-form-row {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.inline-form-field {
    flex: 1;
    min-width: 0;
}

.inline-form-field-date,
.inline-form-field-passengers {
    flex: 0 0 160px;
}

.inline-field-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.inline-field-input,
.inline-field-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 13px;
    color: #333;
    background: white;
    transition: border-color 0.2s;
}

.inline-field-input:focus,
.inline-field-select:focus {
    outline: none;
    border-color: #d64045;
}

.inline-form-field-date .flatpickr-input {
    width: 100%;
}

.inline-form-submit {
    flex: 0 0 auto;
}

.btn-inline-search {
    padding: 10px 24px;
    background: #d64045;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: background 0.2s;
}

.btn-inline-search:hover {
    background: #bf2f3a;
}

.inline-location-autocomplete {
    position: relative;
}

.inline-location-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    z-index: 50;
    max-height: 240px;
    overflow-y: auto;
    margin-top: 4px;
}

.inline-location-dropdown.show {
    display: block;
}

@media (max-width: 992px) {
    .inline-form-row {
        flex-wrap: wrap;
    }

    .inline-form-field {
        flex: 1 1 calc(50% - 6px);
    }

    .inline-form-field-date,
    .inline-form-field-passengers {
        flex: 1 1 calc(33% - 8px);
    }

    .inline-form-submit {
        width: 100%;
    }

    .btn-inline-search {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .inline-form-row {
        flex-direction: column;
    }

    .inline-form-field,
    .inline-form-field-date,
    .inline-form-field-passengers {
        flex: 1 1 100%;
    }

    .inline-reservation-card {
        padding: 20px;
    }
}

/* ========================================
   FOOTER - Compact ShuttlePort Style
   ======================================== */

.main-footer {
    background: #1a1a2e;
    color: white;
    margin-top: 0;
}

.footer-main {
    padding: 40px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
}

.footer-brand {
    padding-right: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
    text-decoration: none;
}

.footer-logo .logo-icon-x {
    font-size: 24px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer-logo-text strong {
    color: #d64045;
}

.footer-description {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 13px;
}

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

.social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    transition: all 0.2s ease;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.social-link:hover {
    background: #d64045;
    color: white;
}

.footer-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #d64045;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.footer-contact i {
    color: #d64045;
    width: 16px;
    font-size: 13px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-legal {
    display: flex;
    gap: 16px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
}

.footer-legal a:hover {
    color: #d64045;
}

.footer-badges {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-badge-img {
    height: 28px;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.footer-badge-img:hover {
    opacity: 1;
}

/* Hide social links text on medium screens */
@media (max-width: 1350px) {
    .nav-links {
        gap: 16px;
    }

    .nav-link {
        font-size: 13px;
    }
}

@media (max-width: 1450px) {
    .header-phone-text {
        display: none;
    }

    .main-header .btn-header-contact {
        padding: 12px 16px;
    }
}

/* ========================================
   RESPONSIVE - TABLET & MOBILE
   Mobile menu styles are in mobile-menu.css
   ======================================== */

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    :root {
        --section-padding: 60px 0;
    }

    .main-header {
        padding: 10px 0;
    }

    .main-header .container {
        padding: 0 12px;
    }

    .navbar-content {
        gap: 8px;
        min-height: 44px;
    }

    .logo-img {
        height: 34px;
        max-width: 130px;
    }

    .logo-icon-x {
        font-size: 22px;
    }

    .logo-text-upper {
        font-size: 14px;
        letter-spacing: 0.06em;
    }

    .logo-text-lower {
        font-size: 8px;
        letter-spacing: 0.18em;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-bottom-right {
        flex-direction: column;
        gap: 12px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 6px;
    }

    .footer-badges {
        justify-content: center;
        flex-wrap: wrap;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        padding: 14px;
        border-radius: 50%;
        bottom: 20px;
        right: 16px;
    }
}

/* Very small screens */
@media (max-width: 380px) {
    .logo-img {
        max-width: 110px;
        height: 30px;
    }
}
