/* Modern Navbar Styles */
:root {
    --navbar-height: 80px;
    --navbar-bg: rgba(255, 255, 255, 0.98);
    --navbar-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --primary-color: #150b3b;
    --secondary-color: #00E676;
    --text-color: #333;
    --transition: all 0.3s ease;
    --accent-color: #00E676;
    --text-light: #ffffff;
    --text-dark: #333333;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
    padding-top: 108px !important;
    margin: 0;
}

.modern-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    background: var(--navbar-bg);
    box-shadow: var(--navbar-shadow);
    z-index: 1000;
    transition: var(--transition);
}

.modern-navbar.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-logo {
    height: 76px;
    width: auto;
    display: block;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-link:hover {
    color: var(--accent-color);
}

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

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.language-selector {
    position: relative;
}

.language-btn {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.language-btn:hover {
    color: var(--accent-color);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 0.5rem;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

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

.language-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
}

.language-option:hover {
    background: rgba(0, 230, 118, 0.1);
    color: var(--accent-color);
}

.language-option.active {
    background: rgba(0, 230, 118, 0.1);
    color: var(--accent-color);
}

.language-flag {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    object-fit: cover;
    border: 1.5px solid #e0e0e0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    background: #fff;
    padding: 2px;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.language-option:hover .language-flag,
.language-option.active .language-flag {
    border-color: #00E676;
    box-shadow: 0 4px 12px rgba(0,230,118,0.10);
    background: #f6fff9;
}

.cta-button {
    background: none;
    color: #00c853;
    border: 2px solid #00c853;
    padding: 0.35rem 1.1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button:hover {
    background: #f6fff9;
    color: #009e46;
    border-color: #009e46;
    box-shadow: none;
    transform: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-icon {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    position: relative;
    transition: var(--transition);
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

.menu-icon::before {
    top: -6px;
}

.menu-icon::after {
    bottom: -6px;
}

/* Mobile Menu Styles */
@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: block;
    }

    .navbar-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .navbar-links {
        flex-direction: column;
        width: 100%;
    }

    .navbar-link {
        width: 100%;
        padding: 1rem;
    }

    .navbar-actions {
        flex-direction: column;
        width: 100%;
    }

    .language-selector {
        width: 100%;
    }

    .language-btn {
        width: 100%;
        justify-content: space-between;
    }

    .language-dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .language-selector:hover .language-dropdown {
        display: block;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    body {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 600px) {
    body {
        padding-left: 8px;
        padding-right: 8px;
    }
    .navbar-logo {
        height: 38px;
    }
    .navbar-icon-btn, .order-fuel-btn {
        min-height: 22px;
        padding: 1px 4px;
        font-size: 0.91rem;
    }
}

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

.slide-in {
    animation: slideIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.container {
    padding-left: 32px;
    padding-right: 32px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 600px) {
    .container {
        padding-left: 8px;
        padding-right: 8px;
    }
}

@media (min-width: 1024px) {
    .navbar-container,
    .nav-container {
        padding-left: 68px;
        padding-right: 68px;
    }
    .navbar-top-container,
    .navbar-bottom-container {
        padding-left: 68px !important;
        padding-right: 68px !important;
    }
}

/* === Double Navbar Modern Styles (Güncel) === */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    font-family: 'Poppins', sans-serif;
    background: #f5f6f7;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.navbar-top,
.navbar-bottom {
    position: static;
    width: 100%;
    background: inherit;
    box-shadow: none;
    z-index: auto;
}

.navbar-top-container, .navbar-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    box-sizing: border-box;
}

.navbar-top-container {
    height: 60px;
}

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

.navbar-logo {
    height: 38px;
    width: auto;
    display: block;
}

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

.navbar-top-link {
    color: #222;
    text-decoration: underline;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    position: relative;
}
.navbar-top-link:hover {
    color: #43b02a;
}

.navbar-top-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.navbar-phone {
    color: #43b02a;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.navbar-icon-btn, .order-fuel-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 2px 6px;
    min-height: 24px;
    min-width: 26px;
    border-radius: 7px;
    background: transparent;
    border: 2px solid #43b02a;
    color: #43b02a;
    box-shadow: none;
    cursor: pointer;
    transition: border 0.35s cubic-bezier(.4,0,.2,1), background 0.35s cubic-bezier(.4,0,.2,1), color 0.35s cubic-bezier(.4,0,.2,1);
    font-size: 0.93rem;
}

.navbar-icon-btn i, .order-fuel-btn i {
    font-size: 1.3rem;
}

.navbar-icon-btn .btn-label, .order-fuel-btn .btn-label {
    opacity: 0;
    width: 0;
    margin-left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #43b02a;
    font-size: 0.93rem;
    font-weight: 500;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), width 1.2s cubic-bezier(0.16, 1, 0.3, 1), margin-left 1.2s cubic-bezier(0.16, 1, 0.3, 1), color 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-icon-btn:hover .btn-label, .order-fuel-btn:hover .btn-label,
.navbar-icon-btn:focus .btn-label, .order-fuel-btn:focus .btn-label,
.navbar-icon-btn.active .btn-label, .order-fuel-btn.active .btn-label {
    opacity: 1;
    width: auto;
    margin-left: 8px;
}

.navbar-icon-btn:hover, .order-fuel-btn:hover,
.navbar-icon-btn:focus, .order-fuel-btn:focus,
.navbar-icon-btn.active, .order-fuel-btn.active {
    background: transparent;
    border-color: #43b02a;
    color: #43b02a;
}

.navbar-icon-btn:hover i, .order-fuel-btn:hover i,
.navbar-icon-btn:focus i, .order-fuel-btn:focus i {
    color: #43b02a;
}

.navbar-icon-btn:active, .order-fuel-btn:active {
    background: #f5f6f7;
    border-color: #388e3c;
}

.navbar-lang-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 2px 6px 2px 2px;
    cursor: pointer;
    position: relative;
    min-width: 36px;
    min-height: 28px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.06);
    transition: border 0.25s, box-shadow 0.25s;
}
.navbar-lang-selector:hover, .navbar-lang-selector.open {
    border-color: #43b02a;
    box-shadow: 0 4px 18px rgba(67,176,42,0.10);
}

.navbar-flag {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    object-fit: contain;
    background: #fff;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.navbar-lang-arrow {
    color: #888;
    font-size: 1.1rem;
    margin-left: 2px;
    transition: color 0.25s;
}

/* Dropdown kutusu */
.navbar-lang-selector .lang-dropdown {
    display: none;
    position: absolute;
    top: 110%;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.13);
    min-width: 110px;
    z-index: 10;
    padding: 6px 0;
    border: 2px solid #e0e0e0;
    animation: fadeInDropdown 0.18s cubic-bezier(.4,0,.2,1);
}
.navbar-lang-selector.open .lang-dropdown {
    display: block;
}
.lang-dropdown-option {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    cursor: pointer;
    font-size: 0.97rem;
    color: #222;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
}
.lang-dropdown-option:hover, .lang-dropdown-option.active {
    background: #f5f6f7;
    color: #43b02a;
}
.lang-dropdown-option .navbar-flag {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    object-fit: contain;
    background: #fff;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

/* Bottom Bar */
.navbar-bottom {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #ececec;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.navbar-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 0 32px;
    height: 48px;
    box-sizing: border-box;
}

.navbar-bottom-link {
    position: relative;
    color: #222;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.98rem;
    padding: 0 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.18s;
    cursor: pointer;
    height: 100%;
}

.navbar-bottom-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #43b02a;
    border-radius: 2px;
    transition: width 0.18s cubic-bezier(.4,0,.2,1);
}

.navbar-bottom-link:hover,
.navbar-bottom-link:focus {
    color: #43b02a;
}

.navbar-bottom-link:hover::after,
.navbar-bottom-link:focus::after {
    width: 100%;
}

.navbar-logo {
    height: 48px;
    width: auto;
    display: block;
}

.navbar-bottom-link.dropdown > a {
    color: #222;
    font-weight: 500;
    text-decoration: none;
    gap: 4px;
}

/* Dropdown Menü Modern ve Kutu Gölge Stili */
.navbar-bottom-link.dropdown {
    position: relative;
}

.navbar-bottom-link .dropdown-menu {
    display: none;
    position: absolute;
    top: 130%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.13);
    padding: 12px 0 8px 0;
    z-index: 20;
    flex-direction: column;
    gap: 0;
    border: none;
    animation: fadeInDropdown 0.18s cubic-bezier(.4,0,.2,1);
}

.navbar-bottom-link.dropdown:hover .dropdown-menu,
.navbar-bottom-link.dropdown .dropdown-menu:hover {
    display: flex;
}

/* Dropdown ok işareti */
.navbar-bottom-link .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 32px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 4px 0 0 0;
    box-shadow: -2px -2px 8px rgba(44,62,80,0.08);
    transform: rotate(45deg);
    z-index: 1;
}

.dropdown-menu-item {
    padding: 10px 22px;
    color: #222;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
    display: block;
}
.dropdown-menu-item:hover {
    background: #f5f6f7;
    color: #43b02a;
}

/* Aktif menü başlığı için alt çizgi ve renk */
.navbar-bottom-link.dropdown > a[aria-expanded="true"],
.navbar-bottom-link.dropdown:hover > a {
    color: #43b02a;
    border-bottom: none;
    background: #fff;
}

@keyframes fadeInDropdown {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive: Mobilde dropdown menü tam genişlikte ve statik */
@media (max-width: 900px) {
    .navbar-bottom-link .dropdown-menu {
        position: static;
        min-width: 100%;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin-top: 0;
        animation: none;
    }
    .navbar-bottom-link .dropdown-menu::before {
        display: none;
    }
    .dropdown-menu-item {
        padding: 14px 18px;
        font-size: 1.08rem;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .navbar-top-container, .navbar-bottom-container {
        padding: 0 10px;
    }
    .navbar-bottom-container {
        gap: 14px;
    }
}
@media (max-width: 600px) {
    .navbar-top-container, .navbar-bottom-container {
        padding: 0 2px;
    }
    .navbar-logo {
        height: 28px;
    }
    .order-fuel-btn {
        padding: 0.4rem 0.7rem;
        font-size: 0.95rem;
    }
    .navbar-bottom-link {
        font-size: 0.95rem;
        padding: 0 2px;
    }
}

/* Hamburger butonu */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1201;
    margin-left: 8px;
}
.hamburger-bar {
    width: 28px;
    height: 3px;
    background: #43b02a;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}
@media (max-width: 1024px) {
    .hamburger-btn {
        display: flex;
    }
}

.station-btn, .user-btn, .order-btn {
    background: transparent;
    border: 2px solid #43b02a;
    color: #43b02a;
    box-shadow: none;
    cursor: pointer;
    transition: background 0.7s cubic-bezier(0.23, 1, 0.32, 1), color 0.7s cubic-bezier(0.23, 1, 0.32, 1), border 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.station-btn i, .station-btn .btn-label,
.user-btn i, .user-btn .btn-label,
.order-btn i, .order-btn .btn-label {
    transition: color 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.station-btn.active, .station-btn:hover {
    background: #43b02a;
    border-color: #43b02a;
}
.station-btn.active i, .station-btn.active .btn-label,
.station-btn:hover i, .station-btn:hover .btn-label {
    color: #fff;
}

.user-btn.active, .user-btn:hover {
    background: #43b02a;
    border-color: #43b02a;
}
.user-btn.active i, .user-btn.active .btn-label,
.user-btn:hover i, .user-btn:hover .btn-label {
    color: #fff;
}

.order-btn {
    border-color: #ffd600;
}
.order-btn.active, .order-btn:hover {
    background: #ffd600;
    border-color: #ffd600;
}
.order-btn.active i, .order-btn.active .btn-label,
.order-btn:hover i, .order-btn:hover .btn-label {
    color: #222;
} 
.order-btn:hover .btn-label, .order-btn.active .btn-label { color: #222; } 

/* Mobil Menü Overlay */
.mobile-navbar-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30, 34, 40, 0.45);
    z-index: 1199;
    transition: opacity 0.25s;
    opacity: 0;
}
.mobile-navbar-overlay.active {
    display: block;
    opacity: 1;
}

/* E100 tarzı hamburger menü stilleri */
.mobile-navbar-menu {
    position: fixed;
    top: 0; right: 0;
    width: 100vw;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    z-index: 1400 !important;
    display: none;
    flex-direction: column;
    padding: 0;
    margin: 0;
    box-shadow: 0 8px 32px rgba(44,62,80,0.18);
    border-radius: 18px 0 0 18px;
    animation: slideInMenu 0.22s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
}
.mobile-navbar-menu.active {
    display: flex;
}
@keyframes slideInMenu {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.mobile-navbar-header {
    position: relative;
    padding-top: 32px;
    padding-bottom: 18px;
    padding-left: 32px;
    padding-right: 32px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid #ececec;
    min-height: 80px;
}
.mobile-navbar-logo {
    height: 48px;
    width: auto;
    display: block;
}
.close-mobile-menu {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: #222;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    cursor: pointer;
    z-index: 1500;
    transition: color 0.18s;
}
.close-mobile-menu:hover {
    background: transparent;
    color: #43b02a;
}
.mobile-navbar-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 18px 0 0 0;
}
.mobile-login-btn {
    width: 90%;
    margin: 0 auto 16px auto;
    background: #43b02a;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.13rem;
    font-weight: 600;
    padding: 13px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(67,176,42,0.08);
    transition: background 0.18s;
}
.mobile-login-btn:hover {
    background: #388e3c;
}
.mobile-station-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto 18px auto;
    gap: 10px;
}
.mobile-station-btn {
    flex: 1;
    background: #fff;
    border: 2px solid #43b02a;
    color: #43b02a;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.08rem;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.18s, color 0.18s, border 0.18s;
}
.mobile-station-btn:hover {
    background: #f5f6f7;
    color: #388e3c;
    border-color: #388e3c;
}
.mobile-lang-selector {
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    min-width: 44px;
    min-height: 36px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.06);
}
.mobile-lang-selector .navbar-flag {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    object-fit: contain;
    background: #fff;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.mobile-lang-selector .navbar-lang-arrow {
    color: #888;
    font-size: 1.1rem;
}
.mobile-menu-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
}
.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
}
.mobile-menu-link:hover {
    background: rgba(0, 230, 118, 0.1);
    color: var(--accent-color);
}
.mobile-menu-link i {
    color: var(--accent-color);
}
.mobile-menu-dropdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-menu-plus {
    font-size: 1.2rem;
    transition: var(--transition);
}
.mobile-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    margin-top: 1rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.mobile-order-btn:hover {
    background: #00c853;
    transform: translateY(-2px);
}

/* Menü açıkken arka planı sabitle */
body.mobile-menu-open {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .navbar-top,
    .navbar-bottom {
        display: none !important;
    }
    .navbar-top-container,
    .navbar-bottom-container {
        display: none !important;
    }
    .mobile-header-bar {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 60px;
        background: #fff;
        z-index: 1300;
        box-shadow: 0 2px 8px rgba(44,62,80,0.10);
        padding: 0 16px;
    }
    .mobile-header-logo {
        height: 38px;
        width: auto;
        display: block;
    }
    .hamburger-btn {
        display: flex !important;
        position: static;
        background: #fff;
        border-radius: 50%;
        box-shadow: none;
        width: 48px;
        height: 48px;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }
    body {
        padding-top: 60px !important;
        margin: 0 !important;
    }
    /* Diğer hamburger butonlarını gizle */
    nav .hamburger-btn {
        display: none !important;
    }
}

/* Mobilde ana içerik üstten boşluk bırakmasın */
@media (max-width: 1024px) {
    body {
        padding-top: 0 !important;
    }
}

.mobile-submenu {
    background: #fafbfc;
    padding: 0 0 0 32px;
    border-left: 2px solid #e0e0e0;
    border-bottom: 1px solid #f0f0f0;
    display: none;
    flex-direction: column;
    gap: 0;
}
.mobile-submenu-link {
    color: #222;
    text-decoration: none;
    font-size: 1.02rem;
    padding: 12px 0 12px 0;
    display: block;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s, color 0.15s;
}
.mobile-submenu-link:last-child {
    border-bottom: none;
}
.mobile-submenu-link:hover {
    background: #f5f6f7;
    color: #43b02a;
}
.mobile-menu-dropdown.active .mobile-menu-plus {
    color: #43b02a;
    font-weight: 700;
    content: '-';
}

/* === MODERN ABOUT & VISION POPUP STYLES === */
.about-vision-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(30,34,40,0.45);
    align-items: center; justify-content: center;
    backdrop-filter: blur(3px) saturate(1.1);
    transition: background 0.45s cubic-bezier(.4,0,.2,1);
}
.about-vision-modal.show { display: flex; }
.about-vision-modal-content {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.18);
    max-width: 900px;
    width: 98vw;
    max-height: 92vh;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.25s cubic-bezier(.4,0,.2,1);
    overflow: hidden;
    opacity: 0;
    transform: scale(0.93) translateY(60px);
    box-shadow: 0 12px 48px 0 rgba(44,62,80,0.18), 0 1.5px 8px 0 rgba(44,62,80,0.10);
    transition: opacity 0.55s cubic-bezier(.22,1,.36,1), transform 0.55s cubic-bezier(.22,1,.36,1), box-shadow 0.35s cubic-bezier(.4,0,.2,1);
}
.about-vision-modal.show .about-vision-modal-content {
    opacity: 1;
    transform: scale(1) translateY(0);
    box-shadow: 0 24px 64px 0 rgba(44,62,80,0.22), 0 2px 12px 0 rgba(44,62,80,0.13);
}
.about-vision-header {
    padding: 2.5rem 2rem 1.5rem 2rem;
    text-align: center;
    background: #f7faf7;
}
.about-vision-title {
    font-size: 2rem;
    font-weight: 700;
    color: #150b3b;
    margin-bottom: 1rem;
}
.about-vision-desc {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 0.5rem;
}
.about-vision-section {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}
.about-vision-section-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #222;
    text-align: center;
}
.about-vision-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
@media (max-width: 900px) {
    .about-vision-cards { grid-template-columns: 1fr; }
}
.about-card {
    background: #f9fdf9;
    border-left: 6px solid #150b3b;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.07);
    padding: 1.5rem 1.5rem 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.about-card-icon {
    font-size: 2rem;
    color: #43b02a;
    margin-bottom: 0.5rem;
}
.about-vision-close {
    position: absolute;
    top: 18px; right: 18px;
    background: #fff;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.about-vision-close:hover {
    background: #f5f6f7;
    color: #43b02a;
    box-shadow: 0 4px 16px rgba(67,176,42,0.10);
}
@media (max-width: 600px) {
    .about-vision-modal-content { max-width: 99vw; padding: 0; border-radius: 0; }
    .about-vision-header, .about-vision-section { padding: 1rem; }
    .about-vision-title { font-size: 1.3rem; }
    .about-vision-section-title { font-size: 1.1rem; }
    .about-vision-close {
        top: 8px;
        right: 8px;
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
    }
}
body.about-vision-modal-open { overflow: hidden; }

.about-vision-banner {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    margin-bottom: 1.5rem;
    display: block;
}

/* === MODERN SUSTAINABILITY POPUP STYLES === */
.sustainability-modal {
    display: none;
    position: fixed;
    z-index: 2100;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(30,34,40,0.45);
    align-items: center; justify-content: center;
    backdrop-filter: blur(3px) saturate(1.1);
    transition: background 0.45s cubic-bezier(.4,0,.2,1);
}
.sustainability-modal.show { display: flex; }
.sustainability-modal-content {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.18);
    max-width: 900px;
    width: 98vw;
    max-height: 92vh;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.25s cubic-bezier(.4,0,.2,1);
    overflow: hidden;
    opacity: 0;
    transform: scale(0.93) translateY(60px);
    box-shadow: 0 12px 48px 0 rgba(44,62,80,0.18), 0 1.5px 8px 0 rgba(44,62,80,0.10);
    transition: opacity 0.55s cubic-bezier(.22,1,.36,1), transform 0.55s cubic-bezier(.22,1,.36,1), box-shadow 0.35s cubic-bezier(.4,0,.2,1);
}
.sustainability-modal.show .sustainability-modal-content {
    opacity: 1;
    transform: scale(1) translateY(0);
    box-shadow: 0 24px 64px 0 rgba(44,62,80,0.22), 0 2px 12px 0 rgba(44,62,80,0.13);
}
.sustainability-header {
    padding: 2.5rem 2rem 1.5rem 2rem;
    text-align: center;
    background: #f7faf7;
}
.sustainability-banner {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    margin-bottom: 1.5rem;
}
.sustainability-title {
    font-size: 2rem;
    font-weight: 700;
    color: #43b02a;
    margin-bottom: 1rem;
}
.sustainability-desc {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 0.5rem;
}
.sustainability-section {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}
.sustainability-section-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #222;
    text-align: center;
}
.sustainability-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
@media (max-width: 900px) {
    .sustainability-cards { grid-template-columns: 1fr; }
}
.s-card {
    background: #f9fdf9;
    border-left: 6px solid #43b02a;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.07);
    padding: 1.5rem 1.5rem 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.s-card-icon {
    font-size: 2rem;
    color: #43b02a;
    margin-bottom: 0.5rem;
}
.sustainability-close {
    position: absolute;
    top: 18px; right: 18px;
    background: #fff;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.sustainability-close:hover {
    background: #f5f6f7;
    color: #43b02a;
    box-shadow: 0 4px 16px rgba(67,176,42,0.13);
}
@media (max-width: 600px) {
    .sustainability-modal-content { max-width: 99vw; padding: 0; border-radius: 0; }
    .sustainability-header, .sustainability-section { padding: 1rem; }
    .sustainability-title { font-size: 1.3rem; }
    .sustainability-section-title { font-size: 1.1rem; }
    .sustainability-close {
        top: 8px;
        right: 8px;
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
    }
}
body.sustainability-modal-open { overflow: hidden; } 

/* === CONTACT & SUPPORT MODAL STYLES === */
.contact-support-modal {
    display: none;
    position: fixed;
    z-index: 2200;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(30,34,40,0.45);
    align-items: center; justify-content: center;
    backdrop-filter: blur(3px) saturate(1.1);
    transition: background 0.45s cubic-bezier(.4,0,.2,1);
}
.contact-support-modal.show { display: flex; }
.contact-support-modal-content {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 48px 0 rgba(44,62,80,0.18), 0 1.5px 8px 0 rgba(44,62,80,0.10);
    max-width: 480px;
    width: 95vw;
    max-height: 92vh;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.25s cubic-bezier(.4,0,.2,1);
    overflow: auto;
    opacity: 0;
    transform: scale(0.93) translateY(60px);
    transition: opacity 0.55s cubic-bezier(.22,1,.36,1), transform 0.55s cubic-bezier(.22,1,.36,1), box-shadow 0.35s cubic-bezier(.4,0,.2,1);
}
.contact-support-modal.show .contact-support-modal-content {
    opacity: 1;
    transform: scale(1) translateY(0);
    box-shadow: 0 24px 64px 0 rgba(44,62,80,0.22), 0 2px 12px 0 rgba(44,62,80,0.13);
}
.contact-support-header {
    padding: 2.2rem 2rem 1.2rem 2rem;
    text-align: center;
    background: #f7faf7;
}
.contact-support-banner {
    width: 100%;
    max-height: 140px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    margin-bottom: 1.2rem;
    display: block;
}
.contact-support-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}
.contact-support-title i {
    color: #43b02a;
    font-size: 1.5rem;
}
.contact-support-desc {
    font-size: 1.08rem;
    color: #444;
    text-align: center;
    margin: 0;
}
.contact-support-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    padding: 1.5rem 2rem 2rem 2rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.form-group label {
    font-size: 1rem;
    color: #222;
    font-weight: 500;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 6px;
}
.form-group input {
    padding: 0.7rem 1rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border 0.2s;
}
.form-group input:focus {
    border-color: #43b02a;
}
.contact-support-submit {
    background: #43b02a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.08rem;
    font-weight: 700;
    padding: 0.9rem 0;
    margin-top: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(67,176,42,0.08);
    transition: background 0.18s;
}
.contact-support-submit:hover {
    background: #388e3c;
}
.contact-support-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #fff;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.contact-support-close:hover {
    background: #f5f6f7;
    color: #43b02a;
    box-shadow: 0 4px 16px rgba(67,176,42,0.10);
}
@media (max-width: 600px) {
    .contact-support-modal-content { max-width: 99vw; padding: 0; border-radius: 0; }
    .contact-support-header, .contact-support-form { padding: 1rem; }
    .contact-support-title { font-size: 1.1rem; }
    .contact-support-close { top: 8px; right: 8px; width: 36px; height: 36px; font-size: 1.5rem; }
}
body.contact-support-modal-open { overflow: hidden; } 

.modern-input {
    position: relative;
    margin-bottom: 1.2rem;
}
.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #43b02a;
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 2;
}
.modern-input input {
    width: 100%;
    padding: 0.7rem 1rem 0.7rem 2.5rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    background: #fff;
    transition: border 0.2s;
    box-sizing: border-box;
}
.modern-input input:focus {
    border-color: #43b02a;
}
.modern-input label {
    position: absolute;
    left: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 1rem;
    background: transparent;
    pointer-events: none;
    transition: 0.18s cubic-bezier(.4,0,.2,1);
    z-index: 3;
}
.modern-input input:focus + label,
.modern-input input:not(:placeholder-shown) + label {
    top: 0.2rem;
    left: 2.2rem;
    font-size: 0.85rem;
    color: #43b02a;
    background: #fff;
    padding: 0 4px;
}
.modern-input textarea {
    width: 100%;
    padding: 0.7rem 1rem 0.7rem 2.5rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    background: #fff;
    transition: border 0.2s;
    box-sizing: border-box;
    min-height: 48px;
    resize: vertical;
}
.modern-input textarea:focus {
    border-color: #43b02a;
}
.modern-input textarea + label {
    position: absolute;
    left: 2.5rem;
    top: 1.1rem;
    color: #888;
    font-size: 1rem;
    background: transparent;
    pointer-events: none;
    transition: 0.18s cubic-bezier(.4,0,.2,1);
    z-index: 3;
}
.modern-input textarea:focus + label,
.modern-input textarea:not(:placeholder-shown) + label {
    top: -0.7rem;
    left: 2.2rem;
    font-size: 0.85rem;
    color: #43b02a;
    background: #fff;
    padding: 0 4px;
} 

/* International Fuel Card Modal Styles */
.modern-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(30, 34, 40, 0.45);
    justify-content: center;
    align-items: center;
    transition: opacity 0.2s;
}
.modern-modal.show { display: flex; }
.modern-modal-content {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    max-width: 700px;
    width: 95vw;
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    position: relative;
    animation: modalIn 0.25s cubic-bezier(.4,2,.6,1) 1;
}
@keyframes modalIn {
    from { transform: translateY(40px) scale(0.98); opacity: 0; }
    to { transform: none; opacity: 1; }
}
.modern-modal-close {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: #fff;
    border: none;
    border-radius: 50%;
    font-size: 2.4rem;
    color: #222;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(67,176,42,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.modern-modal-close:hover {
    background: #eafbe5;
    color: #43b02a;
    box-shadow: 0 4px 16px rgba(67,176,42,0.13);
}
.fuel-card-modal-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.2rem;
}
.fuel-card-img {
    max-width: 180px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(67,176,42,0.10);
    background: #f8f8f8;
}
.fuel-card-modal-body h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 0.7rem;
    text-align: center;
}
.fuel-card-modal-body p {
    color: #444;
    font-size: 1.08rem;
    margin-bottom: 1.2rem;
    text-align: center;
}
.fuel-card-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1.2rem;
    justify-content: center;
    margin-bottom: 1.2rem;
}
.fuel-card-services .service-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f5f6f7;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    color: #222;
    font-weight: 500;
    min-width: 120px;
    box-shadow: 0 1px 4px rgba(67,176,42,0.04);
}
.fuel-card-services .service-item i {
    color: #43b02a;
    font-size: 1.2em;
}
.fuel-card-country-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.08rem;
    color: #222;
    font-weight: 600;
    background: #eafbe5;
    border-radius: 8px;
    padding: 0.5rem 1.2rem;
    margin-top: 0.5rem;
}
.fuel-card-country-count i {
    color: #43b02a;
    font-size: 1.2em;
}
@media (max-width: 600px) {
    .modern-modal-content {
        max-width: 98vw;
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    }
    .fuel-card-img {
        max-width: 120px;
    }
    .fuel-card-modal-body h2 {
        font-size: 1.1rem;
    }
    .fuel-card-modal-body p {
        font-size: 0.98rem;
    }
    .fuel-card-services .service-item {
        font-size: 0.95rem;
        min-width: 90px;
        padding: 0.4rem 0.7rem;
    }
    .fuel-card-country-count {
        font-size: 0.98rem;
        padding: 0.4rem 0.7rem;
    }
} 

.fuel-card-large-modal {
    max-width: 1100px;
    min-height: 600px;
    width: 98vw;
    max-height: 96vh;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-y: auto;
    box-sizing: border-box;
}
.fuel-card-modal-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 0;
    min-height: 520px;
    max-height: 80vh;
    box-sizing: border-box;
}
.fuel-card-modal-left {
    background: linear-gradient(135deg, #f5f6f7 60%, #eafbe5 100%);
    border-radius: 16px 0 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 1.2rem 2rem 1.2rem;
    min-width: 240px;
    max-width: 340px;
    box-sizing: border-box;
    border-right: 1.5px solid #e0e0e0;
}
.fuel-card-modal-left h2 {
    font-size: 1.45rem;
    font-weight: 800;
    color: #222;
    margin: 1.2rem 0 0.7rem 0;
    text-align: center;
}
.fuel-card-modal-left .fuel-card-country-count {
    margin: 0.7rem 0 1.2rem 0;
}
.fuel-card-modal-left .fuel-card-services {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    width: 100%;
    margin-top: 0.5rem;
}
.fuel-card-modal-left .service-item {
    background: #fff;
    border: 1.5px solid #eafbe5;
    border-radius: 8px;
    padding: 0.7rem 1rem;
    font-size: 1.05rem;
    color: #222;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: 0 1px 4px rgba(67,176,42,0.04);
    transition: box-shadow 0.18s;
}
.fuel-card-modal-left .service-item i {
    color: #43b02a;
    font-size: 1.25em;
}
.fuel-card-modal-right {
    padding: 2.5rem 2.2rem 2rem 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: #fff;
    border-radius: 0 16px 16px 0;
    min-width: 0;
    max-height: 80vh;
    height: 100%;
    box-sizing: border-box;
    overflow-y: auto;
}
.fuel-card-desc-scroll {
    flex: 1 1 auto;
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 8px;
    font-size: 1.13rem;
    color: #222;
    line-height: 1.7;
    scrollbar-width: thin;
    scrollbar-color: #43b02a #eafbe5;
    margin-bottom: 0;
}
.fuel-card-desc-scroll h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: #43b02a;
    margin-bottom: 0.7rem;
}
.fuel-card-desc-scroll b {
    color: #150b3b;
}
.fuel-card-desc-scroll::-webkit-scrollbar {
    width: 7px;
    background: #eafbe5;
    border-radius: 8px;
}
.fuel-card-desc-scroll::-webkit-scrollbar-thumb {
    background: #43b02a;
    border-radius: 8px;
}
.modern-modal-close {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: #fff;
    border: none;
    border-radius: 50%;
    font-size: 2.4rem;
    color: #222;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(67,176,42,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.modern-modal-close:hover {
    background: #eafbe5;
    color: #43b02a;
    box-shadow: 0 4px 16px rgba(67,176,42,0.13);
}

@media (max-width: 900px) {
    .fuel-card-large-modal {
        max-width: 99vw;
        min-width: 0;
        padding: 0;
        max-height: 98vh;
    }
    .fuel-card-modal-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        min-height: unset;
        max-height: 98vh;
    }
    .fuel-card-modal-left, .fuel-card-modal-right {
        border-radius: 0;
        max-width: 100vw;
        min-width: 0;
        padding: 1.5rem 1rem 1.5rem 1rem;
    }
    .fuel-card-modal-left {
        border-right: none;
        border-bottom: 1.5px solid #e0e0e0;
    }
    .fuel-card-modal-right {
        border-radius: 0 0 16px 16px;
        padding-bottom: 1.2rem;
        height: auto;
        min-height: 0;
        max-height: 60vh;
    }
    .fuel-card-desc-scroll {
        max-height: 40vh;
        font-size: 1.01rem;
        margin-bottom: 0;
    }
    .modern-modal-close {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
        font-size: 1.7rem;
    }
}
@media (max-width: 600px) {
    .fuel-card-large-modal {
        padding: 0;
        max-width: 100vw;
        max-height: 100vh;
        min-height: 0;
    }
    .fuel-card-modal-left, .fuel-card-modal-right {
        padding: 1rem 0.5rem 1rem 0.5rem;
    }
    .fuel-card-desc-scroll {
        max-height: 30vh;
        font-size: 0.97rem;
        margin-bottom: 0;
    }
    .modern-modal-close {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
        font-size: 1.3rem;
    }
} 

.tolls-large-modal {
    max-width: 900px;
    min-height: 520px;
    width: 98vw;
    max-height: 92vh;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-y: auto;
    box-sizing: border-box;
}
.tolls-modal-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 0;
    min-height: 520px;
    max-height: 80vh;
    box-sizing: border-box;
}
.tolls-modal-left {
    background: linear-gradient(135deg, #f5f6f7 60%, #e0f3fb 100%);
    border-radius: 16px 0 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 1.2rem 2rem 1.2rem;
    min-width: 240px;
    max-width: 340px;
    box-sizing: border-box;
    border-right: 1.5px solid #e0e0e0;
}
.tolls-img {
    max-width: 180px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(67,176,42,0.10);
    background: #f8f8f8;
    margin-bottom: 1.2rem;
}
.tolls-modal-left h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #222;
    margin: 1.2rem 0 0.7rem 0;
    text-align: center;
}
.tolls-services {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    width: 100%;
    margin-top: 0.5rem;
}
.tolls-services .service-item {
    background: #fff;
    border: 1.5px solid #e0f3fb;
    border-radius: 8px;
    padding: 0.7rem 1rem;
    font-size: 1.05rem;
    color: #222;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: 0 1px 4px rgba(67,176,42,0.04);
    transition: box-shadow 0.18s;
}
.tolls-services .service-item i {
    color: #2196f3;
    font-size: 1.25em;
}
.tolls-modal-right {
    padding: 2.5rem 2.2rem 2rem 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: #fff;
    border-radius: 0 16px 16px 0;
    min-width: 0;
    max-height: 80vh;
    height: 100%;
    box-sizing: border-box;
    overflow-y: auto;
}
.tolls-desc-scroll {
    flex: 1 1 auto;
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 8px;
    font-size: 1.13rem;
    color: #222;
    line-height: 1.7;
    scrollbar-width: thin;
    scrollbar-color: #2196f3 #e0f3fb;
    margin-bottom: 0;
}
.tolls-country-count {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    font-size: 1.08rem;
    color: #222;
    font-weight: 600;
    background: #e0f3fb;
    border-radius: 8px;
    padding: 0.5rem 1.2rem;
    margin-top: 1.2rem;
}
.tolls-country-count i {
    color: #2196f3;
    font-size: 1.2em;
}
@media (max-width: 900px) {
    .tolls-large-modal {
        max-width: 99vw;
        min-width: 0;
        padding: 0;
        max-height: 98vh;
    }
    .tolls-modal-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        min-height: unset;
        max-height: 98vh;
    }
    .tolls-modal-left, .tolls-modal-right {
        border-radius: 0;
        max-width: 100vw;
        min-width: 0;
        padding: 1.5rem 1rem 1.5rem 1rem;
    }
    .tolls-modal-left {
        border-right: none;
        border-bottom: 1.5px solid #e0e0e0;
    }
    .tolls-modal-right {
        border-radius: 0 0 16px 16px;
        padding-bottom: 1.2rem;
        height: auto;
        min-height: 0;
        max-height: 60vh;
    }
    .tolls-desc-scroll {
        max-height: 40vh;
        font-size: 1.01rem;
        margin-bottom: 0;
    }
    .modern-modal-close {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
        font-size: 1.7rem;
    }
}
@media (max-width: 600px) {
    .tolls-large-modal {
        padding: 0;
        max-width: 100vw;
        max-height: 100vh;
    }
    .tolls-modal-left, .tolls-modal-right {
        padding: 1rem 0.5rem 1rem 0.5rem;
    }
    .tolls-desc-scroll {
        max-height: 30vh;
        font-size: 0.97rem;
        margin-bottom: 0;
    }
    .modern-modal-close {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
        font-size: 1.3rem;
    }
} 

.tolls-large-modal .modern-modal-close {
  top: 12px;
  right: 12px;
  z-index: 20;
  width: 24px;
  height: 24px;
  font-size: 1.05rem;
}
@media (max-width: 600px) {
  .tolls-large-modal .modern-modal-close {
    top: 6px;
    right: 6px;
    width: 20px;
    height: 20px;
    font-size: 0.95rem;
  }
}

/* ... mevcut kod ... */
.tax-refund-large-modal {
  max-width: 900px;
  min-height: 480px;
  width: 98vw;
  max-height: 92vh;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-y: auto;
  box-sizing: border-box;
}
.tax-refund-modal-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  min-height: 480px;
  max-height: 80vh;
  box-sizing: border-box;
}
.tax-refund-modal-left {
  background: linear-gradient(135deg, #f5f6f7 60%, #eafbe5 100%);
  border-radius: 16px 0 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1.2rem 2rem 1.2rem;
  min-width: 240px;
  max-width: 340px;
  box-sizing: border-box;
  border-right: 1.5px solid #e0e0e0;
}
.tax-refund-img {
  max-width: 180px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(67,176,42,0.10);
  background: #f8f8f8;
  margin-bottom: 1.2rem;
}
.tax-refund-modal-left h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #222;
  margin: 1.2rem 0 0.7rem 0;
  text-align: center;
}
.tax-refund-short-desc {
  font-size: 1.05rem;
  color: #444;
  text-align: center;
  margin-bottom: 1.2rem;
}
.tax-refund-modal-right {
  padding: 2.5rem 2.2rem 2rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: #fff;
  border-radius: 0 16px 16px 0;
  min-width: 0;
  max-height: 80vh;
  height: 100%;
  box-sizing: border-box;
  overflow-y: auto;
}
.tax-refund-advantages {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.2rem;
  width: 100%;
}
.advantage-card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #f5f6f7;
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-size: 1.08rem;
  color: #222;
  font-weight: 500;
  box-shadow: 0 1px 4px rgba(67,176,42,0.04);
}
.advantage-card i {
  color: #43b02a;
  font-size: 1.25em;
}
.tax-refund-desc-scroll {
  flex: 1 1 auto;
  max-height: 40vh;
  overflow-y: auto;
  padding-right: 8px;
  font-size: 1.13rem;
  color: #222;
  line-height: 1.7;
  scrollbar-width: thin;
  scrollbar-color: #43b02a #eafbe5;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .tax-refund-large-modal {
    max-width: 99vw;
    min-width: 0;
    padding: 0;
    max-height: 98vh;
  }
  .tax-refund-modal-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: unset;
    max-height: 98vh;
  }
  .tax-refund-modal-left, .tax-refund-modal-right {
    border-radius: 0;
    max-width: 100vw;
    min-width: 0;
    padding: 1.5rem 1rem 1.5rem 1rem;
  }
  .tax-refund-modal-left {
    border-right: none;
    border-bottom: 1.5px solid #e0e0e0;
  }
  .tax-refund-modal-right {
    border-radius: 0 0 16px 16px;
    padding-bottom: 1.2rem;
    height: auto;
    min-height: 0;
    max-height: 60vh;
  }
  .tax-refund-desc-scroll {
    max-height: 30vh;
    font-size: 1.01rem;
    margin-bottom: 0;
  }
}
@media (max-width: 600px) {
  .tax-refund-large-modal {
    padding: 0;
    max-width: 100vw;
    max-height: 100vh;
  }
  .tax-refund-modal-left, .tax-refund-modal-right {
    padding: 1rem 0.5rem 1rem 0.5rem;
  }
  .tax-refund-desc-scroll {
    max-height: 18vh;
    font-size: 0.97rem;
    margin-bottom: 0;
  }
}

/* ... mevcut kod ... */
.tax-app-modal-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  min-height: 420px;
  max-height: 80vh;
  box-sizing: border-box;
}
.tax-app-modal-left {
  background: linear-gradient(135deg, #f5f6f7 60%, #eafbe5 100%);
  border-radius: 16px 0 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1.2rem 2rem 1.2rem;
  min-width: 220px;
  max-width: 320px;
  box-sizing: border-box;
  border-right: 1.5px solid #e0e0e0;
}
.tax-app-logo {
  max-width: 210px;
  width: 100%;
  border-radius: 18px;
  margin-bottom: 1.7rem;
  background: #fff;
  box-shadow: 0 2px 12px rgba(67,176,42,0.10);
}
.tax-app-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #222;
  margin: 1.2rem 0 0.7rem 0;
  text-align: center;
}
.tax-app-modal-right {
  padding: 2.5rem 2.2rem 2rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: #fff;
  border-radius: 0 16px 16px 0;
  min-width: 0;
  max-height: 80vh;
  height: 100%;
  box-sizing: border-box;
  overflow-y: auto;
}
.tax-app-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
  margin-bottom: 1.5rem;
}
.tax-app-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: #f5f6f7;
  border-radius: 16px;
  padding: 1.1rem 1.3rem;
  font-size: 1.13rem;
  color: #222;
  font-weight: 500;
  box-shadow: 0 1px 4px rgba(67,176,42,0.04);
  transition: box-shadow 0.18s;
}
.tax-app-card-icon {
  background: #eafbe5;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #43b02a;
}
.tax-app-card-title {
  font-size: 1.13rem;
  font-weight: 700;
  color: #2e7d32;
  margin-bottom: 0.2rem;
}
.tax-app-card-desc {
  font-size: 1.01rem;
  color: #444;
  font-weight: 400;
}
.tax-app-bottom-row {
  display: flex;
  gap: 1.5rem;
  width: 100%;
  justify-content: center;
  margin-top: 1.5rem;
}
.tax-app-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f5f6f7;
  border-radius: 14px;
  padding: 1rem 1.5rem;
  font-size: 1.08rem;
  color: #222;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(67,176,42,0.04);
  cursor: pointer;
  transition: background 0.18s;
}
.tax-app-bottom-btn i {
  color: #43b02a;
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}
@media (max-width: 900px) {
  .tax-app-modal-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: unset;
    max-height: 98vh;
  }
  .tax-app-modal-left, .tax-app-modal-right {
    border-radius: 0;
    max-width: 100vw;
    min-width: 0;
    padding: 1.5rem 1rem 1.5rem 1rem;
  }
  .tax-app-modal-left {
    border-right: none;
    border-bottom: 1.5px solid #e0e0e0;
  }
  .tax-app-modal-right {
    border-radius: 0 0 16px 16px;
    padding-bottom: 1.2rem;
    height: auto;
    min-height: 0;
    max-height: 60vh;
  }
}
@media (max-width: 600px) {
  .tax-app-modal-grid {
    padding: 0;
    max-width: 100vw;
    max-height: 100vh;
  }
  .tax-app-modal-left, .tax-app-modal-right {
    padding: 1rem 0.5rem 1rem 0.5rem;
  }
  .tax-app-card {
    padding: 0.7rem 0.7rem;
    font-size: 0.97rem;
  }
  .tax-app-card-icon {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
  .tax-app-bottom-row {
    gap: 0.7rem;
    margin-top: 1rem;
  }
  .tax-app-bottom-btn {
    padding: 0.7rem 0.7rem;
    font-size: 0.97rem;
  }
}

/* ... mevcut kod ... */
.tax-app-desc {
  font-size: 1.08rem;
  color: #444;
  margin-top: 1.7rem;
  text-align: left;
  line-height: 1.7;
  background: #f5f6f7;
  border-radius: 12px;
  padding: 1.1rem 1.3rem;
  box-shadow: 0 1px 4px rgba(67,176,42,0.04);
}
@media (max-width: 600px) {
  .tax-app-desc {
    font-size: 0.97rem;
    padding: 0.7rem 0.7rem;
    margin-top: 1rem;
  }
}

/* ... mevcut kod ... */
.tax-refund-large-modal .modern-modal-close {
  width: 28px;
  height: 28px;
  font-size: 1.1rem;
}
@media (max-width: 600px) {
  .tax-refund-large-modal .modern-modal-close {
    width: 22px;
    height: 22px;
    font-size: 0.95rem;
  }
}

/* ... mevcut kod ... */
.customer-service-large-modal {
  max-width: 900px;
  min-height: 480px;
  width: 98vw;
  max-height: 92vh;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-y: auto;
  box-sizing: border-box;
}
.customer-service-modal-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  min-height: 480px;
  max-height: 80vh;
  box-sizing: border-box;
}
.customer-service-modal-left {
  background: linear-gradient(135deg, #f5f6f7 60%, #e0f3fb 100%);
  border-radius: 16px 0 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1.2rem 2rem 1.2rem;
  min-width: 220px;
  max-width: 320px;
  box-sizing: border-box;
  border-right: 1.5px solid #e0e0e0;
}
.customer-service-img {
  max-width: 140px;
  width: 100%;
  border-radius: 18px;
  margin-bottom: 1.2rem;
  background: #fff;
  box-shadow: 0 2px 12px rgba(67,176,42,0.10);
}
.customer-service-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #2196f3;
  margin: 1.2rem 0 0.7rem 0;
  text-align: center;
}
.customer-service-modal-right {
  padding: 2.5rem 2.2rem 2rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: #fff;
  border-radius: 0 16px 16px 0;
  min-width: 0;
  max-height: 80vh;
  height: 100%;
  box-sizing: border-box;
  overflow-y: auto;
}
.customer-service-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
  margin-bottom: 1.5rem;
}
.customer-service-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: #f5f6f7;
  border-radius: 16px;
  padding: 1.1rem 1.3rem;
  font-size: 1.13rem;
  color: #222;
  font-weight: 500;
  box-shadow: 0 1px 4px rgba(67,176,42,0.04);
  transition: box-shadow 0.18s;
}
.customer-service-card-icon {
  background: #e0f3fb;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #2196f3;
}
.customer-service-card-title {
  font-size: 1.13rem;
  font-weight: 700;
  color: #2196f3;
  margin-bottom: 0.2rem;
}
.customer-service-card-desc {
  font-size: 1.01rem;
  color: #444;
  font-weight: 400;
}
.customer-service-bottom-row {
  display: flex;
  gap: 1.5rem;
  width: 100%;
  justify-content: center;
  margin-top: 1.5rem;
}
.customer-service-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f5f6f7;
  border-radius: 14px;
  padding: 1rem 1.5rem;
  font-size: 1.08rem;
  color: #222;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(67,176,42,0.04);
  cursor: pointer;
  transition: background 0.18s;
}
.customer-service-bottom-btn i {
  color: #2196f3;
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}
.customer-service-desc {
  font-size: 1.08rem;
  color: #444;
  margin-top: 1.7rem;
  text-align: left;
  line-height: 1.7;
  background: #f5f6f7;
  border-radius: 12px;
  padding: 1.1rem 1.3rem;
  box-shadow: 0 1px 4px rgba(67,176,42,0.04);
}
@media (max-width: 900px) {
  .customer-service-modal-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: unset;
    max-height: 98vh;
  }
  .customer-service-modal-left, .customer-service-modal-right {
    border-radius: 0;
    max-width: 100vw;
    min-width: 0;
    padding: 1.5rem 1rem 1.5rem 1rem;
  }
  .customer-service-modal-left {
    border-right: none;
    border-bottom: 1.5px solid #e0e0e0;
  }
  .customer-service-modal-right {
    border-radius: 0 0 16px 16px;
    padding-bottom: 1.2rem;
    height: auto;
    min-height: 0;
    max-height: 60vh;
  }
}
@media (max-width: 600px) {
  .customer-service-modal-grid {
    padding: 0;
    max-width: 100vw;
    max-height: 100vh;
  }
  .customer-service-modal-left, .customer-service-modal-right {
    padding: 1rem 0.5rem 1rem 0.5rem;
  }
  .customer-service-card {
    padding: 0.7rem 0.7rem;
    font-size: 0.97rem;
  }
  .customer-service-card-icon {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
  .customer-service-bottom-row {
    gap: 0.7rem;
    margin-top: 1rem;
  }
  .customer-service-bottom-btn {
    padding: 0.7rem 0.7rem;
    font-size: 0.97rem;
  }
  .customer-service-desc {
    font-size: 0.97rem;
    padding: 0.7rem 0.7rem;
    margin-top: 1rem;
  }
}

/* ... mevcut kod ... */
.customer-service-badge {
  margin: 1.1rem 0 0.7rem 0;
  background: #e0f3fb;
  color: #2196f3;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 10px;
  padding: 0.7rem 1.1rem;
  text-align: center;
  box-shadow: 0 1px 4px rgba(33,150,243,0.07);
}
@media (max-width: 600px) {
  .customer-service-badge {
    font-size: 0.97rem;
    padding: 0.5rem 0.6rem;
    margin: 0.7rem 0 0.5rem 0;
  }
}

/* ... mevcut kod ... */
.customer-service-info-cards {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 0.7rem;
  width: 100%;
  align-items: center;
}
.customer-service-info-card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(33,150,243,0.07);
  padding: 0.7rem 1.1rem;
  font-size: 1.05rem;
  color: #2196f3;
  font-weight: 600;
  min-width: 0;
  width: 90%;
  justify-content: center;
}
.customer-service-info-card i {
  font-size: 1.3rem;
  color: #2196f3;
}
@media (max-width: 600px) {
  .customer-service-info-card {
    font-size: 0.97rem;
    padding: 0.5rem 0.6rem;
  }
}

/* ... mevcut kod ... */
.customer-service-large-modal .modern-modal-close {
  width: 20px;
  height: 20px;
  font-size: 0.95rem;
}
@media (max-width: 600px) {
  .customer-service-large-modal .modern-modal-close {
    width: 16px;
    height: 16px;
    font-size: 0.85rem;
  }
}

/* ... mevcut kod ... */
.special-offers-large-modal {
  max-width: 900px;
  min-height: 480px;
  width: 98vw;
  max-height: 92vh;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-y: auto;
  box-sizing: border-box;
}
.special-offers-modal-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  min-height: 480px;
  max-height: 80vh;
  box-sizing: border-box;
}
.special-offers-modal-left {
  background: linear-gradient(135deg, #f5f6f7 60%, #fffbe5 100%);
  border-radius: 16px 0 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1.2rem 2rem 1.2rem;
  min-width: 220px;
  max-width: 320px;
  box-sizing: border-box;
  border-right: 1.5px solid #e0e0e0;
}
.special-offers-img {
  max-width: 140px;
  width: 100%;
  border-radius: 18px;
  margin-bottom: 1.2rem;
  background: #fff;
  box-shadow: 0 2px 12px rgba(255,214,0,0.10);
}
.special-offers-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ff9800;
  margin: 1.2rem 0 0.7rem 0;
  text-align: center;
}
.special-offers-modal-right {
  padding: 2.5rem 2.2rem 2rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: #fff;
  border-radius: 0 16px 16px 0;
  min-width: 0;
  max-height: 80vh;
  height: 100%;
  box-sizing: border-box;
  overflow-y: auto;
}
.special-offers-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
  margin-bottom: 1.5rem;
}
.special-offers-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: #fffbe5;
  border-radius: 16px;
  padding: 1.1rem 1.3rem;
  font-size: 1.13rem;
  color: #222;
  font-weight: 500;
  box-shadow: 0 1px 4px rgba(255,214,0,0.04);
  border: 1.5px solid #fff3c0;
  transition: box-shadow 0.18s;
}
.special-offers-card-icon {
  background: #fff3c0;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ff9800;
}
.special-offers-card-title {
  font-size: 1.13rem;
  font-weight: 700;
  color: #ff9800;
  margin-bottom: 0.2rem;
}
.special-offers-card-desc {
  font-size: 1.01rem;
  color: #444;
  font-weight: 400;
}
.special-offers-bottom-row {
  display: flex;
  gap: 1.5rem;
  width: 100%;
  justify-content: center;
  margin-top: 1.5rem;
}
.special-offers-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fffbe5;
  border-radius: 14px;
  padding: 1rem 1.5rem;
  font-size: 1.08rem;
  color: #222;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(255,214,0,0.04);
  cursor: pointer;
  transition: background 0.18s;
}
.special-offers-bottom-btn i {
  color: #ff9800;
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}
.special-offers-desc {
  font-size: 1.08rem;
  color: #444;
  margin-top: 1.7rem;
  text-align: left;
  line-height: 1.7;
  background: #fffbe5;
  border-radius: 12px;
  padding: 1.1rem 1.3rem;
  box-shadow: 0 1px 4px rgba(255,214,0,0.04);
}
@media (max-width: 900px) {
  .special-offers-modal-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: unset;
    max-height: 98vh;
  }
  .special-offers-modal-left, .special-offers-modal-right {
    border-radius: 0;
    max-width: 100vw;
    min-width: 0;
    padding: 1.5rem 1rem 1.5rem 1rem;
  }
  .special-offers-modal-left {
    border-right: none;
    border-bottom: 1.5px solid #e0e0e0;
  }
  .special-offers-modal-right {
    border-radius: 0 0 16px 16px;
    padding-bottom: 1.2rem;
    height: auto;
    min-height: 0;
    max-height: 60vh;
  }
}
@media (max-width: 600px) {
  .special-offers-modal-grid {
    padding: 0;
    max-width: 100vw;
    max-height: 100vh;
  }
  .special-offers-modal-left, .special-offers-modal-right {
    padding: 1rem 0.5rem 1rem 0.5rem;
  }
  .special-offers-card {
    padding: 0.7rem 0.7rem;
    font-size: 0.97rem;
  }
  .special-offers-card-icon {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
  .special-offers-bottom-row {
    gap: 0.7rem;
    margin-top: 1rem;
  }
  .special-offers-bottom-btn {
    padding: 0.7rem 0.7rem;
    font-size: 0.97rem;
  }
  .special-offers-desc {
    font-size: 0.97rem;
    padding: 0.7rem 0.7rem;
    margin-top: 1rem;
  }
}

.special-offers-left-desc {
  font-size: 1.04rem;
  color: #ff9800;
  font-weight: 600;
  margin: 0.7rem 0 0.5rem 0;
  text-align: center;
}
.special-offers-left-list {
  list-style: none;
  padding: 0;
  margin: 0.2rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: flex-start;
}
.special-offers-left-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.99rem;
  color: #444;
  background: #fffbe5;
  border-radius: 8px;
  padding: 0.3rem 0.7rem;
  font-weight: 500;
}
.special-offers-left-list i {
  color: #ff9800;
  font-size: 1.1rem;
}
@media (max-width: 900px) {
  .special-offers-left-desc { font-size: 0.97rem; }
  .special-offers-left-list li { font-size: 0.93rem; padding: 0.2rem 0.5rem; }
}

.special-offers-large-modal .modern-modal-close {
  width: 32px;
  height: 32px;
  font-size: 1.3rem;
  top: 16px;
  right: 16px;
}
@media (max-width: 600px) {
  .special-offers-large-modal .modern-modal-close {
    width: 24px;
    height: 24px;
    font-size: 1rem;
    top: 8px;
    right: 8px;
  }
}

.form-group input,
.form-group textarea,
.modern-input input,
.modern-input textarea {
    padding-left: 44px !important;
}
.form-group label,
.modern-input label {
    left: 44px !important;
}