/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563eb;
    --secondary: #64748b;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --dark: #1e293b;
    --light: #f8fafc;
    --border: #e2e8f0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.top-bar {
    background: var(--dark);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a, .social-links a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
}

.social-links a:hover {
    color: var(--primary);
}

.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 200px;
    list-style: none;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
}

.search-box {
    background: white;
    border-radius: 10px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.search-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.search-tabs .tab {
    flex: 1;
    padding: 12px;
    border: none;
    background: var(--light);
    cursor: pointer;
    border-radius: 5px;
    font-weight: 500;
}

.search-tabs .tab.active {
    background: var(--primary);
    color: white;
}

.search-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.search-input {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: 14px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-light {
    background: white;
    color: var(--primary);
}

/* Features */
.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
}

.feature-card i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Listings */
.listings-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.listing-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.listing-card:hover {
    transform: translateY(-5px);
}

.listing-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    color: white;
}

.badge-satilik {
    background: var(--success);
}

.badge-kiralik {
    background: var(--warning);
}

.badge-featured {
    background: var(--danger);
    top: 10px;
    left: 10px;
    right: auto;
}

.listing-content {
    padding: 20px;
}

.listing-content h3 {
    margin-bottom: 10px;
}

.listing-content h3 a {
    color: var(--dark);
    text-decoration: none;
}

.location {
    color: var(--secondary);
    margin-bottom: 15px;
}

.listing-features {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--secondary);
}

.listing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.price {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary);
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3, .footer-col h4 {
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #475569;
}

.bg-light {
    background: var(--light);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .search-fields {
        grid-template-columns: 1fr;
    }
}

/* Listing Detail Page */
.listing-detail {
    padding: 40px 0;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--secondary);
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.gallery {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.main-image {
    width: 100%;
    height: 500px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    padding: 15px;
    background: var(--light);
}

.thumbnail-gallery img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s;
}

.thumbnail-gallery img:hover {
    transform: scale(1.05);
}

.detail-header {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.price-box {
    text-align: right;
}

.features-box, .description-box, .amenities-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.features-box h2, .description-box h2, .amenities-box h2 {
    margin-bottom: 20px;
    color: var(--dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.feature-item {
    text-align: center;
    padding: 20px;
    background: var(--light);
    border-radius: 8px;
}

.feature-item i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 10px;
}

.feature-item span {
    display: block;
    font-size: 13px;
    color: var(--secondary);
    margin-bottom: 5px;
}

.feature-item strong {
    font-size: 18px;
    color: var(--dark);
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--light);
    border-radius: 5px;
}

.amenity i {
    color: var(--success);
}

.detail-sidebar {
    position: sticky;
    top: 100px;
}

.contact-box, .info-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-box h3, .info-box h3 {
    margin-bottom: 20px;
}

.contact-form .form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 5px;
    margin-bottom: 15px;
}

.btn-block {
    width: 100%;
}

.info-box ul {
    list-style: none;
}

.info-box ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.info-box ul li:last-child {
    border-bottom: none;
}

.similar-listings {
    margin-top: 60px;
}

.similar-listings h2 {
    margin-bottom: 30px;
}

/* Listings Page */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.listings-page {
    padding: 40px 0;
}

.listings-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

.filters-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
}

.filter-box h3 {
    margin-bottom: 20px;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.price-range {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn-secondary {
    background: var(--secondary);
    color: white;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 10px;
}

.no-results i {
    font-size: 64px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 40px;
}

.page-link {
    padding: 10px 15px;
    border: 1px solid var(--border);
    border-radius: 5px;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s;
}

.page-link:hover, .page-link.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Contact & About Pages */
.contact-section, .about-section {
    padding: 60px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-box, .contact-form-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary);
    width: 40px;
}

.info-item h4 {
    margin-bottom: 5px;
}

.social-links-box {
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: scale(1.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.about-content > p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 50px;
    text-align: center;
    color: var(--secondary);
}

.feature-box {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
}

.feature-box i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding: 60px 0;
    background: var(--light);
    border-radius: 10px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 18px;
    color: var(--secondary);
}

/* Responsive */
@media (max-width: 1024px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }
    
    .detail-sidebar {
        position: static;
    }
    
    .listings-layout {
        grid-template-columns: 1fr;
    }
    
    .filters-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .listings-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .main-image {
        height: 300px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
}


/* Hero Slider */
.hero-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: white;
}

.slide-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 22px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.animate-fade-in {
    animation: fadeIn 1s ease-in;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.5);
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* Quick Search Modern */
.quick-search {
    margin-top: -80px;
    position: relative;
    z-index: 100;
    padding-bottom: 60px;
}

.search-box-modern {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    padding: 40px;
}

.search-tabs-modern {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.tab-modern {
    flex: 1;
    padding: 15px 30px;
    border: 2px solid var(--border);
    background: white;
    cursor: pointer;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tab-modern:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-modern.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.search-fields-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 15px;
    align-items: center;
}

.search-field {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--light);
    border-radius: 10px;
    padding: 0 15px;
}

.search-field i {
    color: var(--secondary);
    margin-right: 10px;
}

.search-input-modern {
    width: 100%;
    padding: 15px 0;
    border: none;
    background: transparent;
    font-size: 15px;
    outline: none;
}

.btn-search-modern {
    padding: 15px 40px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-search-modern:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* Categories Showcase */
.categories-showcase {
    padding: 80px 0;
    background: var(--light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.category-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    transition: all 0.3s;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.category-card p {
    color: var(--secondary);
    font-size: 14px;
    margin-bottom: 15px;
}

.category-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--light);
    border-radius: 50%;
    color: var(--primary);
    transition: all 0.3s;
}

.category-card:hover .category-arrow {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
}

/* Features Modern */
.features-modern {
    padding: 60px 0;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card-modern {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.feature-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.feature-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
}

.feature-content-modern h3 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-content-modern p {
    font-size: 14px;
    color: var(--secondary);
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .search-fields-modern {
        grid-template-columns: 1fr 1fr;
    }
    
    .btn-search-modern {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }
    
    .slide-content h1 {
        font-size: 36px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-btn.prev {
        left: 15px;
    }
    
    .slider-btn.next {
        right: 15px;
    }
    
    .search-box-modern {
        padding: 25px;
    }
    
    .search-fields-modern {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
    }
}


/* Advanced Filters */
.filter-box-advanced {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--primary), #764ba2);
    color: white;
}

.filter-header h3 {
    margin: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-toggle {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-toggle:hover {
    background: rgba(255,255,255,0.3);
}

#filterForm {
    padding: 25px;
}

.filter-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.filter-section:last-of-type {
    border-bottom: none;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 15px;
}

.filter-label i {
    color: var(--primary);
}

/* Radio Group */
.radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.radio-card {
    position: relative;
    cursor: pointer;
}

.radio-card input {
    position: absolute;
    opacity: 0;
}

.radio-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: var(--light);
    border: 2px solid var(--border);
    border-radius: 10px;
    transition: all 0.3s;
}

.radio-content i {
    font-size: 24px;
    color: var(--secondary);
}

.radio-card input:checked + .radio-content {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.radio-card input:checked + .radio-content i {
    color: white;
}

/* Checkbox Group */
.checkbox-group {
    display: grid;
    gap: 10px;
}

.checkbox-card {
    position: relative;
    cursor: pointer;
}

.checkbox-card input {
    position: absolute;
    opacity: 0;
}

.checkbox-card span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--light);
    border: 2px solid var(--border);
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 500;
}

.checkbox-card span i {
    font-size: 18px;
    color: var(--secondary);
}

.checkbox-card.active span,
.checkbox-card input:checked + span {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.checkbox-card.active span i,
.checkbox-card input:checked + span i {
    color: white;
}

/* Input with Icon */
.input-with-icon {
    position: relative;
    margin-bottom: 10px;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary);
}

.form-control-modern {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
}

.form-control-modern:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Price Inputs */
.price-inputs {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
}

.price-separator {
    color: var(--secondary);
    font-weight: bold;
}

.price-presets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.preset-btn {
    padding: 8px 12px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.preset-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Room Buttons */
.room-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.room-btn {
    padding: 10px;
    background: var(--light);
    border: 2px solid var(--border);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.room-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.room-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Features Checkboxes */
.features-checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.feature-checkbox {
    position: relative;
    cursor: pointer;
}

.feature-checkbox input {
    position: absolute;
    opacity: 0;
}

.feature-checkbox span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--light);
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}

.feature-checkbox span i {
    color: var(--secondary);
}

.feature-checkbox input:checked + span {
    background: #d1fae5;
    border-color: var(--success);
    color: #065f46;
}

.feature-checkbox input:checked + span i {
    color: var(--success);
}

/* Filter Actions */
.filter-actions {
    display: grid;
    gap: 10px;
    margin-top: 25px;
}

.btn-filter-apply {
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), #764ba2);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-filter-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.btn-filter-clear {
    padding: 12px;
    background: white;
    color: var(--secondary);
    border: 2px solid var(--border);
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-filter-clear:hover {
    border-color: var(--danger);
    color: var(--danger);
}

/* Collapsed State */
#filterForm.collapsed {
    display: none;
}

@media (max-width: 1024px) {
    .filters-sidebar {
        position: static;
    }
    
    .filter-box-advanced {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .radio-group {
        grid-template-columns: 1fr;
    }
    
    .price-inputs {
        grid-template-columns: 1fr;
    }
    
    .price-separator {
        display: none;
    }
    
    .room-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-checkboxes {
        grid-template-columns: 1fr;
    }
}


/* ========== ULTRA PREMIUM HEADER ========== */

/* Top Bar Ultra */
.top-bar-ultra {
    background: #1a1a2e;
    color: white;
    padding: 12px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar-content-ultra {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left, .top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-weight: 500;
}

.top-link:hover {
    color: white;
}

.top-link i {
    font-size: 12px;
}

.top-divider {
    color: rgba(255,255,255,0.2);
}

.top-text {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links-top {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 13px;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.admin-link {
    background: rgba(37, 99, 235, 0.2);
    padding: 6px 15px;
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.admin-link:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Main Header Ultra */
.header-ultra {
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-ultra {
    padding: 0;
}

.navbar-content-ultra {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* Logo Ultra */
.logo-ultra {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s;
}

.logo-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary), #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 12px;
    color: var(--secondary);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-ultra:hover .logo-icon {
    transform: scale(1.05) rotate(-5deg);
}

/* Navigation Ultra */
.nav-menu-ultra {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.nav-link-ultra {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
}

.nav-link-ultra:hover,
.nav-link-ultra.active {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
}

.nav-link-ultra i {
    font-size: 10px;
    transition: transform 0.3s;
}

.dropdown-ultra:hover .nav-link-ultra i {
    transform: rotate(180deg);
}

/* Mega Menu */
.dropdown-ultra {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 15px;
    padding: 30px;
    min-width: 700px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    margin-top: 20px;
    z-index: 1000;
}

.dropdown-ultra:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.mega-column h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-column h4 i {
    color: var(--primary);
}

.mega-column a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: var(--secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.mega-column a i {
    font-size: 16px;
    color: var(--secondary);
    transition: all 0.3s;
}

.mega-column a:hover {
    background: rgba(37, 99, 235, 0.05);
    color: var(--primary);
    transform: translateX(5px);
}

.mega-column a:hover i {
    color: var(--primary);
}

.mega-featured {
    background: linear-gradient(135deg, var(--primary), #764ba2);
    border-radius: 12px;
    padding: 25px;
}

.featured-box {
    text-align: center;
    color: white;
}

.featured-box i {
    font-size: 40px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.featured-box h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 16px;
}

.featured-box p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.btn-mega {
    display: inline-block;
    padding: 10px 25px;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-mega:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-search-toggle {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border: none;
    border-radius: 10px;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}

.btn-search-toggle:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.btn-header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary), #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.mobile-toggle-ultra {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle-ultra span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-toggle-ultra.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle-ultra.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle-ultra.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.nav-menu-ultra.mobile-active {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 1000;
    padding: 80px 20px 20px;
    overflow-y: auto;
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.nav-menu-ultra.mobile-active li {
    width: 100%;
    border-bottom: 1px solid var(--border);
}

.nav-menu-ultra.mobile-active .nav-link-ultra {
    display: block;
    padding: 15px 10px;
    font-size: 16px;
}

.nav-menu-ultra.mobile-active .dropdown-ultra .mega-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 10px 0;
    background: var(--light);
    margin-top: 0;
}

.nav-menu-ultra.mobile-active .dropdown-ultra.active .mega-menu {
    display: block;
}

.nav-menu-ultra.mobile-active .mega-menu-content {
    flex-direction: column;
    gap: 0;
}

.nav-menu-ultra.mobile-active .mega-column {
    width: 100%;
    padding: 15px 10px;
    border-bottom: 1px solid var(--border);
}

.nav-menu-ultra.mobile-active .mega-column h4 {
    font-size: 14px;
    margin-bottom: 10px;
}

.nav-menu-ultra.mobile-active .mega-column a {
    padding: 8px 10px;
    font-size: 14px;
}

/* Quick Search Bar */
.quick-search-bar {
    background: var(--light);
    padding: 15px 0;
    border-top: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.quick-search-bar.active {
    max-height: 100px;
}

.quick-search-form {
    display: flex;
    gap: 15px;
    align-items: center;
}

.search-input-group {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-group i {
    position: absolute;
    left: 20px;
    color: var(--secondary);
    font-size: 16px;
}

.search-input-quick {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
}

.search-input-quick:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.btn-search-quick {
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary), #764ba2);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-search-quick:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* Responsive */
@media (max-width: 1200px) {
    .mega-menu {
        min-width: 600px;
    }
    
    .mega-menu-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mega-featured {
        grid-column: 1 / -1;
    }
}

@media (max-width: 992px) {
    .top-bar-ultra {
        display: none;
    }
    
    .nav-menu-ultra {
        display: none;
    }
    
    .mobile-toggle-ultra {
        display: flex;
    }
    
    .btn-header-cta span {
        display: none;
    }
}

@media (max-width: 768px) {
    .logo-name {
        font-size: 20px;
    }
    
    .logo-tagline {
        font-size: 10px;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    .btn-search-toggle {
        width: 40px;
        height: 40px;
    }
}


/* ========== ULTRA PREMIUM HERO ========== */

.hero-ultra {
    position: relative;
    height: 650px;
    overflow: hidden;
}

.hero-slider-ultra {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-content-ultra {
    max-width: 800px;
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title-ultra {
    font-size: 52px;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.gradient-text {
    display: block;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-ultra {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item-hero {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-item-hero strong {
    font-size: 32px;
    font-weight: 800;
    color: white;
}

.stat-item-hero span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary {
    background: white;
    color: var(--primary);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* Hero Navigation */
.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
    z-index: 10;
}

.hero-nav-btn:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.prev-ultra {
    left: 40px;
}

.next-ultra {
    right: 40px;
}

/* Hero Dots */
.hero-dots-ultra {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.hero-dot.active {
    background: white;
    width: 40px;
    border-radius: 6px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.scroll-indicator i {
    font-size: 20px;
}

/* ========== COMPACT SEARCH WIDGET ========== */

.search-widget-compact {
    margin-top: -40px;
    position: relative;
    z-index: 100;
    padding-bottom: 50px;
}

.search-card-compact {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.search-tabs-compact {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.tab-compact {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--light);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    transition: all 0.3s;
}

.tab-compact.active {
    background: linear-gradient(135deg, var(--primary), #764ba2);
    color: white;
}

.tab-compact i {
    font-size: 16px;
}

.search-row-compact {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.5fr auto;
    gap: 10px;
    align-items: center;
}

.input-compact {
    padding: 10px 14px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
}

.input-compact:focus {
    outline: none;
    border-color: var(--primary);
}

.price-compact {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 6px;
    align-items: center;
}

.price-compact span {
    color: var(--secondary);
    font-size: 14px;
}

.btn-search-compact {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary), #764ba2);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-search-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

@media (max-width: 1024px) {
    .search-row-compact {
        grid-template-columns: 1fr 1fr;
    }
    
    .price-compact {
        grid-column: 1 / -1;
    }
    
    .btn-search-compact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .search-widget-compact {
        margin-top: -30px;
        padding-bottom: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .search-card-compact {
        padding: 12px;
        max-width: 100%;
        overflow: hidden;
    }
    
    .search-tabs-compact {
        display: flex;
        gap: 8px;
        margin-bottom: 15px;
        width: 100%;
    }
    
    .tab-compact {
        flex: 1;
        padding: 12px 8px;
        font-size: 13px;
        white-space: nowrap;
        min-width: 0;
    }
    
    .tab-compact i {
        font-size: 14px;
        display: inline-block;
    }
    
    .tab-compact span {
        display: inline-block;
    }
    
    .search-row-compact {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .input-compact,
    .search-row-compact select,
    .search-row-compact input {
        width: 100%;
        padding: 12px 14px;
        font-size: 14px;
        box-sizing: border-box;
    }
    
    .price-compact {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 8px;
        width: 100%;
    }
    
    .price-compact .input-compact {
        padding: 12px 10px;
        min-width: 0;
    }
    
    .price-compact span {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-search-compact {
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
        justify-content: center;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .tab-compact {
        padding: 10px 6px;
        font-size: 12px;
    }
    
    .tab-compact i {
        font-size: 13px;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .search-grid-ultra {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-title-ultra {
        font-size: 56px;
    }
    
    .hero-stats {
        gap: 25px;
    }
    
    .stat-item-hero strong {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .hero-ultra {
        height: 550px;
        min-height: 550px;
    }
    
    .hero-slider-ultra {
        height: 100%;
        width: 100%;
    }
    
    .hero-slide {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 1.5s ease-in-out, visibility 0s 1.5s;
    }
    
    .hero-slide.active {
        opacity: 1;
        visibility: visible;
        transition: opacity 1.5s ease-in-out, visibility 0s 0s;
        z-index: 1;
    }
    
    .hero-content-ultra {
        padding: 0 20px;
        max-width: 100%;
        width: 100%;
        text-align: center;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }
    
    .hero-title-ultra {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-subtitle-ultra {
        font-size: 14px;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 25px;
        justify-content: center;
    }
    
    .stat-item-hero {
        min-width: 100px;
    }
    
    .stat-item-hero strong {
        font-size: 22px;
    }
    
    .stat-item-hero span {
        font-size: 11px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .hero-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .prev-ultra {
        left: 10px;
    }
    
    .next-ultra {
        right: 10px;
    }
    
    .hero-dots-ultra {
        bottom: 20px;
        gap: 8px;
    }
    
    .hero-dot {
        width: 10px;
        height: 10px;
    }
    
    .hero-dot.active {
        width: 30px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .search-widget-ultra {
        margin-top: -50px;
    }
    
    .search-card-ultra {
        padding: 25px;
    }
    
    .search-grid-ultra {
        grid-template-columns: 1fr;
    }
    
    .search-tabs-ultra {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-ultra {
        height: 500px;
        min-height: 500px;
    }
    
    .hero-title-ultra {
        font-size: 24px;
    }
    
    .hero-subtitle-ultra {
        font-size: 13px;
    }
    
    .hero-stats {
        gap: 12px;
    }
    
    .stat-item-hero strong {
        font-size: 20px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 24px;
        font-size: 13px;
    }
}


/* Search Field Ultra - Missing Styles */
.search-field-ultra label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.search-field-ultra label i {
    color: var(--primary);
    font-size: 14px;
}

.select-ultra,
.input-ultra {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s;
    background: white;
}

.select-ultra:focus,
.input-ultra:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.price-range-ultra {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
    align-items: center;
}

.price-range-ultra span {
    color: var(--secondary);
    font-weight: bold;
    font-size: 14px;
}

.price-range-ultra .input-ultra {
    padding: 12px 12px;
}


/* ========== SIDEBAR + LISTINGS LAYOUT ========== */

.main-content-section {
    padding: 50px 0;
    background: var(--light);
}

.content-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
}

/* Categories Sidebar */
.categories-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-header {
    background: white;
    padding: 20px;
    border-radius: 12px 12px 0 0;
    border-bottom: 2px solid var(--primary);
}

.sidebar-header h3 {
    margin: 0;
    font-size: 18px;
    color: var(--dark);
}

.category-menu {
    background: white;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.category-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    text-decoration: none;
    color: var(--dark);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}

.category-menu-item:last-child {
    border-bottom: none;
}

.category-menu-item:hover {
    background: var(--light);
    padding-left: 20px;
}

.category-icon-small {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), #764ba2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.category-info {
    flex: 1;
}

.category-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
}

.category-info span {
    font-size: 12px;
    color: var(--secondary);
}

.category-menu-item > i {
    color: var(--secondary);
    font-size: 14px;
}

/* Quick Stats */
.quick-stats {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--light);
    border-radius: 8px;
}

.stat-box i {
    font-size: 24px;
    color: var(--primary);
}

.stat-box strong {
    display: block;
    font-size: 18px;
    color: var(--dark);
}

.stat-box span {
    font-size: 12px;
    color: var(--secondary);
}

/* Main Listings */
.main-listings {
    background: white;
    border-radius: 12px;
    padding: 30px;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.section-title h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}

.view-all {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.view-all:hover {
    gap: 10px;
}

/* Compact Listings Grid */
.listings-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.listing-card-compact {
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
}

.listing-card-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.listing-image-compact {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.listing-image-compact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.listing-card-compact:hover .listing-image-compact img {
    transform: scale(1.05);
}

.badge-compact {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    color: white;
}

.badge-satilik {
    background: var(--success);
}

.badge-kiralik {
    background: var(--warning);
}

.badge-featured {
    background: var(--danger);
    top: 10px;
    left: 10px;
    right: auto;
}

.listing-content-compact {
    padding: 15px;
}

.listing-content-compact h3 {
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.listing-content-compact h3 a {
    color: var(--dark);
    text-decoration: none;
}

.listing-content-compact h3 a:hover {
    color: var(--primary);
}

.location-compact {
    font-size: 13px;
    color: var(--secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.listing-features-compact {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 12px;
    color: var(--secondary);
}

.listing-features-compact span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.listing-footer-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.price-compact {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.btn-view-compact {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    color: var(--primary);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-view-compact:hover {
    background: var(--primary);
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr;
    }
    
    .categories-sidebar {
        position: static;
    }
    
    .category-menu {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .category-menu {
        grid-template-columns: 1fr;
    }
    
    .listings-grid-compact {
        grid-template-columns: 1fr;
    }
    
    .main-listings {
        padding: 20px;
    }
}


/* ========== FEATURED SHOWCASE ========== */

.featured-showcase {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.showcase-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 5px;
}

.showcase-header p {
    color: var(--secondary);
    font-size: 15px;
}

.btn-showcase {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.btn-showcase:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.featured-slider-wrapper {
    position: relative;
    padding: 0 60px;
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    color: var(--primary);
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s;
    z-index: 10;
}

.slider-nav-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

.featured-slider-container {
    overflow: hidden;
    border-radius: 15px;
}

.featured-slider {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease-in-out;
}

.featured-card {
    min-width: calc(25% - 19px);
    flex-shrink: 0;
}

.slider-dots-featured {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dot-featured {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot-featured.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 1200px) {
    .featured-card {
        min-width: calc(33.333% - 17px);
    }
}

@media (max-width: 992px) {
    .featured-card {
        min-width: calc(50% - 13px);
    }
}

@media (max-width: 768px) {
    .featured-slider-wrapper {
        padding: 0 40px;
    }
    
    .slider-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .featured-card {
        min-width: 100%;
    }
}

.featured-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.featured-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.featured-card:hover .featured-image img {
    transform: scale(1.1);
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
    display: flex;
    align-items: flex-start;
    padding: 15px;
}

.featured-badge {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.featured-content {
    padding: 20px;
}

.featured-type {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.type-badge-satilik,
.type-badge-kiralik,
.category-badge {
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
}

.type-badge-satilik {
    background: #d1fae5;
    color: #065f46;
}

.type-badge-kiralik {
    background: #fef3c7;
    color: #92400e;
}

.category-badge {
    background: var(--light);
    color: var(--secondary);
}

.featured-content h3 {
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.featured-content h3 a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s;
}

.featured-content h3 a:hover {
    color: var(--primary);
}

.featured-location {
    color: var(--secondary);
    font-size: 13px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.featured-specs {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--secondary);
}

.featured-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.featured-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.featured-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
}

.btn-featured {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--primary), #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-featured:hover {
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

@media (max-width: 768px) {
    .featured-slider {
        grid-template-columns: 1fr;
    }
    
    .showcase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* ========== LISTING DETAIL PAGE FIX ========== */

.listing-detail {
    padding: 30px 0;
    background: var(--light);
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
}

.detail-main {
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.gallery {
    background: #000;
}

.main-image {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    padding: 15px;
    background: white;
}

.thumbnail-gallery img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.thumbnail-gallery img:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.detail-header {
    padding: 25px;
    border-bottom: 1px solid var(--border);
}

.detail-header h1 {
    font-size: 26px;
    margin-bottom: 10px;
    color: var(--dark);
}

.location {
    color: var(--secondary);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.price-box {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.features-box,
.description-box,
.amenities-box {
    padding: 25px;
    border-bottom: 1px solid var(--border);
}

.features-box:last-child,
.description-box:last-child,
.amenities-box:last-child {
    border-bottom: none;
}

.features-box h2,
.description-box h2,
.amenities-box h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.feature-item {
    text-align: center;
    padding: 15px;
    background: var(--light);
    border-radius: 10px;
}

.feature-item i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 8px;
}

.feature-item span {
    display: block;
    font-size: 12px;
    color: var(--secondary);
    margin-bottom: 5px;
}

.feature-item strong {
    font-size: 16px;
    color: var(--dark);
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: var(--light);
    border-radius: 8px;
}

.amenity i {
    color: var(--success);
    font-size: 16px;
}

.detail-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.contact-box,
.info-box {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-box h3,
.info-box h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--dark);
}

.contact-form .form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 14px;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-block {
    width: 100%;
}

.info-box ul {
    list-style: none;
}

.info-box ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.info-box ul li:last-child {
    border-bottom: none;
}

.info-box ul li strong {
    color: var(--dark);
    margin-right: 8px;
}

@media (max-width: 1024px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }
    
    .detail-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .main-image {
        height: 300px;
    }
    
    .detail-header h1 {
        font-size: 20px;
    }
    
    .price {
        font-size: 24px;
    }
}


/* ========== BREADCRUMB ========== */

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    font-size: 14px;
    color: var(--secondary);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #1d4ed8;
}

.breadcrumb span:last-child {
    color: var(--dark);
    font-weight: 500;
}

/* ========== SIMILAR LISTINGS ========== */

.similar-listings {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border);
}

.similar-listings h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--dark);
}

.similar-listings .listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.similar-listings .listing-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.similar-listings .listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.similar-listings .listing-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.similar-listings .listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.similar-listings .listing-content {
    padding: 20px;
}

.similar-listings .listing-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.similar-listings .listing-content h3 a {
    color: var(--dark);
    text-decoration: none;
}

.similar-listings .listing-content h3 a:hover {
    color: var(--primary);
}

.similar-listings .listing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border);
    margin-top: 15px;
}

.similar-listings .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

/* ========== DETAIL HEADER FIX ========== */

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.detail-header > div:first-child {
    flex: 1;
}

.price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.description-content {
    line-height: 1.8;
    color: var(--secondary);
    font-size: 15px;
}

/* ========== RESPONSIVE DETAIL PAGE ========== */

@media (max-width: 768px) {
    .detail-header {
        flex-direction: column;
    }
    
    .price-box {
        align-items: flex-start;
        width: 100%;
    }
    
    .breadcrumb {
        font-size: 12px;
        gap: 6px;
    }
}


/* ========== SWIPER CUSTOMIZATION ========== */

.featuredSwiper {
    padding: 0 50px 50px;
}

.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    color: var(--primary);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: 900;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary);
    color: white;
}

.swiper-pagination {
    bottom: 10px !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(37, 99, 235, 0.3);
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

.swiper-slide {
    height: auto;
}

.featured-card {
    height: 100%;
}

@media (max-width: 768px) {
    .featuredSwiper {
        padding: 0 40px 40px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px;
    }
}


/* ========== SWIPER 3 CARDS LAYOUT ========== */

.featuredSwiper {
    padding: 0 50px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .featuredSwiper {
        padding: 0 40px 30px;
    }
}


/* ============================================
   ULTRA MODERN FOOTER
   ============================================ */

.footer-ultra {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #e2e8f0;
    margin-top: 80px;
}

/* Ana Footer */
.footer-main {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

/* Footer Brand */
.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    max-height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-logo-text i {
    font-size: 32px;
    color: var(--primary);
}

.footer-description {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

/* Sosyal Medya Butonları */
.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-btn:hover::before {
    opacity: 1;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.social-btn.facebook { background: linear-gradient(135deg, #1877f2, #0d5dbf); }
.social-btn.instagram { background: linear-gradient(135deg, #e1306c, #c13584, #833ab4); }
.social-btn.twitter { background: linear-gradient(135deg, #1da1f2, #0d8bd9); }
.social-btn.linkedin { background: linear-gradient(135deg, #0077b5, #005885); }
.social-btn.youtube { background: linear-gradient(135deg, #ff0000, #cc0000); }
.social-btn.tiktok { background: linear-gradient(135deg, #000000, #333333); }

/* Footer Başlıklar */
.footer-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
}

/* Footer Menü */
.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #94a3b8;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.footer-menu a i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.footer-menu a:hover {
    color: white;
    padding-left: 8px;
}

.footer-menu a:hover i {
    transform: translateX(3px);
}

/* İletişim Bilgileri */
.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-icon.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.contact-info li:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.contact-text {
    flex: 1;
}

.contact-text span {
    display: block;
    color: #64748b;
    font-size: 13px;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-text p {
    color: #e2e8f0;
    font-size: 15px;
    margin: 0;
}

.contact-text a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary);
}

/* Alt Footer */
.footer-bottom {
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #94a3b8;
    font-size: 14px;
}

.footer-copyright strong {
    color: white;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-brand {
        text-align: center;
        padding-right: 0;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-menu {
        text-align: center;
    }
    
    .footer-menu a {
        justify-content: center;
    }
    
    .contact-info {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-social {
        gap: 8px;
    }
    
    .social-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 12px;
    }
}


/* ============================================
   NEDEN BİZ SECTION
   ============================================ */

.why-us-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.section-header-center p {
    font-size: 18px;
    color: #64748b;
}

.features-grid-ultra {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card-ultra {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card-ultra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #06b6d4);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card-ultra:hover::before {
    transform: scaleX(1);
}

.feature-card-ultra:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.feature-icon-ultra {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #06b6d4);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: white;
    transition: all 0.3s ease;
}

.feature-card-ultra:hover .feature-icon-ultra {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.feature-card-ultra h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.feature-card-ultra p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .why-us-section {
        padding: 60px 0;
    }
    
    .section-header-center h2 {
        font-size: 28px;
    }
    
    .section-header-center p {
        font-size: 16px;
    }
    
    .features-grid-ultra {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card-ultra {
        padding: 30px 20px;
    }
    
    .feature-icon-ultra {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
}


/* ============================================
   ÖZEL HİZMETLER SECTION
   ============================================ */

.special-services-section {
    padding: 80px 0;
    background: white;
}

.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card-premium {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.service-card-premium.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
}

.service-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card-premium:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.8), rgba(16, 185, 129, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-premium:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary);
    transform: scale(0);
    transition: transform 0.4s ease;
}

.service-card-premium:hover .service-icon {
    transform: scale(1);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.service-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: #10b981;
    font-size: 16px;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #f1f5f9;
    color: #1e293b;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service.primary {
    background: linear-gradient(135deg, var(--primary), #06b6d4);
    color: white;
}

.btn-service:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-service i {
    transition: transform 0.3s ease;
}

.btn-service:hover i {
    transform: translateX(5px);
}

/* ============================================
   POPÜLER TATİL BÖLGELERİ
   ============================================ */

.holiday-regions-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.region-card {
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    transition: all 0.4s ease;
}

.region-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.region-card:hover img {
    transform: scale(1.15);
}

.region-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transition: all 0.4s ease;
}

.region-card:hover .region-overlay {
    background: linear-gradient(to top, rgba(37, 99, 235, 0.9), rgba(37, 99, 235, 0.6));
}

.region-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.region-overlay p {
    font-size: 15px;
    opacity: 0.9;
}

/* ============================================
   İSTATİSTİKLER
   ============================================ */

.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary), #06b6d4);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.stat-content h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-content p {
    font-size: 16px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .service-card-premium.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .special-services-section,
    .holiday-regions-section {
        padding: 60px 0;
    }
    
    .service-content {
        padding: 25px;
    }
    
    .regions-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-content h3 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}


/* Language Switcher Styles */
.language-switcher {
    position: relative;
    margin-right: 15px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.lang-btn .fa-globe {
    font-size: 16px;
}

.lang-btn .fa-chevron-down {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.lang-btn.active .fa-chevron-down {
    transform: rotate(180deg);
}

.current-lang {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #2d3748;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: #f7fafc;
    padding-left: 25px;
}

.lang-option.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.lang-option.active:hover {
    background: linear-gradient(135deg, #5568d3 0%, #6a3f8f 100%);
}

.lang-flag {
    font-size: 20px;
    line-height: 1;
    min-width: 28px;
    text-align: center;
}

.lang-code {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    min-width: 30px;
}

.lang-name {
    font-size: 14px;
    flex: 1;
    text-align: right;
}

@media (max-width: 768px) {
    .language-switcher {
        margin-right: 10px;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .lang-dropdown {
        min-width: 180px;
        right: 0;
    }
    
    .lang-flag {
        font-size: 18px;
    }
}


/* Language Switcher Top Bar */
.language-switcher-top {
    position: relative;
    display: inline-block;
    margin-right: 20px;
}

.lang-btn-top {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 500;
}

.lang-btn-top:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lang-btn-top .fa-globe {
    font-size: 14px;
}

.lang-btn-top .fa-chevron-down {
    font-size: 9px;
}

.lang-dropdown-top {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    overflow: hidden;
    display: none;
}

.lang-dropdown-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.lang-option-top {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: #2d3748;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.lang-option-top:last-child {
    border-bottom: none;
}

.lang-option-top:hover {
    background: #f7fafc;
}

.lang-option-top.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.lang-option-top .lang-flag {
    font-size: 18px;
}

.lang-option-top .lang-name {
    font-size: 13px;
    font-weight: 500;
}


/* 404 & 500 Error Pages */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.error-page.error-500 {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.error-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.error-animation {
    position: relative;
    margin-bottom: 40px;
}

.error-number {
    font-size: 180px;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    animation: errorFloat 3s ease-in-out infinite;
}

.error-500 .error-number {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: errorShake 0.5s ease-in-out infinite alternate;
}

@keyframes errorFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes errorShake {
    0% { transform: translateX(-5px); }
    100% { transform: translateX(5px); }
}

.error-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    color: rgba(102, 126, 234, 0.2);
}

.error-500 .error-icon {
    color: rgba(239, 68, 68, 0.2);
}

.error-content h1 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 15px;
}

.error-500 .error-content h1 {
    color: #991b1b;
}

.error-message {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
}

.error-500 .error-message {
    color: #7f1d1d;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.error-suggestions {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #e2e8f0;
}

.error-suggestions h3 {
    font-size: 20px;
    color: #334155;
    margin-bottom: 20px;
}

.suggestion-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.suggestion-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    color: #475569;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.suggestion-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    color: #667eea;
}

.error-info {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    color: #7f1d1d;
}

.error-info i {
    color: #ef4444;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .error-number {
        font-size: 120px;
    }
    
    .error-content h1 {
        font-size: 28px;
    }
    
    .error-message {
        font-size: 16px;
    }
    
    .error-actions {
        flex-direction: column;
    }
    
    .suggestion-links {
        flex-direction: column;
    }
}
