:root {
    /* Renk Değişkenleri - Tek bir yerden değiştirilebilir */
    --primary-color: #6c429c;
    /* Eflatun Tonu */
    --secondary-color: #ffa500;
    /* Turuncu (Accent) */
    --bg-light: #fdfdfd;
    --card-bg: #ffffff;
    --text-dark: #333333;
    --text-muted: #777777;
    --white: #ffffff;

    /* Gölgeler ve Kenarlıklar */
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 15px 45px rgba(108, 66, 156, 0.15);
    --border-radius: 12px;

    /* Geçişler */
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Inter', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    /* Sticky Footer Fix */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

footer {
    margin-top: auto;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #f8f9fa;
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

header.header-scrolled {
    background: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

header.header-scrolled .nav-links a,
header.header-scrolled nav ul li div {
    color: var(--white) !important;
}

header.header-scrolled .nav-links a:hover,
header.header-scrolled nav ul li div:hover {
    color: var(--secondary-color) !important;
}

header.header-scrolled .mobile-menu-btn {
    color: var(--white) !important;
}

header.header-scrolled #liveSearchInput {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

header.header-scrolled #liveSearchInput::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

header.header-scrolled .header-search-icon {
    color: rgba(255, 255, 255, 0.85);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 800;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a:hover,
header nav ul li div:hover {
    color: var(--secondary-color) !important;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a2b6d 100%);
    color: var(--white);
    text-align: center;
}

/* İlan Kartları (İstenen Profesyonel Görünüm) */
.listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 50px 0;
}

.card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

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

.card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #444;
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.status-badge.satilik {
    background: #f97316; /* Orange */
}

.status-badge.kiralik {
    background: #0ea5e9; /* Sky Blue */
}

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.card-price {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 15px;
}

.card-features {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: var(--text-muted);
}

/* WhatsApp Icon */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: rotate(360deg);
}

/* Forms */
.form-group {
    margin-bottom: 10px;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: var(--transition);
}

textarea {
    resize: vertical;
    /* Sadece düşeyde boyutlandırmaya izin ver */
}

/* CKEditor Yüksekliği */
.ck-editor__editable {
    min-height: 300px;
}

/* Number Input Oklarını Kaldır */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

/* Profesyonel Dosya Seçme Inputu */
input[type=file] {
    padding: 10px;
    background: #f8f9fa;
    border: 2px dashed #ddd;
    cursor: pointer;
}

input[type=file]:hover {
    border-color: var(--primary-color);
    background: #fff;
}

/* Modern Toggle Switch (Mor) */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ddd;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--primary-color);
}

input:checked+.slider:before {
    transform: translateX(30px);
}

/* Profesyonel Dosya Yükleme Kutusu */
.upload-zone {
    border: 2px dashed #ddd;
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    background: #f8f9fa;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.upload-zone:hover {
    border-color: var(--primary-color);
    background: #fff;
}

.upload-zone i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.upload-zone input[type=file] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

/* Resim Önizleme Izgarası */
.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.preview-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-item .remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ff4757;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    border: none;
    line-height: 0;
    padding: 0;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn {
    padding: 12px 25px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

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

.btn-primary:hover {
    background: #4a2b6d;
}

/* Detail Page */
.detail-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    margin-top: 40px;
}

.detail-grid > div:first-child {
    min-width: 0; /* İçerik taşarak kolonu genişletmesin */
}

.gallery-main {
    height: 500px !important;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
    /* Alttaki animasyon için alanı genişlettik */
    padding-left: 10px;
    padding-right: 10px;
}

.gallery-main a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain !important;
    display: block;
}

.gallery-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 20px !important;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 2px;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.gallery-thumbs::-webkit-scrollbar {
    height: 6px;
}

.gallery-thumbs::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 10px;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.gallery-thumbs::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

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

/* Leaflet Layer Control Modernization */
.leaflet-control-layers {
    border-radius: 8px !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
    margin-top: 15px !important;
}

.leaflet-control-layers-expanded {
    padding: 10px 15px !important;
    background: #fff !important;
    width: max-content !important;
    min-width: 250px !important;
}

/* Menü sadece genişletildiğinde (üzerine gelindiğinde) görünür olsun */
.leaflet-control-layers-expanded .leaflet-control-layers-list {
    display: block !important;
}

.leaflet-control-layers-base {
    display: flex !important;
    gap: 15px !important;
    justify-content: space-around !important;
    align-items: center !important;
}

.leaflet-control-layers-base label {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    white-space: nowrap !important;
    /* Yazıların kesilmesini engeller */
    margin: 0 !important;
}

.leaflet-control-layers-base input {
    margin: 0 3px 0 0 !important;
    /* Sadece sağdan 3px boşluk */
    padding: 0 !important;
    cursor: pointer !important;
    width: auto !important;
    /* Genişliği zorlama */
}

/* İlan Detay Kartı Modern Revize */
.detail-grid .admin-card {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 30px !important;
    border-radius: 16px !important;
    background: #fff;
}

/* Lightbox Modernization - JS Uyumlu */
.lb-outerContainer {
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.lb-dataContainer {
    padding: 15px 0 !important;
    color: #fff !important;
}

.lb-close {
    position: fixed !important;
    top: 30px !important;
    right: 30px !important;
    width: 48px !important;
    height: 48px !important;
    background: #fff !important;
    border-radius: 50% !important;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5) !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    z-index: 100000 !important;
    opacity: 1 !important;
    border: none !important;
}

.lb-close::before {
    content: "\f00d" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 22px !important;
    color: #333 !important;
    display: block !important;
}

.lb-close:hover {
    transform: scale(1.1) rotate(90deg) !important;
    background-color: var(--primary-color) !important;
}

.lb-close:hover::before {
    color: #fff !important;
}

/* Lightbox Navigasyon Okları */
.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    position: fixed !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 60px !important;
    height: 60px !important;
    opacity: 1 !important;
    background-image: none !important;
    z-index: 10000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.lb-nav a.lb-prev { left: 30px !important; }
.lb-nav a.lb-next { right: 30px !important; }

.lb-nav a.lb-prev::before,
.lb-nav a.lb-next::before {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 40px !important;
    color: #fff !important;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.9) !important;
    opacity: 0.6 !important;
    transition: all 0.3s ease !important;
}

.lb-nav a.lb-prev::before { content: "\f053" !important; }
.lb-nav a.lb-next::before { content: "\f054" !important; }

.lb-nav a.lb-prev:hover::before,
.lb-nav a.lb-next:hover::before {
    opacity: 1 !important;
}

.thumb-item {
    width: 100px !important;
    height: 75px !important;
    flex: 0 0 100px !important;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: #fff;
    display: block !important;
    opacity: 0.8;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-right: 5px;
}

.thumb-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    display: block !important;
}

.thumb-item.active {
    border-color: var(--primary-color);
    opacity: 1;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.2);
}

/* Header Live Search */
.header-search-container {
    position: relative;
    flex-grow: 1;
    max-width: 450px;
    margin: 0 40px;
}

#liveSearchInput {
    width: 100%;
    padding: 12px 20px 12px 45px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 25px;
    outline: none;
    font-family: var(--font-family, 'Outfit', sans-serif);
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f1f2f6;
}

#liveSearchInput:focus {
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(var(--primary-color-rgb, 108,92,231), 0.15);
}

.header-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #a4b0be;
    pointer-events: none;
}

.search-results-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
    z-index: 9999;
    border: 1px solid rgba(0,0,0,0.05);
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    gap: 15px;
    text-decoration: none;
    border-bottom: 1px solid #f1f2f6;
    transition: background 0.2s ease;
    cursor: pointer;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgba(108, 92, 231, 0.08); /* Light Mor Hover Efekti */
}

.search-result-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.search-result-info {
    display: flex;
    flex-direction: column;
}

.search-result-title {
    color: #2f3542;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.search-result-price {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
}

.search-no-result {
    padding: 15px;
    text-align: center;
    color: #747d8c;
    font-size: 14px;
}

/* =========================================
   RESPONSIVE (MOBIL) TASARIM SİSTEMİ
========================================= */

/* Desktop varsayılanı olarak Hamburger Menüyü Gizle */
.mobile-menu-btn {
    display: none;
}

@media (max-width: 768px) {
    /* Genel Gizleme Komutları */
    .hide-on-mobile {
        display: none !important;
    }

    /* Üst Menü (Header & Nav) Ayarları */
    header nav {
        flex-wrap: wrap;
    }

    .mobile-menu-btn {
        display: block !important;
        font-size: 24px;
        color: var(--primary-color);
        cursor: pointer;
        padding: 10px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 80px;
        left: 0;
        background: #fff;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        padding: 20px;
        z-index: 999;
        gap: 15px !important;
        text-align: left;
        border-top: 1px solid #f1f2f6;
    }

    .nav-links.active {
        display: flex !important;
    }

    /* Header mor (scrolled) iken mobil menü kontrastı */
    header.header-scrolled .nav-links.active {
        background: var(--primary-color);
        border-top-color: rgba(255, 255, 255, 0.18);
        box-shadow: 0 14px 30px rgba(0,0,0,0.22);
    }

    header.header-scrolled .nav-links.active a,
    header.header-scrolled .nav-links.active li div {
        color: var(--white) !important;
    }

    header.header-scrolled .nav-links.active a:hover,
    header.header-scrolled .nav-links.active li div:hover {
        color: var(--secondary-color) !important;
    }

    /* Arama Kutusu Ayarları */
    .header-search-container {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin: 15px 0 0 0 !important;
    }

    /* Grid Yapıları (Detay ve İletişim Formları için alt alta dizilim) */
    .contact-grid,
    .detail-grid,
    .form-split {
        grid-template-columns: 1fr !important;
        text-align: left;
    }

    /* Form alanları arası boşluk eşitleme */
    .form-split {
        gap: 10px !important;
        margin-bottom: 10px !important;
    }
    
    .contact-grid > div,
    .detail-grid > div {
        width: 100%;
    }

    /* İlan Filtreleme Kategori Kutuları */
    .filter-btn {
        flex: 1 1 calc(50% - 15px);
        text-align: center;
    }

    /* WhatsApp Butonu Ufalama */
    .whatsapp-btn {
        width: 50px !important;
        height: 50px !important;
        font-size: 26px !important;
        bottom: 20px !important;
        right: 20px !important;
    }

    /* Lightbox Okları (Ekran içine çekme) */
    .lb-nav a.lb-prev { 
        left: 0; 
        opacity: 0.8;
    }
    .lb-nav a.lb-next { 
        right: 0; 
        opacity: 0.8;
    }

    /* Küçük (Thumb) Görseller */
    .thumb-item {
        width: 70px !important;
        height: 50px !important;
        flex: 0 0 70px !important;
    }

    /* Lightbox Full Screen ve Dikey Hizalama */
    #lightbox {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        z-index: 999999 !important;
    }

    /* Kütüphane gizlediğinde (display: none) CSS'in zorla göstermemesi için */
    #lightbox[style*="display: none"] {
        display: none !important;
    }

    /* İçerik kaplarını flexbox'a uyumlu hale getir (Pozisyonlarını sıfırla) */
    .lb-outerContainer, 
    .lb-dataContainer {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 95vw !important;
    }

    .lb-close {
        position: fixed !important;
        top: 20px !important;
        right: 20px !important;
        z-index: 1000001 !important;
    }

    /* Okları dikeyde ortala */
    .lb-nav a.lb-prev, 
    .lb-nav a.lb-next {
        position: fixed !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
}

/* =========================================
   HERO SEARCH BAR
========================================= */
.hero-search-wrapper {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-search-form {
    display: flex;
    gap: 12px;
    align-items: flex-end;
}

.hero-search-group {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 6px;
}

.hero-search-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    margin-left: 5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.select-with-icon {
    position: relative;
    background: #fff;
    border-radius: 12px;
    display: flex; /* Flex is fine, but we'll absolute the icon */
    align-items: center;
    padding: 0;
    height: 48px;
    border: 1px solid #e2e8f0;
}

.select-with-icon i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 16px;
    z-index: 10;
    pointer-events: none;
}

.select-with-icon .select2-container {
    width: 100% !important;
}

.select-with-icon .select2-selection--single {
    padding-left: 45px !important;
}

.hero-search-btn {
    height: 48px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 0 35px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-search-btn:hover {
    background: #e69500;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-search-form {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .hero-search-group {
        width: 100%;
    }

    .hero-search-btn {
        width: 100%;
        margin-top: 10px;
    }
}