/* ========================================
   VARIABLES
======================================== */
:root {
    --orange: #FF7F00;
    --orange-dark: #E67300;
    --blue-dark: #0A1931;
    --text-dark: #1a1a2e;
    --text-gray: #6c757d;
    --white: #ffffff;
    --bg-light: #f8f9fc;
    --shadow: 0 5px 20px rgba(0,0,0,0.08);
    --shadow-orange: 0 8px 25px rgba(255,127,0,0.35);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-pill: 50px;
}

/* ========================================
   BASE
======================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
.container { max-width: 1140px; }

/* ========================================
   FAKE NOTIFICATION - SOL ALT (PREMIUM)
======================================== */
.main-footer ul {
    padding-left:0px !important;
}
.fake-notification {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 16px;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.12),
        0 2px 10px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.8);
    padding: 16px 18px;
    width: 340px;
    max-width: calc(100vw - 40px);
    z-index: 9998;
    transform: translateX(-400px) scale(0.9);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(0,0,0,0.04);
}
.fake-notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), #FF9F43, var(--orange));
    border-radius: 0 0 3px 3px;
}
.fake-notification.show {
    transform: translateX(0) scale(1);
    opacity: 1;
}
.fake-notification.show {
    animation: notifBounce 0.6s ease;
}
@keyframes notifBounce {
    0% { transform: translateX(-400px) scale(0.9); }
    60% { transform: translateX(10px) scale(1.02); }
    80% { transform: translateX(-5px) scale(0.98); }
    100% { transform: translateX(0) scale(1); }
}

.notif-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    font-size: 14px;
    color: #999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.notif-close:hover {
    background: #fee;
    color: #e53935;
    transform: rotate(90deg);
}

.notif-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.notif-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.notif-text {
    flex: 1;
    min-width: 0;
}

.notif-message {
    font-size: 13px;
    color: var(--text-dark);
    margin: 0 0 6px;
    line-height: 1.5;
    font-weight: 400;
}
.notif-message strong {
    color: var(--orange);
    font-weight: 600;
}

.notif-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.notif-time {
    font-size: 11px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 4px;
}
.notif-time i {
    font-size: 10px;
}

.notif-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
    font-size: 9px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.notif-badge i { 
    font-size: 9px;
    animation: checkPulse 2s infinite;
}
@keyframes checkPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Notification hide animation */
.fake-notification.hiding {
    transform: translateX(-400px) scale(0.9);
    opacity: 0;
}

/* ========================================
   SAĞ ALT FLOATING BUTONLAR
======================================== */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}
.float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}
.float-btn:hover {
    transform: scale(1.08);
}

/* Teklif Al Butonu */
.teklif-btn {
    background: linear-gradient(135deg, #FF7F00, #FF9F43);
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(255,127,0,0.4);
}
.teklif-btn i { font-size: 14px; }
.teklif-btn:hover {
    box-shadow: 0 12px 35px rgba(255,127,0,0.5);
}

/* WhatsApp Butonu */
.whatsapp-btn {
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}
.whatsapp-btn i {
    color: #fff;
    font-size: 26px;
}
.whatsapp-btn:hover {
    box-shadow: 0 12px 35px rgba(37,211,102,0.5);
}

/* ========================================
   WHATSAPP POPUP
======================================== */
.whatsapp-popup {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 340px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    z-index: 10000;
    overflow: hidden;
    transform: scale(0) translateY(20px);
    transform-origin: bottom right;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.whatsapp-popup.show {
    transform: scale(1) translateY(0);
    opacity: 1;
}
.wp-header {
    background: linear-gradient(135deg, #075E54, #128C7E);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wp-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.wp-header-info img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
}
.wp-header-info h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}
.wp-header-info span {
    color: rgba(255,255,255,0.8);
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.wp-header-info span i {
    color: #25D366;
    font-size: 8px;
}
.wp-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}
.wp-body {
    background: #E5DDD5 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEwAACxMBAJqcGAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAABDSURBVGiB7c4xDQAwDMCw5l/0bDJIXPQKyNnuHgCAf9m9ewQA4BdGAIAYIwBAjBEAIMYIABBjBACIMQIAxBgBAGKuB+kBCfFsRbYAAAAASUVORK5CYII=');
    padding: 20px 15px;
    min-height: 120px;
}
.wp-message {
    background: #fff;
    padding: 12px 15px;
    border-radius: 0 12px 12px 12px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    position: relative;
    max-width: 85%;
}
.wp-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    border-width: 0 8px 8px 0;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
}
.wp-message p {
    font-size: 13px;
    color: #333;
    margin: 0 0 5px;
    line-height: 1.5;
}
.wp-time {
    font-size: 10px;
    color: #999;
    display: block;
    text-align: right;
}
.wp-footer {
    padding: 15px;
    background: #f5f5f5;
}
.wp-start-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
}
.wp-start-btn:hover {
    background: #20BD5A;
    color: #fff;
}
.wp-start-btn i { font-size: 18px; }

/* ========================================
   TEKLİF AL POPUP
======================================== */
.teklif-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.teklif-overlay.show {
    opacity: 1;
    visibility: visible;
}
.teklif-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 90%;
    max-width: 480px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
    z-index: 10002;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.teklif-popup.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}
.teklif-header {
    background: linear-gradient(135deg, #FF7F00, #FF9F43);
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.teklif-header-content {
    display: flex;
    align-items: center;
    gap: 15px;
}
.teklif-icon {
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.teklif-icon i {
    color: #fff;
    font-size: 24px;
}
.teklif-header h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 3px;
}
.teklif-header p {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    margin: 0;
}
.teklif-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.teklif-close:hover {
    background: rgba(255,255,255,0.3);
}
.teklif-body {
    padding: 25px;
}
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.form-group {
    flex: 1;
}
.form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.form-group label i {
    color: var(--orange);
    font-size: 12px;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255,127,0,0.1);
}
.form-group input::placeholder {
    color: #aaa;
}
.teklif-submit {
    width: 100%;
    background: linear-gradient(135deg, #FF7F00, #FF9F43);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(255,127,0,0.3);
    transition: all 0.3s ease;
    margin-top: 5px;
}
.teklif-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255,127,0,0.4);
}
.teklif-trust {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-gray);
}
.trust-item i {
    color: #43a047;
    font-size: 12px;
}

/* Teklif Success */
.teklif-success {
    position: absolute;
    inset: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.teklif-success.show {
    opacity: 1;
    visibility: visible;
}
.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #43a047, #66bb6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    animation: successPop 0.5s ease;
}
.success-icon i {
    color: #fff;
    font-size: 40px;
}
@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
.teklif-success h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.teklif-success p {
    font-size: 14px;
    color: var(--text-gray);
}

/* ========================================
   HEADER
======================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}
.main-header .navbar { 
    padding: 8px 0; 
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main-header .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.main-header .logo { height: 30px; }
.brand-badge {
    display: flex;
    flex-direction: column;
    padding-left: 10px;
    border-left: 1px solid #e0e0e0;
    line-height: 1.2;
}
.brand-badge span { font-size: 10px; font-weight: 600; color: var(--blue-dark); }
.brand-badge small { font-size: 9px; color: var(--text-gray); }

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
}
.desktop-nav .navbar-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}
.main-header .nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 12px !important;
}
.main-header .nav-link:hover { color: var(--orange); }
.main-header .nav-link i { font-size: 8px; margin-left: 3px; }
.main-header .nav-link.active-link { color: var(--orange); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.btn-cta-orange {
    background: linear-gradient(135deg, #FF7F00, #FF9F43);
    color: #fff !important;
    font-size: 11px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-orange);
}
.btn-cta-orange:hover { transform: translateY(-2px); }
.search-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
    color: var(--text-gray);
    font-size: 13px;
}
.search-btn:hover { background: var(--orange); color: #fff; }

.header-support {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #e8f5e9;
    color: #4CAF50;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    margin-left: 15px;
}
.header-support i { font-size: 12px; }

/* ========================================
   PREMIUM MOBILE MENU TOGGLE
======================================== */
.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #f8f9fa, #fff);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.mobile-menu-toggle:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}
.mobile-menu-toggle.active {
    background: linear-gradient(135deg, #FF7F00, #FF9F43);
}
.hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 14px;
}
.hamburger .line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--blue-dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.mobile-menu-toggle.active .line {
    background: #fff;
}
.line-1 { top: 0; }
.line-2 { top: 50%; transform: translateY(-50%); }
.line-3 { bottom: 0; }

.mobile-menu-toggle.active .line-1 {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.mobile-menu-toggle.active .line-2 {
    opacity: 0;
    transform: translateX(10px);
}
.mobile-menu-toggle.active .line-3 {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* ========================================
   PREMIUM MOBILE MENU
======================================== */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 25, 49, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.mobile-menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #fff;
    z-index: 1002;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}
.mobile-menu.show {
    transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
    background: linear-gradient(135deg, #fafafa, #fff);
}
.mobile-menu-header img {
    height: 28px;
}
.mobile-menu-close {
    width: 44px;
    height: 44px;
    background: #f5f5f5;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 16px;
    transition: all 0.3s ease;
}
.mobile-menu-close:hover {
    background: #fee;
    color: #e53935;
}

/* Mobile Menu Body */
.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

/* Quick Actions */
.mobile-quick-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.quick-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.quick-action-btn.primary {
    background: linear-gradient(135deg, #FF7F00, #FF9F43);
    color: #fff;
    box-shadow: 0 5px 20px rgba(255,127,0,0.3);
}
.quick-action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,127,0,0.4);
}
.quick-action-btn.secondary {
    background: #e8f5e9;
    color: #43a047;
}
.quick-action-btn.secondary:hover {
    background: #c8e6c9;
}
.quick-action-btn i {
    font-size: 14px;
}

/* Mobile Search */
.mobile-search {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f5f7fa;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 20px;
}
.mobile-search i {
    color: var(--text-gray);
    font-size: 16px;
}
.mobile-search input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: var(--text-dark);
}
.mobile-search input::placeholder {
    color: #aaa;
}
.mobile-search input:focus {
    outline: none;
}

/* Mobile Navigation */
.mobile-nav {
    margin-bottom: 25px;
}
.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}
.mobile-nav-item:last-child {
    border-bottom: none;
}
.mobile-nav-item:hover {
    padding-left: 5px;
}
.mobile-nav-item:hover .nav-item-icon {
    background: linear-gradient(135deg, #FF7F00, #FF9F43);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255,127,0,0.3);
}
.nav-item-icon {
    width: 42px;
    height: 42px;
    background: #f5f7fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 16px;
    transition: all 0.3s ease;
}
.nav-item-content {
    flex: 1;
}
.nav-item-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}
.nav-item-desc {
    display: block;
    font-size: 11px;
    color: var(--text-gray);
}
.mobile-nav-item > i {
    color: #ccc;
    font-size: 12px;
}

/* Mobile Section */
.mobile-section {
    margin-bottom: 20px;
}
.mobile-section h4 {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.mobile-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.mobile-city-tag {
    background: #f5f7fa;
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 20px;
    transition: all 0.3s ease;
}
.mobile-city-tag:hover {
    background: var(--orange);
    color: #fff;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    padding: 18px 20px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}
.mobile-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}
.mobile-social a {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}
.mobile-social a:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-2px);
}
.mobile-contact {
    text-align: center;
}
.mobile-contact a {
    font-size: 12px;
    color: var(--text-gray);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.mobile-contact a:hover {
    color: var(--orange);
}

/* Show toggle on mobile */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
    }
    .brand-badge {
        display: none;
    }
}

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f7fa 100%);
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}
.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-content { position: relative; z-index: 2; }
.hero-badges { display: flex; gap: 8px; margin-bottom: 15px; flex-wrap: wrap; }
.hero-badges .badge {
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    gap: 5px;
}
.badge-red { background: #ffebee; color: #e53935; }
.badge-green { background: #e8f5e9; color: #43a047; }

.hero-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--blue-dark);
    margin-bottom: 10px;
}
.text-orange { color: var(--orange); }
.hero-subtitle { font-size: 14px; color: var(--text-gray); margin-bottom: 20px; }

/* Search Box */
.search-box {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    max-width: 550px;
}
.search-row-1 {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}
.select-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    border-radius: var(--radius);
    padding: 10px 12px;
}
.select-wrapper i { color: var(--orange); font-size: 14px; }
.select-wrapper select {
    border: none;
    background: transparent;
    font-size: 13px;
    color: var(--text-dark);
    flex: 1;
    cursor: pointer;
}
.select-wrapper select:focus { outline: none; }

.search-row-2 {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.hedef-wrapper { flex: 1; min-width: 200px; }
.hedef-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}
.hedef-options { display: flex; gap: 5px; flex-wrap: wrap; }
.hedef-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--text-gray);
    padding: 5px 10px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: 0.3s;
    background: #f8f9fa;
}
.hedef-item input { display: none; }
.hedef-item i { font-size: 10px; }
.hedef-item.active, .hedef-item:hover {
    background: rgba(255,127,0,0.1);
    color: var(--orange);
}

.btn-search-main {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FF7F00, #FF9F43);
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-orange);
    white-space: nowrap;
}
.btn-search-main:hover { transform: translateY(-2px); }
.arrow-circle {
    width: 22px;
    height: 22px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* Hero Mascot */
.hero-mascot { text-align: center; position: relative; z-index: 2; }
.mascot-box {
    width: 180px;
    height: 200px;
    background: var(--orange);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}
.mascot-box .question-mark {
    font-size: 100px;
    font-weight: 800;
    color: #fff;
}

/* ========================================
   SECTION TITLE
======================================== */
.section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 25px;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.section-header .section-title { margin-bottom: 0; }

/* ========================================
   COURSE SECTION
======================================== */
.course-section {
    padding: 60px 0;
    background: #fff;
}
.course-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
}
.course-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.course-overlay {
    position: absolute;
    inset: 0;
}
.course-green .course-overlay { background: linear-gradient(180deg, rgba(76,175,80,0.2) 0%, rgba(76,175,80,0.85) 100%); }
.course-blue .course-overlay { background: linear-gradient(180deg, rgba(33,150,243,0.2) 0%, rgba(33,150,243,0.85) 100%); }
.course-orange .course-overlay { background: linear-gradient(180deg, rgba(255,152,0,0.2) 0%, rgba(255,152,0,0.85) 100%); }
.course-pink .course-overlay { background: linear-gradient(180deg, rgba(233,30,99,0.2) 0%, rgba(233,30,99,0.85) 100%); }

.course-info {
    position: absolute;
    inset: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}
.course-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.course-icon i { color: #fff; font-size: 18px; }
.course-info h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}
.btn-course {
    display: inline-block;
    background: #fff;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    align-self: flex-start;
}
.course-green .btn-course { color: #4CAF50; }
.course-blue .btn-course { color: #2196F3; }
.course-orange .btn-course { color: #FF9800; }
.course-pink .btn-course { color: #E91E63; }


/* ========================================
   CITIES SECTION
======================================== */
.cities-section {
    padding: 60px 0;
    background: var(--bg-light);
}
.nav-arrows { display: flex; gap: 8px; }
.nav-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-gray);
    transition: 0.3s;
}
.nav-arrow:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.cities-carousel-wrapper {
    overflow: hidden;
    padding: 0 15px;
}
.city-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 180px;
    margin: 5px;
}
.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.city-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 100%);
}
.city-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    z-index: 2;
}
.city-info h3 { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 3px; }
.city-info p { color: rgba(255,255,255,0.7); font-size: 11px; margin-bottom: 8px; }
.btn-city {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255,255,255,0.3);
}
.btn-city:hover { background: #fff; color: var(--blue-dark); }
.btn-city i { font-size: 8px; }

/* ========================================
   ADVANTAGES SECTION
======================================== */
.advantages-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}
.advantage-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.9);
    border-radius: var(--radius-lg);
    padding: 25px 18px;
    text-align: center;
    height: 100%;
}
.adv-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #FF7F00, #FF9F43);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: var(--shadow-orange);
}
.adv-icon i { color: #fff; font-size: 22px; }
.advantage-card h3,
.advantage-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 8px;
}
.advantage-card p {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

/* ========================================
   PARTNERS & TESTIMONIALS SECTION
======================================== */
.partners-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}
.partner-item {
    background: #f9f9f9;
    border-radius: var(--radius);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner-item img {
    max-height: 30px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: 0.3s;
}
.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* SEO Guide */
.seo-guide {
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.seo-guide h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.seo-badge {
    background: #e3f2fd;
    color: #1976D2;
    font-size: 9px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
}
.seo-guide p {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 12px;
    line-height: 1.6;
}
.btn-outline-orange {
    display: inline-block;
    border: 2px solid var(--orange);
    color: var(--orange);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
}
.btn-outline-orange:hover {
    background: var(--orange);
    color: #fff;
}

/* Testimonials - FIXED */
.testimonials-wrapper {
    position: relative;
}
.testimonials-carousel {
    overflow: hidden;
}
.testimonial-item {
    padding: 5px;
}
.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}
.testimonial-card .user-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 3px solid #f0f0f0;
}
.testimonial-card .stars {
    margin-bottom: 10px;
}
.testimonial-card .stars i {
    color: #FFC107;
    font-size: 12px;
}
.testimonial-card p {
    font-size: 12px;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.5;
}
.testimonial-card .author {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-dark);
}

/* Orange Decoration */
.orange-decoration {
    position: absolute;
 
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 35px;
    height: 35px;
    background: var(--orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.orange-decoration i {
    color: #fff;
    transform: rotate(-45deg);
    font-size: 14px;
}

/* ========================================
   BLOG SECTION - PIXEL PERFECT
======================================== */
.blog-section {
    padding: 60px 0;
    background: var(--bg-light);
}
.blog-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.4s;
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.blog-img {
    position: relative;
    height: 160px;
    overflow: hidden;
}
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.blog-card:hover .blog-img img {
    transform: scale(1.08);
}
.category-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--orange);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}
.blog-body {
    padding: 18px;
}
.blog-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 8px;
    line-height: 1.4;
    transition: 0.3s;
}
.blog-card:hover .blog-body h3 {
    color: var(--orange);
}
.blog-body > p {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}
.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}
.blog-meta .author {
    display: flex;
    align-items: center;
    gap: 8px;
}
.blog-meta .author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}
.author-info {
    display: flex;
    flex-direction: column;
}
.author-info .name {
    font-size: 11px;
    font-weight: 600;
    color: var(--blue-dark);
}
.author-info .date {
    font-size: 10px;
    color: var(--text-gray);
}
.read-link {
    font-size: 11px;
    font-weight: 600;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0;
    transform: translateX(-10px);
    transition: 0.3s;
}
.blog-card:hover .read-link {
    opacity: 1;
    transform: translateX(0);
}
.read-link i { font-size: 9px; }
.read-link:hover i { transform: translateX(3px); }


/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    padding: 60px 0;
    background: #fff;
}
.cta-box {
    background: linear-gradient(135deg, #0A1931 0%, #1a3a5c 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}
.cta-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FF7F00, #FF9F43);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-orange);
}
.btn-cta:hover { transform: translateY(-2px); color: #fff; }

.cta-mascot {
    position: relative;
    z-index: 2;
}
.mascot-circle {
    width: 120px;
    height: 140px;
    background: var(--orange);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mascot-circle span {
    font-size: 70px;
    font-weight: 800;
    color: #fff;
}

/* ========================================
   FOOTER
======================================== */
.main-footer {
    background: var(--blue-dark);
    padding: 50px 0 0;
}
.footer-brand img {
    height: 35px;
    margin-bottom: 15px;
}
.footer-brand p {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 15px;
}
.social-icons {
    display: flex;
    gap: 8px;
}
.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
}
.social-icons a:hover {
    background: var(--orange);
}

.main-footer h3,
.main-footer h5 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 18px;
}
.main-footer ul li {
    margin-bottom: 10px;
}
.main-footer ul li a {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}
.main-footer ul li a:hover {
    color: var(--orange);
    padding-left: 5px;
}

@media (min-width: 992px) {
    .footer-districts {
        column-count: 2;
        column-gap: 16px;
    }
    .footer-districts li {
        break-inside: avoid;
        margin-bottom: 6px;
    }
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}
.contact-list li i {
    color: var(--orange);
    width: 14px;
}

.newsletter { margin-top: 15px; }
.newsletter p {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
}
.newsletter-form {
    display: flex;
}
.newsletter-form input {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border: none;
    padding: 10px 14px;
    border-radius: var(--radius-pill) 0 0 var(--radius-pill);
    color: #fff;
    font-size: 12px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
    background: var(--orange);
    border: none;
    padding: 10px 16px;
    border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
    color: #fff;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 18px 0;
    margin-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}
.footer-links {
    display: flex;
    gap: 20px;
}
.footer-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}
.footer-links a:hover { color: var(--orange); }



/* ========================================
   OWL CAROUSEL
======================================== */
.owl-carousel .owl-stage-outer { overflow: hidden; }
.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 15px;
}
.owl-carousel .owl-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 2px;
    border-radius: 999px;
}
.owl-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    display: block;
}
.owl-carousel .owl-dot.active span {
    background: var(--orange);
    width: 22px;
    border-radius: 4px;
}
.owl-carousel .owl-dot:focus-visible,
.nav-arrow:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}
.testimonials-carousel .owl-dots {
    text-align: left;
    margin-top: 12px;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 991px) {
    .hero-section { padding: 90px 0 50px; }
    .hero-title { font-size: 28px; }
    .mascot-box { width: 140px; height: 160px; }
    .mascot-box .question-mark { font-size: 70px; }
    .brand-badge { display: none; }
    .header-support { display: none; }
    .section-title { font-size: 20px; }
    .course-card { height: 220px; }
    .cta-box { flex-direction: column; text-align: center; gap: 25px; }
    .cta-mascot { display: none; }
    .orange-decoration { display: none; }
    .partners-section .col-lg-5,
    .partners-section .col-lg-7 { width: 100%; }
    .testimonials-wrapper { margin-top: 30px; }
}

@media (max-width: 767px) {
    .hero-section { padding: 80px 0 40px; }
    .hero-title { font-size: 24px; }
    .hero-badges .badge { font-size: 12px; padding: 4px 10px; }
    .search-box { padding: 12px; }
    .search-row-1 { flex-direction: column; gap: 8px; }
    .search-row-2 { flex-direction: column; }
    .hedef-wrapper { width: 100%; }
    .btn-search-main { width: 100%; justify-content: center; }
    .section-header { flex-direction: column; gap: 10px; align-items: flex-start; }
    .course-card { height: 200px; }
    .course-info h3 { font-size: 15px; }
    .city-card { height: 150px; }
    .advantage-card { padding: 18px 12px; }
    .advantage-card h3,
    .advantage-card h4 { font-size: 13px; }
    .advantage-card p { font-size: 12px; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-img { height: 140px; }
    .blog-body { padding: 14px; }
    .blog-body h3 { font-size: 14px; }
    .cta-content h2 { font-size: 22px; }
    .btn-cta { font-size: 12px; padding: 12px 20px; }
    
    /* Floating Elements Mobile */
    .fake-notification { width: 280px; left: 10px; bottom: 10px; padding: 12px; }
    .notif-avatar { width: 38px; height: 38px; }
    .notif-message { font-size: 12px; }
    .floating-buttons { bottom: 15px; right: 15px; }
    .teklif-btn { 
        padding: 12px; 
        border-radius: 50%; 
        width: 50px; 
        height: 50px; 
        justify-content: center;
    }
    .teklif-btn span { display: none; }
    .teklif-btn i { font-size: 18px; }
    .whatsapp-btn { width: 48px; height: 48px; }
    .whatsapp-btn i { font-size: 22px; }
    .whatsapp-popup { width: 300px; right: 10px; bottom: 75px; }
    .teklif-popup { width: 95%; max-width: 400px; }
    .form-row { flex-direction: column; gap: 12px; }
    .teklif-header { padding: 20px; }
    .teklif-body { padding: 20px; }
    .select-wrapper select,
    .footer-brand p,
    .main-footer ul li a,
    .contact-list li,
    .newsletter p,
    .mobile-contact a,
    .footer-bottom p,
    .footer-links a { font-size: 13px; }
}

@media (max-width: 575px) {
    .hero-title { font-size: 22px; }
    .hedef-options { gap: 3px; }
    .hedef-item { padding: 4px 8px; font-size: 10px; }
    .course-card { height: 180px; }
    .course-info { padding: 15px; }
    .course-icon { width: 35px; height: 35px; }
    .course-icon i { font-size: 14px; }
    .course-info h3 { font-size: 14px; }
    .btn-course { padding: 6px 14px; font-size: 11px; }
    .city-card { height: 130px; }
    .city-info h3 { font-size: 15px; }
    .city-info p { font-size: 13px; }
    .adv-icon { width: 45px; height: 45px; }
    .adv-icon i { font-size: 18px; }
    .testimonial-card { padding: 15px; }
    .testimonial-card .user-img { width: 50px; height: 50px; }
    .blog-body h3 { font-size: 13px; }
    .blog-meta .author img { width: 25px; height: 25px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
}

@media (max-width: 767px) {
    .main-content p,
    .main-content li,
    .main-content a,
    .main-content button,
    .main-content label,
    .main-footer p,
    .main-footer li,
    .main-footer a {
        font-size: 14px;
    }

    .newsletter-form input,
    .newsletter-form button {
        font-size: 14px;
    }
}

/* ========================================
   MOBILE FIXES - Scroll & Select
======================================== */

/* Body scroll lock when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Mobile menu scroll fix */
.mobile-menu {
    display: flex;
    flex-direction: column;
    max-height: 100vh;
    max-height: 100dvh;
}

.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    scroll-behavior: smooth;
}

/* Mobile Select Fixes */
@media (max-width: 767px) {
    select,
    .form-group select,
    .select-wrapper select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-color: #fff;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 12px;
        padding-right: 35px;
        font-size: 16px; /* Prevents iOS zoom */
        border-radius: 8px;
        border: 1px solid #e0e0e0;
        min-height: 44px; /* Touch-friendly */
    }
    
    .select-wrapper {
        background: #fff;
        border: 1px solid #e0e0e0;
    }
    
    .select-wrapper select {
        background-image: none;
        border: none;
        padding-right: 10px;
    }
    
    /* Form inputs touch-friendly */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    textarea {
        font-size: 16px; /* Prevents iOS zoom */
        min-height: 44px;
    }
}

/* Select2 / Searchable Select Base Styles */
.select-searchable {
    position: relative;
}

.select-searchable-input {
    width: 100%;
    padding: 12px 35px 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    background: #fff;
}

.select-searchable-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.select-searchable-dropdown.show {
    display: block;
}

.select-searchable-search {
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.select-searchable-search input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.select-searchable-options {
    max-height: 200px;
    overflow-y: auto;
}

.select-searchable-option {
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.select-searchable-option:hover {
    background: #f8f9fa;
}

.select-searchable-option.selected {
    background: #fff3e6;
    color: var(--orange);
}
