:root {
    --primary-color: #0056b3;
    --primary-dark: #004494;
    --secondary-color: #334155;
    --accent-color: #0056b3;
    --success-color: #059669;
    --danger-color: #ef4444;
    --background-gray: #f8f9fa;
    --border-color: #e2e8f0;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

.header {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    flex: 0 0 auto;
    text-align: center;
}

.logo img {
    height: 75px;
    width: auto;
    display: block;
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #334155;
    font-size: 22px;
    padding: 0;
    margin: 0;
}

.desktop-only-flex {
    display: flex;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.nav-left a,
.nav-right a {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    transition: color 0.2s;
}

.nav-left a:hover,
.nav-right a:hover {
    color: #0056b3;
}

.btn-call-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #059669;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-call-nav:hover {
    background: #047857;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.mobile-only {
    display: none;
}

@media (max-width: 1024px) {
    .desktop-only-flex {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    .mobile-only-flex {
        display: flex !important;
    }
}

.listings-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.banner-text h1 {
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 800;
    margin-bottom: 10px;
    padding: 0 20px;
}

.banner-text .breadcrumb {
    font-size: 13px;
    opacity: 0.9;
}

/* Container */
.main-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px 40px;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Sidebar Filter Layout */
.listings-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    align-items: start;
}

.sidebar-filters {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 0;
    position: sticky;
    top: 90px;
    overflow: hidden;
}

/* Danismanlar Sayfasi */
.agents-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.agent-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    border: 1px solid #eee;
}

.agent-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(193, 18, 31, 0.15);
    border-color: #0056b3;
}

.agent-img-box {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.agent-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transform-origin: bottom center;
    transition: transform 0.6s ease;
}

.agent-info {
    padding: 25px;
    background: #fff;
}

.agent-name {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.agent-title {
    font-size: 14px;
    color: #0056b3;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.agent-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #f5f5f5;
}

.contact-btn {
    background: #f8f9fa;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s;
    text-decoration: none;
}

.contact-btn:hover {
    background: #0056b3;
    color: #fff;
}

.btn-view-profile {
    display: inline-block;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 10px 20px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s;
    border: 2px solid #1a1a1a;
}

.btn-view-profile:hover {
    background: transparent;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .agents-grid {
        grid-template-columns: 1fr;
        margin-top: -30px;
        gap: 25px;
        padding: 0 10px;
    }

    .agents-banner {
        height: 160px;
    }

    .agent-img-box {
        height: 260px;
    }
}

/* Danisman Profil Sayfasi */
.agent-header-banner {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 0;
    margin-bottom: 40px;
    position: relative;
    background-image: linear-gradient(rgba(26, 26, 26, 0.75), rgba(26, 26, 26, 0.95)), url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?auto=format&fit=crop&w=1350&q=80');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.agent-profile-box {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.agent-profile-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: contain;
    object-position: bottom;
    background: #fff;
    border: 5px solid rgba(255, 255, 255, 0.1);
}

.agent-profile-info h1 {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 10px 0;
}

.agent-profile-info .title {
    color: #0056b3;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.agent-contact-row {
    display: flex;
    gap: 15px;
}

.btn-contact {
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-call {
    background: #fff;
    color: #1a1a1a;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-call:hover {
    background: #eee;
}

.section-title {
    margin: 0 0 30px 0;
    font-size: 24px;
    font-weight: 800;
    border-bottom: 3px solid #0056b3;
    display: inline-block;
    padding-bottom: 5px;
}

@media (max-width: 768px) {
    .agent-header-banner {
        padding: 40px 0;
    }

    .agent-profile-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .agent-profile-img {
        width: 120px;
        height: 120px;
    }

    .agent-profile-info h1 {
        font-size: 24px;
    }

    .agent-profile-info .title {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .agent-contact-row {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .btn-contact {
        width: 100%;
        justify-content: center;
    }
}

/* Ilan Detay Sayfasi */
.detail-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.page-header {
    margin-bottom: 25px;
}

.page-title {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 700;
    color: #111;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.page-loc {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-price {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    color: #0056b3;
    margin: 0;
}

.main-layout-grid {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.gallery-column {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-box {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 500px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
}

.props-table-column {
    width: 360px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    overflow: hidden;
}

.sidebar-column {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Ilan Detay Ekstra Stiller */
.breadcrumb {
    font-size: 13px;
    color: #777;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #555;
    text-decoration: none;
}

.image-counter {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    pointer-events: none;
    z-index: 12;
}

.protection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: rgba(0, 0, 0, 0);
}

.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: url('../../img/logo/fligran.png') no-repeat center;
    background-size: contain;
    opacity: 0.35;
    pointer-events: none;
    z-index: 6;
}

.gallery-main-img {
    user-select: none;
    -webkit-user-drag: none;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
}

.gallery-thumbs img {
    width: 110px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    opacity: 0.7;
}

.gallery-thumbs img.active {
    border-color: #0056b3;
    opacity: 1;
}

.gallery-thumbs:active {
    cursor: grabbing;
}

.btn-paylas {
    align-self: flex-start;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #444;
}

.f-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border-right: 1px solid #eee;
}

.f-card:last-child {
    border-right: none;
}

.f-card svg {
    width: 30px;
    height: 30px;
    color: #444;
}

.f-card span {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    font-weight: 700;
}

.f-card strong {
    font-size: 14px;
    color: #111;
}

.props-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.props-table tr {
    border-bottom: 1px solid #f8f8f8;
}

.props-table td {
    padding: 12px 15px;
}

.props-table td:first-child {
    color: #666;
    width: 45%;
}

.props-table td:last-child {
    font-weight: 700;
    color: #111;
}

.sidebar-agent-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.sidebar-agent-card .agent-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: contain;
    object-position: bottom;
    background: #fff;
    margin: 0 auto 15px auto;
    border: 3px solid #f8f9fa;
    display: block;
}

.sidebar-agent-card .agent-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.sidebar-agent-card .agent-title {
    font-size: 13px;
    color: #888;
    margin-bottom: 25px;
}

.desc-section {
    width: 100%;
    margin-top: 30px;
}

.desc-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
}

.desc-header {
    background: #fff;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    font-weight: 800;
    font-size: 18px;
}

.desc-body {
    padding: 30px 25px;
    line-height: 1.8;
    color: #444;
    font-size: 15px;
    white-space: pre-line;
}

.sim-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
}

.sim-header {
    font-size: 16px;
    font-weight: 700;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.sim-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}

.sim-item img {
    width: 100px;
    height: 75px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #eee;
}

.sim-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.sim-title {
    font-size: 13px;
    font-weight: 600;
    color: #111;
    line-height: 1.3;
    margin-bottom: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sim-price {
    font-size: 15px;
    font-weight: 800;
    color: #0056b3;
}

.btn-wp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
    transition: background 0.2s;
}

.btn-wp svg,
.btn-wp img {
    width: 18px;
    height: 18px;
}

.btn-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    color: #444;
    border: 1px solid #ddd;
    text-decoration: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.2s;
}

.btn-phone svg {
    width: 18px;
    height: 18px;
    color: #666;
}

/* Galeri Navigasyon Butonlari */
.nav-btn {
    position: absolute;
    top: 0;
    height: 100%;
    width: 50px;
    background: rgba(0, 0, 0, 0);
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.gallery-box:hover .nav-btn {
    background: rgba(0, 0, 0, 0.1);
    opacity: 1;
}

.nav-btn:hover {
    background: rgba(0, 0, 0, 0.4) !important;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.nav-btn svg {
    width: 30px;
    height: 30px;
}

.fullscreen-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
    transition: 0.3s;
}

.fullscreen-btn:hover {
    background: #0056b3;
}

/* Fullscreen Modal Styles */
.fs-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fs-modal.show {
    display: flex;
}

.fs-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fs-content img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
}

.fs-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
}

.fs-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    padding: 20px;
    cursor: pointer;
    z-index: 10001;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.fs-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.fs-prev {
    left: 20px;
}

.fs-next {
    right: 20px;
}

.fs-nav svg {
    width: 30px;
    height: 30px;
}

.fs-counter {
    position: absolute;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .fs-nav {
        display: none;
    }

    /* Hide nav arrows on mobile, use swipe */
    .fs-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
}

@media (max-width: 1024px) {

    .gallery-column,
    .props-table-column,
    .sidebar-column {
        width: 100%;
    }

    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-box {
        height: 350px;
    }
}

.filter-section {
    padding: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.filter-section:last-of-type {
    border-bottom: none;
}

.filter-title {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

/* Accordion */
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0;
}

.accordion-header .filter-title {
    margin-bottom: 0;
}

.accordion-content {
    margin-top: 15px;
    transition: all 0.3s ease;
}

.filter-section.collapsed .accordion-content {
    display: none;
}

/* Type Buttons */
.type-buttons {
    display: flex;
    gap: 10px;
}

.type-btn {
    flex: 1;
    position: relative;
    cursor: pointer;
}

.type-btn input {
    position: absolute;
    opacity: 0;
}

.type-btn span {
    display: block;
    padding: 10px;
    text-align: center;
    background: #f1f5f9;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #0056b3;
    transition: all 0.2s;
}

.type-btn.kiralik span {
    color: #059669;
    background: #ecfdf5;
}

.type-btn input:checked+span {
    background: #0056b3;
    color: #fff;
}

.type-btn.kiralik input:checked+span {
    background: #059669;
    color: #fff;
}

/* Category List */
.category-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    position: relative;
}

.category-item:hover {
    background: #f8fafc;
}

.category-item.active {
    background: #f1f5f9;
}

.category-item input {
    position: absolute;
    opacity: 0;
}

.category-item i:not(.arrow) {
    width: 20px;
    color: #64748b;
    font-size: 16px;
}

.category-item span {
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    flex: 1;
}

.category-item .arrow {
    font-size: 10px;
    color: #cbd5e0;
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #475569;
    cursor: pointer;
}

.checkbox-item input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Range Inputs */
.range-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.range-inputs input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 13px;
}

.btn-small-submit {
    background: #f1f5f9;
    border: none;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    color: #64748b;
}

.btn-small-submit:hover {
    background: #e2e8f0;
}

.filter-actions {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-apply-filters {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-apply-filters:hover {
    background: var(--primary-dark);
}

.btn-reset-all {
    display: block;
    padding: 10px;
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
    text-decoration: none;
    background: #f8fafc;
    border-radius: 8px;
}

.btn-reset-all:hover {
    color: #ef4444;
    background: #f1f5f9;
}

.desktop-only {
    display: block;
}

.mobile-filter-trigger {
    display: none;
    margin-bottom: 15px;
}

.btn-filter-mobile {
    width: 100%;
    padding: 12px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.filter-menu .filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #f1f5f9;
}

.filter-menu .filter-header h2 {
    margin: 0;
}

.filter-menu .close-btn {
    position: static;
}

/* Results Header */
.results-header {
    background: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.results-info {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.results-info strong {
    color: #1e293b;
    font-weight: 700;
}

.results-controls {
    display: flex;
    gap: 15px;
    align-items: center;
}

.sort-box select {
    padding: 10px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    cursor: pointer;
    background-color: #fff;
    outline: none;
    transition: all 0.2s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
    font-family: 'Inter', sans-serif;
}

.sort-box select:hover {
    border-color: #cbd5e1;
}

.sort-box select:focus {
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.view-toggles {
    display: flex;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 8px;
    gap: 4px;
}

.view-btn {
    width: 38px;
    height: 38px;
    border: none;
    background: transparent;
    color: #94a3b8;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 16px;
}

.view-btn:hover {
    color: #64748b;
}

.view-btn.active {
    background: #fff;
    color: #0056b3;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Grid and List Views */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.listings-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

.listings-list .listing-card {
    flex-direction: row !important;
    height: 240px !important;
    align-items: stretch !important;
}

.listings-list .card-img-wrapper {
    width: 320px !important;
    height: 100% !important;
    flex-shrink: 0 !important;
}

.listings-list .card-content {
    flex: 1 !important;
    padding: 25px !important;
}

.listings-list .card-title {
    white-space: normal !important;
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
}

/* Listing Card Core */
.listing-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #eee;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
}

.listing-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card-img-wrapper {
    position: relative;
    height: 220px;
    width: 100%;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.badge.satilik {
    background: rgba(33, 37, 41, 0.85);
}

.badge.kiralik {
    background: rgba(0, 86, 179, 0.85);
}

.card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.card-meta-top {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #999;
    margin-bottom: 8px;
    font-weight: 600;
}

.card-title {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-address {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 18px;
}

.card-features {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #444;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #f5f5f5;
}

.card-features .feature strong {
    color: #111;
}

.card-price {
    font-size: 22px;
    font-weight: 800;
    color: #0056b3;
    margin-top: auto;
}

/* No Results */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px 20px;
    background: #fff;
    border-radius: 12px;
}

.no-results p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.no-results .btn {
    width: auto;
    display: inline-block;
    padding: 12px 30px;
}

/* Offcanvas and Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay.active {
    display: block;
    opacity: 1;
}

.offcanvas-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -320px;
    width: 300px;
    background: #fff;
    z-index: 2000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.offcanvas-menu.active {
    left: 0;
}

.offcanvas-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: #f1f5f9;
    border: none;
    font-size: 20px;
    color: #64748b;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s;
}

.offcanvas-menu .close-btn:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.menu-content {
    padding: 0;
}

.menu-header-logo {
    padding: 40px 30px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 20px;
}

.menu-header-logo img {
    height: 50px;
    width: auto;
}

.menu-content ul {
    list-style: none;
    padding: 0 15px;
    margin-bottom: 30px;
}

.menu-content ul li {
    margin-bottom: 5px;
}

.menu-content ul li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #334155;
    border-radius: 10px;
    transition: all 0.2s;
}

.menu-content ul li a i {
    width: 20px;
    font-size: 18px;
    color: #0056b3;
    text-align: center;
}

.menu-content ul li a:hover {
    background: #f1f5f9;
    color: #0056b3;
}

.offcanvas-menu .call-btn {
    padding: 0 30px 40px;
    margin-top: auto;
}

.offcanvas-menu .call-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #0056b3;
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
}

.menu-content ul li.has-submenu>a {
    justify-content: space-between;
}

.submenu-arrow {
    font-size: 10px !important;
    transition: transform 0.3s ease;
}

.has-submenu.open .submenu-arrow {
    transform: rotate(180deg);
}

.submenu {
    display: none;
    list-style: none !important;
    padding: 5px 0 10px 45px !important;
    background: #f8fafc;
    border-radius: 0 0 10px 10px;
}

.has-submenu.open .submenu {
    display: block;
}

.submenu li {
    margin-bottom: 0 !important;
}

.submenu li a {
    padding: 10px 15px !important;
    font-size: 14px !important;
    color: #64748b !important;
    font-weight: 500 !important;
}

.submenu li a:hover {
    color: #0056b3 !important;
    background: transparent !important;
}

/* Form Styles */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    font-weight: 600;
    color: #4a5568;
}

.form-group input[type="text"],
.form-group input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-family: inherit;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-right: 10px;
    font-weight: 400 !important;
}

.btn {
    padding: 10px 15px;
    background: #0056b3;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

/* Footer Styling */
footer.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px 0;
    margin-top: 60px;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-left {
    font-size: 14px;
    color: #888;
}

.footer-middle {
    display: flex;
    gap: 30px;
}

.footer-middle a {
    color: #ccc;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-middle a:hover {
    color: #0056b3;
}

.footer-right {
    display: flex;
    gap: 15px;
}

.footer-right a {
    color: #fff;
    background: #333;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.footer-right a:hover {
    background: #0056b3;
}

@media (max-width: 1024px) {
    .listings-layout {
        grid-template-columns: 1fr;
    }

    .desktop-only {
        display: none;
    }

    .mobile-filter-trigger {
        display: block;
    }
}

@media (max-width: 768px) {
    .main-container {
        padding: 20px 15px;
    }

    .desktop-only-flex {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .header-container {
        padding: 10px 15px;
        justify-content: flex-start;
        /* Reset for mobile */
        display: flex;
        align-items: center;
    }

    .menu-btn.mobile-only {
        flex: 1;
        display: flex !important;
        justify-content: flex-start;
    }

    .logo {
        flex: 2;
        display: flex;
        justify-content: center;
    }

    .header-container::after {
        content: "";
        flex: 1;
    }

    .logo img {
        height: 60px;
    }

    .results-header {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
        text-align: center;
    }

    .results-controls {
        justify-content: space-between;
    }

    .listings-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .listings-list .listing-card {
        flex-direction: row !important;
        height: auto !important;
        min-height: 120px !important;
        align-items: stretch !important;
        gap: 0 !important;
        background: #fff !important;
    }

    .listings-list .card-img-wrapper {
        width: 140px !important;
        height: auto !important;
        flex-shrink: 0 !important;
    }

    .listings-list .card-content {
        padding: 12px 15px !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

    .listings-list .card-title {
        font-size: 14px !important;
        margin-bottom: 4px !important;
        white-space: normal !important;
        -webkit-line-clamp: 2 !important;
        display: -webkit-box !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        line-height: 1.3 !important;
    }

    .listings-list .card-address {
        font-size: 11px !important;
        margin-bottom: 8px !important;
    }

    .listings-list .card-features {
        display: none !important;
    }

    .listings-list .card-price {
        font-size: 16px !important;
        margin-top: 0 !important;
        font-weight: 800 !important;
    }

    .listings-list .badge {
        font-size: 9px !important;
        padding: 2px 6px !important;
        top: 5px !important;
        right: 5px !important;
    }

    .card-title {
        font-size: 16px;
    }

    .card-price {
        font-size: 18px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .footer-middle {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .footer-left {
        order: 3;
    }

    .footer-middle {
        order: 1;
    }

    .footer-right {
        order: 2;
    }
}

/* Orange Listing Styles */
.orange-badge {
    background: #ff8c00;
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(255, 140, 0, 0.3);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}

.orange-badge i {
    font-size: 13px;
}

.orange-border {
    border: 2px solid #ff8c00 !important;
}

.footer-complex {
    margin-top: 50px;
}

.footer-top-black {
    background: var(--primary-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 40px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.contact-text {
    font-size: 14px;
    line-height: 1.6;
}

.footer-slogan-bar {
    background: #0d3da5;
    padding: 25px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-slogan-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 40px 20px;
    background: var(--primary-color);
    background-blend-mode: soft-light;
    /* Filigranın mavi ile bütünleşmesi için */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    position: relative;
}

.slogan-logo {
    width: 280px;
    height: auto;
    object-fit: contain;
}

.slogan-text {
    font-size: 22px;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.5px;
    color: var(--white);
}

.slogan-btn {
    background: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.slogan-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.footer-bottom-black {
    background: var(--primary-color);
    padding: 20px 40px;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-whatsapp-widget {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-icon-box {
    background: #63d670;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: var(--transition);
}

.wa-icon-box:hover {
    transform: scale(1.1);
}

.wa-text-bubble {
    background: #fff;
    color: #333;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.wa-text-bubble::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 8px solid #fff;
}

.footer-credits {
    font-size: 13px;
    color: #888;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #fff;
    background: #222;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: 0.3s;
    font-size: 14px;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-slogan-bar {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Ofisler Sayfası Stilleri */
.offices-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}

.offices-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.office-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
}

.office-card:hover {
    transform: translateY(-5px);
}

.office-card.reverse {
    flex-direction: row-reverse;
}

.office-image {
    flex: 1;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.office-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.office-details {
    flex: 1;
    padding: 40px;
}

.office-tag {
    display: inline-block;
    padding: 6px 15px;
    background: #f1f5f9;
    color: #0056b3;
    font-weight: 700;
    font-size: 12px;
    border-radius: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.office-details h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.office-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.office-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #444;
}

.contact-item i {
    color: #0056b3;
    width: 20px;
    margin-top: 3px;
}

@media (max-width: 992px) {

    .office-card,
    .office-card.reverse {
        flex-direction: column;
        gap: 0;
    }

    .office-image {
        width: 100%;
        height: 300px;
    }

    .office-details {
        padding: 30px;
    }
}

/* Pagination */
.pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.page-link {
    padding: 10px 18px;
    background: #fff;
    border: 1px solid #dee2e6;
    color: #1e293b;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.page-link:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.page-link.active {
    background: #0056b3;
    color: #fff;
    border-color: #0056b3;
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.25);
}

.page-link.disabled {
    color: #94a3b8;
    pointer-events: none;
    background: #f1f5f9;
    border-color: #e2e8f0;
    opacity: 0.7;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0056b3;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #004494;
    transform: translateY(-5px);
}

.back-to-top i {
    font-size: 14px;
}

.back-to-top .globe-icon {
    font-size: 16px;
    margin-top: -2px;
}

/* Global Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Home Page Specifics */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-size: clamp(32px, 8vw, 64px);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
    color: var(--white);
    max-width: 800px;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 300;
    margin-bottom: 40px;
    color: var(--white);
    opacity: 0.9;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.call-banner-link {
    text-decoration: none;
    display: block;
    transition: var(--transition);
}

.call-banner-link:hover {
    filter: brightness(1.1);
}

.call-banner-strip {
    background: var(--primary-color);
    color: var(--white);
    padding: 25px 20px;
    text-align: center;
    font-size: clamp(18px, 4vw, 28px);
    font-weight: 800;
}

.cta-grid-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 40px;
    max-width: 1300px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .full-width-mobile {
        grid-column: 1 / -1;
    }
}

.cta-box {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.cta-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.cta-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-main);
}

.cta-desc {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.section-title-center {
    text-align: center;
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--text-main);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.portfolio-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.portfolio-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.portfolio-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-main);
}

.portfolio-subtitle {
    color: var(--text-muted);
    font-size: 14px;
}

.about-section-home {
    background: var(--background-gray);
    padding: 100px 40px;
}

.about-grid-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.about-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
}

.feature-item-box {
    margin-bottom: 25px;
}

.feature-title {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    margin-bottom: 8px;
    font-weight: 500;
}

.feature-list li i {
    color: var(--success-color);
    font-size: 14px;
}

.about-image-side {
    position: relative;
}

.image-wrapper {
    position: relative;
    padding: 20px;
}

.about-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -10px;
    left: -20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.exp-count {
    font-size: 48px;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.exp-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Offcanvas Menu Styles */
.offcanvas-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 10px 0 30px rgba(0,0,0,0.1);
}

.offcanvas-menu.active {
    left: 0;
}

.offcanvas-menu .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f8fafc;
    border: none;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.offcanvas-menu .menu-content {
    flex: 1;
    overflow-y: auto;
    padding: 30px 20px;
}

.menu-header-logo {
    text-align: center;
    margin-bottom: 30px;
}

.menu-header-logo img {
    height: 60px;
}

.offcanvas-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offcanvas-menu ul li {
    margin-bottom: 5px;
}

.offcanvas-menu ul li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    border-radius: 8px;
    transition: all 0.2s;
}

.offcanvas-menu ul li a:hover {
    background: #f1f5f9;
    color: var(--primary-color);
}

.offcanvas-menu ul li a i {
    width: 20px;
    text-align: center;
    color: var(--primary-color);
}

.offcanvas-menu .call-btn {
    margin-top: 30px;
}

.offcanvas-menu .call-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.overflow-hidden {
    overflow: hidden;
}

/* Filter Menu Specifics */
.filter-menu {
    left: auto;
    right: -100%;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-menu.active {
    right: 0;
    left: auto;
}

.filter-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Mobile Filter Trigger */
.mobile-filter-trigger {
    display: none;
}

.btn-filter-mobile {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

/* Mobile & Tablet Overrides */
@media (max-width: 1024px) {
    .main-container {
        padding: 20px;
    }

    .container {
        padding: 0 20px;
    }

    .listings-layout {
        grid-template-columns: 1fr;
    }

    .sidebar-filters.desktop-only {
        display: none !important;
    }

    .mobile-filter-trigger {
        display: block;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 10px 20px;
    }

    .logo img {
        height: 50px;
    }

    .hero-section {
        height: auto;
        min-height: 450px;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 32px;
        text-align: center;
        margin: 0 auto 20px auto;
    }

    .hero-subtitle {
        font-size: 16px;
        text-align: center;
        margin: 0 auto 30px auto;
    }

    .hero-btns {
        justify-content: center;
        gap: 15px;
    }

    .hero-btn-main, .hero-btn-sub {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .cta-grid-section {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 20px;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .section-title-center {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .portfolio-item {
        padding: 20px 15px;
    }

    .portfolio-icon {
        font-size: 32px;
    }

    .portfolio-title {
        font-size: 16px;
    }

    .about-grid-container {
        gap: 40px;
    }

    .about-title {
        font-size: 24px;
        text-align: center;
    }

    .about-p {
        text-align: center;
    }

    .feature-title {
        justify-content: center;
    }

    .feature-list li {
        justify-content: center;
    }

    .experience-badge {
        padding: 15px;
        left: 0;
        bottom: 0;
    }

    .exp-count {
        font-size: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-col ul li {
        justify-content: center;
        display: flex;
    }

    .footer-slogan-bar {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        gap: 20px;
    }

    .slogan-logo {
        height: 60px;
    }

    .slogan-text {
        font-size: 18px;
        margin: 0;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-whatsapp-widget {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: auto;
        transform: none;
        z-index: 1001;
    }

    .wa-text-bubble {
        display: none;
    }

    /* Detail Page */
    .page-header {
        text-align: center;
    }

    .page-price {
        display: block;
        margin-top: 10px;
    }

    .gallery-box {
        height: 300px;
    }

    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .props-table td {
        padding: 10px;
    }

    /* Offcanvas Enhancements */
    .offcanvas-menu {
        width: 300px;
        max-width: 85%;
    }
    
    .filter-menu {
        width: 100%;
        max-width: 100%;
        height: 100%;
        top: 0;
        bottom: 0;
    }

    /* Offices Page Mobile */
    .offices-banner {
        height: 160px;
        margin-bottom: 30px;
    }

    .office-card, .office-card.reverse {
        flex-direction: column;
        gap: 0;
        border-radius: 20px;
    }

    .office-image {
        width: 100%;
        height: 250px;
    }

    .office-details {
        padding: 30px 20px;
        text-align: center;
    }

    .office-contact-info {
        align-items: center;
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 28px;
    }

    .gallery-box {
        height: 220px;
    }
}