/* ── Breadcrumb ── */
.hira-project-breadcrumb {
    padding: 1.25rem 0 0.5rem;
}

.hira-breadcrumb-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    color: var(--paraColor, #666);
}

.hira-breadcrumb-nav a {
    color: var(--titleColor, #1a1a1a);
    text-decoration: none;
    transition: color 0.2s;
}

.hira-breadcrumb-nav a:hover {
    color: var(--primaryColor, #e85d04);
}

.hira-projects-hero .hira-breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.85) !important;
}

.hira-projects-hero .hira-breadcrumb-nav a:hover {
    color: var(--hira-orange, #f39200) !important;
}

.hira-projects-hero .hira-breadcrumb-current {
    color: var(--hira-orange, #f39200) !important;
}

.hira-breadcrumb-sep {
    opacity: 0.4;
}

.hira-breadcrumb-current {
    color: var(--primaryColor, #e85d04);
    font-weight: 600;
    max-width: 320px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Gallery ── */
.hira-project-gallery-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.hira-project-detail .hira-project-gallery {
    aspect-ratio: 16 / 9;
}

.hira-project-detail .hira-project-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hira-project-detail .swiper-button-prev,
.hira-project-detail .swiper-button-next {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    color: var(--titleColor, #1a1a1a);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, background 0.2s;
}

.hira-project-detail .swiper-button-prev:hover,
.hira-project-detail .swiper-button-next:hover {
    background: #fff;
    transform: scale(1.05);
}

.hira-project-detail .swiper-button-prev::after,
.hira-project-detail .swiper-button-next::after {
    font-size: 1.1rem;
    font-weight: 700;
}

.hira-project-detail .swiper-pagination-bullet-active {
    background: var(--primaryColor, #e85d04);
}

.hira-gallery-badges {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 5;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hira-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.hira-status-pill.is-building {
    background: rgba(59, 130, 246, 0.9);
    color: #fff;
}

.hira-status-pill.is-ready {
    background: rgba(34, 197, 94, 0.9);
    color: #fff;
}

.hira-status-pill.is-featured {
    background: rgba(232, 93, 4, 0.92);
    color: #fff;
}

/* ── Header ── */
.hira-project-head {
    margin-bottom: 1.5rem;
}

.hira-project-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: var(--titleColor, #1a1a1a);
}

.hira-project-location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1rem;
    color: var(--paraColor, #666);
    margin-bottom: 0.5rem;
}

.hira-project-location i {
    color: var(--primaryColor, #e85d04);
}

.hira-project-ref {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--paraColor, #888);
    background: var(--grayColor, #f5f5f5);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
}

.hira-project-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--paraColor, #555);
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 3px solid var(--primaryColor, #e85d04);
}

/* ── Stats row ── */
.hira-project-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.hira-stat-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.15rem;
    background: var(--grayColor, #f8f8f8);
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.hira-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.hira-stat-card > i {
    font-size: 1.5rem;
    color: var(--primaryColor, #e85d04);
    flex-shrink: 0;
}

.hira-stat-card small {
    display: block;
    font-size: 0.75rem;
    color: var(--paraColor, #888);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.hira-stat-card strong {
    font-size: 0.95rem;
    color: var(--titleColor, #1a1a1a);
}

/* ── Sections ── */
.hira-project-section {
    margin-bottom: 2.5rem;
}

.hira-section-head {
    margin-bottom: 1.25rem;
}

.hira-section-head h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--titleColor, #1a1a1a);
}

.hira-section-head p {
    font-size: 0.9rem;
    color: var(--paraColor, #888);
    margin: 0;
}

.hira-project-prose {
    line-height: 1.8;
    color: var(--paraColor, #555);
}

/* ── Units table ── */
.hira-units-table-wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.hira-units-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

.hira-units-table thead {
    background: linear-gradient(135deg, var(--titleColor, #1a1a1a) 0%, #333 100%);
    color: #fff;
}

.hira-units-table th {
    padding: 1rem 1.15rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: none;
}

.hira-units-table td {
    padding: 1rem 1.15rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    vertical-align: middle;
}

.hira-units-table tbody tr:hover {
    background: rgba(232, 93, 4, 0.04);
}

.hira-units-table tbody tr:last-child td {
    border-bottom: none;
}

.hira-room-badge {
    display: inline-block;
    background: var(--primaryColor, #e85d04);
    color: #fff;
    padding: 0.3rem 0.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
}

.hira-money-value,
.hira-unit-price {
    font-weight: 600;
    color: var(--titleColor, #1a1a1a);
    white-space: nowrap;
}

.hira-unit-price {
    color: var(--primaryColor, #e85d04);
    font-size: 0.9rem;
}

/* ── Amenities ── */
.hira-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.85rem;
}

.hira-amenity-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.15rem;
    background: var(--grayColor, #f8f8f8);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s, background 0.2s;
}

.hira-amenity-card:hover {
    border-color: var(--primaryColor, #e85d04);
    background: rgba(232, 93, 4, 0.05);
}

.hira-amenity-card i {
    font-size: 1.35rem;
    color: var(--primaryColor, #e85d04);
    flex-shrink: 0;
}

.hira-amenity-card span {
    font-weight: 500;
    color: var(--titleColor, #1a1a1a);
}

/* ── Nearby ── */
.hira-nearby-card {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.15rem;
    background: var(--grayColor, #f8f8f8);
    border-radius: 14px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.2s;
}

.hira-nearby-card:hover {
    transform: translateY(-3px);
}

.hira-nearby-card > i {
    font-size: 1.5rem;
    color: var(--primaryColor, #e85d04);
    margin-top: 0.15rem;
}

.hira-nearby-card strong {
    display: block;
    font-size: 0.95rem;
    color: var(--titleColor, #1a1a1a);
    margin-bottom: 0.15rem;
}

.hira-nearby-card span {
    font-size: 0.85rem;
    color: var(--paraColor, #888);
}

/* ── Sidebar ── */
.hira-project-sidebar {
    position: sticky;
    top: 120px;
}

.hira-price-card {
    background: linear-gradient(160deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    border-radius: 20px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.hira-price-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.hira-price-main {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 0.75rem;
}

.hira-price-per-unit {
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.hira-price-per-unit small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.65;
    margin-bottom: 0.2rem;
}

.hira-price-per-unit strong {
    font-size: 1.1rem;
    color: var(--primaryColor, #e85d04);
}

.hira-preference-hint {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.78rem;
    opacity: 0.65;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.hira-preference-hint i {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.hira-sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.hira-sidebar-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.25rem;
    font-weight: 600;
    border-radius: 12px;
}

.hira-btn-whatsapp {
    background: #25d366;
    color: #fff;
    border: none;
}

.hira-btn-whatsapp:hover {
    background: #1fb855;
    color: #fff;
}

/* ── Similar projects ── */
.hira-similar-card {
    background: var(--grayColor, #f8f8f8);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.hira-similar-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--titleColor, #1a1a1a);
}

.hira-similar-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: opacity 0.2s;
}

.hira-similar-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hira-similar-item:hover {
    opacity: 0.85;
}

.hira-similar-item img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.hira-similar-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--titleColor, #1a1a1a);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.hira-similar-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primaryColor, #e85d04);
}

/* ══════════════════════════════════════════
   PROJECTS LISTING PAGE
   ══════════════════════════════════════════ */

body.hira-home {
    overflow-x: hidden;
}

body.hira-home .hira-page-content {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding: 0 !important;
}

/* İçerik grid — 1366px ortalı; banner arka planları tam genişlik kalır */
body.hira-home .hira-page-content .container,
body.hira-home .hira-page-content .container-fluid {
    width: 100%;
    max-width: var(--hira-site-max-width, 1366px);
    margin-inline: auto;
}

body.hira-home .hira-page-content .hero-area.hira-hero {
    border-radius: 0;
}

body.hira-home .hira-projects-page {
    background: #f5f3f0;
    padding-bottom: 4rem;
    width: 100%;
}

body.hira-home .hira-projects-page a {
    text-decoration: none;
}

body.hira-home .hira-projects-page h1,
body.hira-home .hira-projects-page h2,
body.hira-home .hira-projects-page h3 {
    margin-top: 0;
}

.hira-projects-page {
    background: #f5f3f0;
    padding-bottom: 4rem;
}

/* Hero */
.hira-projects-hero {
    background: linear-gradient(135deg, var(--hira-brown, #2c1e1e) 0%, #4a2f2f 50%, var(--hira-brown-light, #3d2a2a) 100%);
    color: #fff;
    padding: 2.5rem 0 3rem;
    margin-bottom: 2rem;
}

.hira-projects-hero-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: #fff;
}

.hira-projects-hero-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.88;
    max-width: 640px;
    margin-bottom: 1.5rem;
}

.hira-projects-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hira-hero-stat {
    text-align: center;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    min-width: 100px;
}

.hira-hero-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--hira-orange, #f39200);
}

.hira-hero-stat span {
    font-size: 0.8rem;
    opacity: 0.75;
}

.hira-projects-hero-cta {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.hira-hero-cta-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: var(--hira-orange, #f39200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.hira-projects-hero-cta h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.hira-projects-hero-cta p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1.25rem;
}

/* Layout */
.hira-projects-layout {
    margin-top: -1rem;
}

.hira-projects-sidebar {
    position: sticky;
    top: 130px;
}

.hira-sidebar-form {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(44, 30, 30, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hira-sidebar-form h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--hira-brown, #2c1e1e);
}

.hira-sidebar-form > p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1.25rem;
}

.hira-lead-form label {
    display: block;
    margin-bottom: 0.85rem;
}

.hira-lead-form label > span {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 0.35rem;
}

body.hira-home .hira-projects-page .hira-lead-form input,
body.hira-home .hira-projects-page .hira-lead-form textarea,
body.hira-home .hira-projects-page .hira-lead-form select,
.hira-lead-form input,
.hira-lead-form textarea,
.hira-lead-form select {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid #e0dcd6;
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
    background-color: #faf9f7;
    transition: border-color 0.2s;
    box-shadow: none;
    appearance: none;
}

.hira-lead-form input,
.hira-lead-form select {
    min-height: 44px;
}

.hira-lead-form select {
    padding-right: 2.5rem;
    cursor: pointer;
    color: #333;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    background-size: 1rem;
}

.hira-lead-form select option {
    color: #333;
    background: #fff;
}

.hira-lead-form input:focus,
.hira-lead-form textarea:focus,
.hira-lead-form select:focus {
    outline: none;
    border-color: var(--hira-orange, #f39200);
}

.hira-captcha-field {
    margin-top: 0.25rem;
}

.hira-captcha-label {
    display: block;
}

.hira-captcha-label > span {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0.45rem;
}

.hira-captcha-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hira-captcha-image {
    flex-shrink: 0;
    border: 1px solid #e8e2dc;
    border-radius: 8px;
    background: #f5f3f0;
}

.hira-captcha-refresh {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: 1px solid #e8e2dc;
    border-radius: 8px;
    background: #fff;
    color: #666;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.hira-captcha-refresh:hover {
    border-color: var(--hira-orange, #f39200);
    color: var(--hira-orange, #f39200);
}

.hira-captcha-input {
    flex: 1 1 120px;
    min-width: 0;
    height: 40px;
    padding: 0 0.75rem;
    border: 1px solid #e8e2dc;
    border-radius: 8px;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hira-captcha-input:focus {
    outline: none;
    border-color: var(--hira-orange, #f39200);
}

.hira-sidebar-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.7rem;
    background: #25d366;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.hira-sidebar-whatsapp:hover {
    background: #1fb855;
    color: #fff;
}

/* Filters */
.hira-projects-filters {
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.hira-projects-filters--compact {
    padding: 0.85rem 1rem;
}

.hira-filter-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.65rem;
}

@media (min-width: 992px) {
    .hira-projects-filters--compact .hira-filter-toolbar {
        margin-bottom: 0.65rem;
    }
}

@media (max-width: 991px) {
    .hira-projects-filters--compact .hira-filter-toolbar {
        margin-bottom: 0;
    }
}

.hira-filter-hint {
    margin: 0;
    font-size: 0.8rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hira-filter-hint i {
    color: var(--hira-orange, #f39200);
}

.hira-filter-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    background: var(--hira-orange, #f39200);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
}

.hira-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border: 1px solid #e0dcd6;
    border-radius: 10px;
    background: #faf9f7;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--hira-brown, #2c1e1e);
    cursor: pointer;
}

.hira-filter-form {
    display: block;
}

.hira-filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.hira-filter-bar .hira-filter-select {
    flex: 1 1 calc(16.666% - 0.5rem);
    min-width: 118px;
}

.hira-filter-clear-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex: 0 0 auto;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border: 1px solid #e8e2dc;
    background: #fff;
    color: #666;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.hira-filter-clear-btn:hover {
    border-color: var(--hira-orange, #f39200);
    color: var(--hira-orange, #f39200);
}

.hira-filter-fields {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.hira-filter-field label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #777;
    margin-bottom: 0.4rem;
}

body.hira-home .hira-projects-page .hira-filter-select,
.hira-filter-select {
    width: 100%;
    padding: 0.52rem 1.75rem 0.52rem 0.65rem;
    border: 1px solid #e8e2dc;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--hira-brown, #2c1e1e);
    background: #faf9f7 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M12 16l-6-6h12z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
    background-size: 12px;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

body.hira-home .hira-projects-page .hira-filter-select:focus,
.hira-filter-select:focus {
    outline: none;
    border-color: var(--hira-orange, #f39200);
    box-shadow: 0 0 0 3px rgba(243, 146, 0, 0.15);
}

.hira-filter-select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.hira-filter-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hira-filter-submit {
    padding: 0.6rem 1.5rem !important;
    font-size: 0.9rem !important;
}

body.hira-home .hira-projects-page .hira-filter-clear,
.hira-filter-clear {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666 !important;
    text-decoration: none !important;
    transition: color 0.2s;
}

body.hira-home .hira-projects-page .hira-filter-clear:hover,
.hira-filter-clear:hover {
    color: var(--hira-orange, #f39200) !important;
}

.hira-projects-filters--compact .hira-active-filters {
    margin-top: 0.65rem;
    padding-top: 0.65rem;
}

.hira-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0ece8;
}

body.hira-home .hira-projects-page .hira-active-tag,
.hira-active-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    background: rgba(243, 146, 0, 0.12);
    color: var(--hira-brown, #2c1e1e) !important;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.2s;
}

body.hira-home .hira-projects-page .hira-active-tag:hover,
.hira-active-tag:hover {
    background: rgba(243, 146, 0, 0.22);
}

.hira-active-tag i {
    font-size: 0.9rem;
    opacity: 0.7;
}

.hira-projects-results-head {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.hira-projects-results-head p {
    margin: 0;
}

.hira-projects-results-head strong {
    color: var(--hira-brown, #2c1e1e);
    font-size: 1.1rem;
}

/* Project cards grid */
body.hira-home .hira-projects-page .hira-projects-grid,
.hira-projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    body.hira-home .hira-projects-page .hira-projects-grid,
    .hira-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1400px) {
    body.hira-home .hira-projects-page .hira-projects-grid,
    .hira-projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hira-projects-grid-item {
    min-width: 0;
}

.hira-project-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(44, 30, 30, 0.08);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}

.hira-project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(44, 30, 30, 0.14);
}

.hira-project-card-media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    text-decoration: none;
}

.hira-project-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

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

.hira-project-card-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    z-index: 2;
    max-width: calc(100% - 1.5rem);
}

.hira-badge {
    padding: 0.28rem 0.6rem;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.hira-badge.is-listing {
    background: rgba(243, 146, 0, 0.95);
    color: #fff;
}

.hira-badge.is-hot {
    background: var(--hira-primary, #E30613);
    color: #fff;
}

.hira-badge.is-ready {
    background: rgba(34, 197, 94, 0.92);
    color: #fff;
}

.hira-badge.is-building {
    background: rgba(59, 130, 246, 0.92);
    color: #fff;
}

.hira-project-card-price {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.65rem 1rem;
    background: linear-gradient(transparent, rgba(44, 30, 30, 0.85));
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    z-index: 2;
}

.hira-project-card-body {
    padding: 1.15rem 1.25rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hira-project-card-type {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--hira-orange, #f39200);
    margin-bottom: 0.35rem;
}

.hira-project-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.5rem;
}

body.hira-home .hira-projects-page .hira-project-card-title a,
.hira-project-card-title a {
    color: var(--hira-brown, #2c1e1e) !important;
    text-decoration: none !important;
    transition: color 0.2s;
}

body.hira-home .hira-projects-page .hira-project-card-title a:hover,
.hira-project-card-title a:hover {
    color: var(--hira-orange, #f39200) !important;
}

.hira-project-card-summary {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0.65rem;
    flex: 1;
}

.hira-project-card-location {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.hira-project-card-location i {
    color: var(--hira-orange, #f39200);
}

.hira-project-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.78rem;
    color: #888;
    margin-bottom: 1rem;
}

.hira-project-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

body.hira-home .hira-projects-page .hira-project-card-btn,
.hira-project-card-btn {
    display: block;
    text-align: center;
    padding: 0.7rem 1rem;
    background: var(--hira-brown, #2c1e1e) !important;
    color: #fff !important;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none !important;
    transition: background 0.2s;
    margin-top: auto;
    border: none;
}

body.hira-home .hira-projects-page .hira-project-card-btn:hover,
.hira-project-card-btn:hover {
    background: var(--hira-orange, #f39200) !important;
    color: #fff !important;
}

/* Empty state */
.hira-projects-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 16px;
}

.hira-projects-empty i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.hira-projects-empty h2 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.hira-projects-empty p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* SEO sections */
.hira-projects-seo {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.hira-projects-seo h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--hira-brown, #2c1e1e);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--hira-orange, #f39200);
    display: inline-block;
}

.hira-seo-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.hira-seo-content p:last-child {
    margin-bottom: 0;
}

.hira-seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.hira-seo-point {
    padding: 1.25rem;
    background: #faf9f7;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.hira-seo-point i {
    font-size: 1.5rem;
    color: var(--hira-orange, #f39200);
    margin-bottom: 0.65rem;
}

.hira-seo-point h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--hira-brown, #2c1e1e);
}

.hira-seo-point p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Pagination */
.hira-projects-pagination {
    margin-bottom: 2rem;
}

.hira-projects-pagination nav {
    display: flex;
    justify-content: center;
}

.hira-projects-pagination .pagination {
    gap: 0.35rem;
}

.hira-projects-pagination .page-link {
    border-radius: 8px;
    border: none;
    padding: 0.5rem 0.85rem;
    color: var(--hira-brown, #2c1e1e);
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hira-projects-pagination .page-item.active .page-link {
    background: var(--hira-orange, #f39200);
    color: #fff;
}

/* WhatsApp float */
.hira-whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.2s;
}

.hira-whatsapp-float:hover {
    transform: scale(1.08);
    color: #fff;
}

/* List page responsive */
@media (max-width: 1199px) {
    .hira-filter-bar .hira-filter-select {
        flex: 1 1 calc(33.333% - 0.5rem);
    }

    .hira-filter-fields {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .hira-projects-sidebar {
        position: static;
    }

    body.hira-home .hira-projects-page .hira-projects-grid,
    .hira-projects-grid {
        grid-template-columns: 1fr;
    }

    .hira-filter-bar .hira-filter-select {
        flex: 1 1 calc(50% - 0.5rem);
    }

    .hira-filter-fields {
        grid-template-columns: repeat(2, 1fr);
    }

    .hira-filter-form:not(.is-open) {
        display: none;
    }

    .hira-filter-form.is-open {
        display: block;
    }
}

@media (min-width: 992px) {
    .hira-filter-form {
        display: block !important;
    }
}

@media (max-width: 575px) {
    .hira-projects-hero {
        padding: 1.75rem 0 2rem;
    }

    .hira-projects-grid {
        grid-template-columns: 1fr;
    }

    .hira-filter-bar .hira-filter-select {
        flex: 1 1 100%;
    }

    .hira-filter-fields {
        grid-template-columns: 1fr;
    }

    .hira-whatsapp-float {
        bottom: 5rem;
        left: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .hira-project-sidebar {
        position: static;
    }

    .hira-units-table-wrap {
        overflow-x: auto;
    }

    .hira-units-table {
        min-width: 560px;
    }
}

@media (max-width: 575px) {
    .hira-project-stats {
        grid-template-columns: 1fr 1fr;
    }

    .hira-amenities-grid {
        grid-template-columns: 1fr;
    }
}

.hira-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    border: 1px solid var(--hira-primary, #E30613);
    background: transparent;
    color: var(--hira-primary, #E30613);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.hira-btn-outline:hover {
    background: var(--hira-primary, #E30613);
    color: #fff;
}

/* ── Offers page ── */
.hira-offers-hero {
    padding-bottom: 2rem;
}

.hira-offers-budget {
    margin-bottom: 1.5rem;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.06), rgba(0, 0, 0, 0.02));
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.hira-offers-budget-lead {
    margin-bottom: 0.85rem;
    font-weight: 600;
    color: var(--hira-text, #1a1a1a);
}

.hira-offers-budget-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.hira-budget-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    color: inherit;
    text-decoration: none;
    font-size: 0.92rem;
    transition: all 0.2s ease;
}

.hira-budget-chip:hover,
.hira-budget-chip.is-active {
    border-color: var(--hira-primary, #E30613);
    background: var(--hira-primary, #E30613);
    color: #fff;
}

.hira-offers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 767px) {
    .hira-offers-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Compare toggle on cards ── */
.hira-project-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.hira-compare-toggle {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    color: var(--hira-primary, #E30613);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.hira-compare-toggle:hover,
.hira-compare-toggle.is-active {
    background: var(--hira-primary, #E30613);
    border-color: var(--hira-primary, #E30613);
    color: #fff;
}

/* ── Compare floating widget ── */
.hira-compare-widget {
    position: fixed;
    right: 1.25rem;
    bottom: 6.5rem;
    z-index: 1040;
}

.hira-compare-fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: var(--hira-primary, #E30613);
    color: #fff;
    box-shadow: 0 10px 30px rgba(227, 6, 19, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    position: relative;
}

.hira-compare-fab-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hira-compare-panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 0.75rem);
    width: min(360px, calc(100vw - 2rem));
    padding: 1.25rem;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.hira-compare-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.hira-compare-panel-head h2 {
    margin: 0;
    font-size: 1.1rem;
}

.hira-compare-panel-close {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hira-compare-panel-lead {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.65);
    margin-bottom: 1rem;
}

.hira-compare-panel-list {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
    max-height: 320px;
    overflow: auto;
}

.hira-compare-panel-empty {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.55);
}

.hira-compare-panel-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 0.75rem;
    align-items: center;
    position: relative;
    padding: 0.5rem;
    border-radius: 0.75rem;
    background: rgba(0, 0, 0, 0.03);
}

.hira-compare-panel-item img {
    width: 72px;
    height: 56px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.hira-compare-panel-item-body strong {
    display: block;
    font-size: 0.85rem;
    line-height: 1.35;
    margin-bottom: 0.25rem;
}

.hira-compare-panel-item-link {
    font-size: 0.8rem;
    color: var(--hira-primary, #E30613);
    text-decoration: none;
}

.hira-compare-panel-item-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

/* ── Compare page ── */
.hira-compare-hero {
    padding-bottom: 2rem;
}

.hira-compare-selected {
    margin-bottom: 2rem;
}

.hira-compare-selected-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.hira-compare-mini-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.hira-compare-mini-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.hira-compare-mini-body {
    padding: 1rem;
}

.hira-compare-mini-body h2 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.hira-compare-mini-remove {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    z-index: 2;
}

.hira-compare-table-wrap {
    margin-bottom: 2rem;
}

.hira-compare-table-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.hira-compare-table-scroll {
    overflow-x: auto;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
}

.hira-compare-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
}

.hira-compare-table th,
.hira-compare-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    vertical-align: top;
    text-align: left;
}

.hira-compare-table thead th {
    background: rgba(227, 6, 19, 0.06);
    font-weight: 700;
}

.hira-compare-table tbody th {
    width: 180px;
    background: rgba(0, 0, 0, 0.02);
    font-weight: 600;
}

.hira-compare-cta {
    margin: 2rem 0 3rem;
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid var(--hira-primary, #E30613);
    text-align: center;
}

.hira-compare-cta h2 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.hira-compare-cta p {
    margin-bottom: 1rem;
    color: rgba(0, 0, 0, 0.65);
}

.hira-compare-empty {
    margin: 2rem 0;
}

@media (max-width: 991px) {
    .hira-compare-widget {
        left: 1rem;
        right: auto;
        bottom: calc(76px + 12px);
    }

    .hira-compare-panel {
        left: 0;
        right: auto;
    }

    html[dir="rtl"] .hira-compare-widget {
        left: auto;
        right: 1rem;
    }

    html[dir="rtl"] .hira-compare-panel {
        left: auto;
        right: 0;
    }
}

@media (max-width: 575px) {
    .hira-compare-panel {
        width: min(320px, calc(100vw - 1.5rem));
    }
}

/* ── Hakkımızda sayfası ── */
.hira-about-page {
    padding-bottom: 4rem;
}

.hira-about-hero {
    padding: 2.5rem 0 2rem;
    background: linear-gradient(180deg, rgba(227, 6, 19, 0.05) 0%, transparent 100%);
}

.hira-about-hero-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--hira-brown, #1a1a1a);
}

.hira-about-hero-lead {
    font-size: 1.15rem;
    color: rgba(0, 0, 0, 0.65);
    max-width: 42rem;
    margin: 0;
}

.hira-about-layout {
    padding-top: 1rem;
}

.hira-about-content {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.hira-about-section + .hira-about-section {
    margin-top: 2.25rem;
    padding-top: 2.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.hira-about-section h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--hira-primary, #E30613);
}

.hira-about-section p {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(0, 0, 0, 0.78);
    margin-bottom: 1rem;
}

.hira-about-section p:last-child {
    margin-bottom: 0;
}

.hira-about-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.75rem;
}

.hira-about-list--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hira-about-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.98rem;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.78);
}

.hira-about-list li i {
    color: var(--hira-primary, #E30613);
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.hira-about-closing {
    margin-top: 1.25rem !important;
    font-weight: 500;
}

.hira-about-sidebar {
    position: sticky;
    top: 7rem;
    display: grid;
    gap: 1rem;
}

.hira-about-sidebar-card {
    padding: 1.25rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.hira-about-sidebar-card h3 {
    font-size: 1rem;
    margin-bottom: 0.85rem;
}

.hira-about-sidebar-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.hira-about-sidebar-card a {
    color: var(--hira-primary, #E30613);
    text-decoration: none;
    font-weight: 500;
}

.hira-about-sidebar-card a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .hira-about-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .hira-about-content {
        padding: 1.25rem;
    }

    .hira-about-list--grid {
        grid-template-columns: 1fr;
    }
}

.hira-page-hero,
.hira-contact-hero,
.hira-team-hero {
    background: var(--hira-brown);
    color: #fff;
    padding: 2.5rem 0 2rem;
    margin-bottom: 2rem;
}

.hira-page-hero-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.hira-page-hero-lead {
    margin: 0.75rem 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
}

.hira-contact-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    padding: 2rem;
}

.hira-contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.hira-contact-item:last-of-type {
    border-bottom: none;
}

.hira-contact-item i {
    font-size: 1.5rem;
    color: var(--hira-orange);
    margin-top: 0.15rem;
}

.hira-contact-item h2 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #666;
    margin: 0 0 0.35rem;
}

.hira-contact-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--hira-brown);
}

.hira-contact-item a {
    color: inherit;
    text-decoration: none;
}

.hira-contact-item a:hover {
    color: var(--hira-orange);
}

.hira-contact-social {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.hira-contact-social > span {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--hira-brown);
}

.hira-contact-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.hira-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--hira-brown);
    color: #fff;
    font-size: 1.25rem;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
}

.hira-social-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    background: var(--hira-orange);
}

.hira-social-btn--whatsapp {
    background: #25d366;
}

.hira-social-btn--facebook {
    background: #1877f2;
}

.hira-contact-map {
    min-height: 420px;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    background: #eee;
}

.hira-team-card {
    background: #ececec;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hira-team-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.65rem 0.75rem;
    min-height: 44px;
}

.hira-team-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #111;
    color: #fff;
    font-size: 0.78rem;
    padding: 0.35rem 0.55rem;
    text-decoration: none;
    border-radius: 2px;
    max-width: calc(100% - 44px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hira-team-phone:hover {
    color: #fff;
    background: var(--hira-orange);
}

.hira-team-email {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--hira-orange);
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
    flex-shrink: 0;
}

.hira-team-photo {
    flex: 1 1 auto;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d8d8d8;
}

.hira-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 220px;
}

.hira-team-photo i {
    font-size: 5rem;
    color: #aaa;
}

.hira-team-card-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #111;
    color: #fff;
    position: relative;
    min-height: 56px;
}

.hira-team-card-footer::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(135deg, transparent 45%, #c9a227 45%, #c9a227 55%, transparent 55%);
    transform: skewX(-18deg);
}

.hira-team-name,
.hira-team-title {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.3;
}

.hira-team-name {
    font-weight: 600;
}

.hira-team-title {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
}

.hira-contact-quick-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: var(--hira-brown);
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hira-contact-quick-card:hover {
    color: var(--hira-brown);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.hira-contact-quick-card i {
    font-size: 1.75rem;
    color: var(--hira-orange);
    flex-shrink: 0;
}

.hira-contact-quick-card.is-whatsapp i {
    color: #25d366;
}

.hira-contact-quick-card strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.hira-contact-quick-card span {
    display: block;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.hira-contact-form-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    padding: 2rem;
}

.hira-contact-form-card h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
    color: var(--hira-brown);
}

.hira-contact-form-card > p {
    margin: 0 0 1.25rem;
    color: #666;
    font-size: 0.95rem;
}

.hira-contact-form .hira-optional {
    font-style: normal;
    font-weight: 400;
    color: #888;
    font-size: 0.75rem;
}

.hira-contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.hira-contact-alert i {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.hira-contact-alert.is-success {
    background: #e8f8ef;
    color: #1b6b3f;
    border: 1px solid #b8e6cc;
}

.hira-contact-alert.is-error {
    background: #fdeeee;
    color: #9b1c1c;
    border: 1px solid #f5c2c2;
}

.hira-field-error {
    display: block;
    color: #c8102e;
    font-size: 0.78rem;
    margin-top: 0.25rem;
}

.hira-contact-map--tall {
    min-height: 640px;
}

.hira-contact-map--placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #888;
    text-align: center;
    padding: 2rem;
}

.hira-contact-map--placeholder i {
    font-size: 3rem;
    color: #ccc;
}

@media (max-width: 991px) {
    .hira-contact-map--tall {
        min-height: 360px;
    }
}

@media (max-width: 767px) {
    .hira-contact-map {
        min-height: 300px;
    }

    .hira-contact-form-card {
        padding: 1.25rem;
    }
}

/* İlan tipi rozeti */
.hira-badge.is-transaction {
    background: rgba(255, 255, 255, 0.94);
    color: var(--hira-primary, #E30613);
    border: 1px solid rgba(227, 6, 19, 0.22);
}

/* Genel Bakış tablosu */
.hira-overview-grid {
    display: grid;
    gap: 1rem;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    color: #fff;
}

.hira-overview-price,
.hira-overview-location {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hira-overview-price span,
.hira-overview-location span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    min-width: 4.5rem;
}

.hira-overview-price strong,
.hira-overview-location strong {
    font-size: 1.05rem;
    font-weight: 600;
}

.hira-overview-price strong {
    color: #c9a227;
    font-size: 1.25rem;
}

.hira-overview-table {
    width: 100%;
    border-collapse: collapse;
}

.hira-overview-table th,
.hira-overview-table td {
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    vertical-align: top;
    font-size: 0.92rem;
}

.hira-overview-table tr:last-child th,
.hira-overview-table tr:last-child td {
    border-bottom: none;
}

.hira-overview-table th {
    width: 42%;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
}

.hira-overview-table td {
    font-weight: 500;
    color: #fff;
}

@media (min-width: 768px) {
    .hira-overview-grid {
        padding: 1.5rem 2rem;
    }

    .hira-overview-table th {
        width: 35%;
    }
}

/* ── İlan detay (Sahibinden tarzı) ── */
.hira-listing-detail {
    background: #f4f4f4;
    padding-top: 1.5rem;
}

.hira-listing-breadcrumb {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    padding: 0.75rem 0;
}

.hira-listing-head {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px 4px 0 0;
    padding: 1.25rem 1.5rem;
    margin-bottom: 0;
}

.hira-listing-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.hira-listing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.35rem 0.65rem;
    border-radius: 3px;
}

.hira-listing-badge.is-type {
    background: #ffe8ec;
    color: #c8102e;
}

.hira-listing-badge.is-category {
    background: #eef2ff;
    color: #3b4cca;
}

.hira-listing-badge.is-featured {
    background: #fff8e6;
    color: #b8860b;
}

.hira-listing-title {
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 700;
    line-height: 1.35;
    color: #1a1a1a;
    margin: 0 0 0.75rem;
}

.hira-listing-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    font-size: 0.88rem;
    color: #666;
}

.hira-listing-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.hira-listing-meta i {
    color: #c8102e;
    font-size: 1rem;
}

.hira-listing-gallery-wrap {
    position: relative;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-top: none;
    padding: 0;
}

.hira-listing-gallery {
    aspect-ratio: 16 / 10;
    max-height: 520px;
    overflow: hidden;
}

.hira-listing-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hira-listing-gallery .swiper-button-prev,
.hira-listing-gallery .swiper-button-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hira-listing-gallery .swiper-button-prev::after,
.hira-listing-gallery .swiper-button-next::after {
    font-size: 1rem;
    font-weight: 700;
}

.hira-listing-gallery .swiper-pagination-bullet-active {
    background: #c8102e;
}

.hira-listing-gallery-count {
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 0.78rem;
    padding: 0.35rem 0.65rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.hira-listing-lead {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-top: none;
    padding: 1rem 1.5rem;
    margin: 0;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
}

.hira-listing-section {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-top: none;
    padding: 1.25rem 1.5rem 1.5rem;
}

.hira-listing-section-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid #c8102e;
    display: inline-block;
}

.hira-listing-prose {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #333;
}

.hira-listing-amenities {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem 1rem;
}

.hira-listing-amenities li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #333;
}

.hira-listing-amenities i {
    color: #c8102e;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hira-listing-nearby {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.65rem;
}

.hira-listing-nearby li {
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 0.75rem 1rem;
}

.hira-listing-nearby strong {
    display: block;
    font-size: 0.9rem;
    color: #1a1a1a;
}

.hira-listing-nearby span {
    font-size: 0.82rem;
    color: #888;
}

.hira-listing-sidebar {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hira-listing-price-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    padding: 0.85rem 1rem;
}

.hira-listing-specs-card,
.hira-listing-agent-card,
.hira-listing-similar {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    padding: 1.25rem;
}

.hira-listing-price-main {
    font-size: clamp(1.35rem, 2.5vw, 1.55rem);
    font-weight: 800;
    color: #c8102e;
    line-height: 1.2;
    margin-bottom: 0.35rem;
}

.hira-listing-price-main.is-muted {
    font-size: 1rem;
    color: #666;
}

.hira-listing-price-unit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.45rem 0;
    margin-bottom: 0.65rem;
    border-top: 1px dashed #e0e0e0;
    border-bottom: 1px dashed #e0e0e0;
    font-size: 0.78rem;
}

.hira-listing-price-unit-label {
    color: #666;
}

.hira-listing-price-unit strong {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.82rem;
}

.hira-listing-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.hira-listing-contact-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    font-size: 0.85rem;
}

.hira-listing-specs-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.85rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #333;
}

.hira-listing-specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.hira-listing-specs-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.hira-listing-specs-table tr:last-child {
    border-bottom: none;
}

.hira-listing-specs-table th,
.hira-listing-specs-table td {
    padding: 0.55rem 0;
    vertical-align: top;
    text-align: left;
}

.hira-listing-specs-table th {
    width: 46%;
    font-weight: 500;
    color: #666;
    padding-right: 0.75rem;
}

.hira-listing-specs-table td {
    font-weight: 600;
    color: #1a1a1a;
}

.hira-listing-agent-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.hira-listing-agent-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hira-listing-agent-head strong {
    display: block;
    font-size: 0.95rem;
    color: #1a1a1a;
}

.hira-listing-agent-head span {
    font-size: 0.8rem;
    color: #888;
}

.hira-btn-outline {
    background: #fff;
    border: 1px solid #ccc;
    color: #333;
    font-weight: 600;
    border-radius: 4px;
    padding: 0.65rem 1rem;
}

.hira-btn-outline:hover {
    border-color: #c8102e;
    color: #c8102e;
}

.hira-listing-similar h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 0.85rem;
    color: #1a1a1a;
}

.hira-listing-similar-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
}

.hira-listing-similar-item:last-of-type {
    border-bottom: none;
}

.hira-listing-similar-item img {
    width: 72px;
    height: 54px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}

.hira-listing-similar-item strong {
    display: block;
    font-size: 0.82rem;
    line-height: 1.35;
    color: #1a1a1a;
    margin-bottom: 0.2rem;
}

.hira-listing-similar-item span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #c8102e;
}

.hira-listing-similar-all {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.75rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #c8102e;
    text-decoration: none;
}

.hira-listing-similar-all:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .hira-listing-sidebar {
        position: static;
    }

    .hira-listing-head {
        border-radius: 4px;
        margin-bottom: 1rem;
    }

    .hira-listing-gallery-wrap,
    .hira-listing-lead,
    .hira-listing-section {
        border-radius: 4px;
        margin-bottom: 1rem;
        border-top: 1px solid #e8e8e8;
    }
}

/* Services page */
.hira-services-page {
    background: #faf8f6;
}

.hira-services-layout {
    padding-top: 2rem;
}

.hira-services-nav {
    position: sticky;
    top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid #eee8e3;
    border-radius: 16px;
    padding: 0.75rem;
}

.hira-services-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    color: var(--hira-brown);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
}

.hira-services-nav-link i {
    margin-left: auto;
    color: var(--hira-orange);
}

.hira-services-nav-link:hover,
.hira-services-nav-link:focus,
.hira-services-nav-link.is-active {
    background: rgba(243, 146, 0, 0.08);
    color: var(--hira-orange);
}

.hira-service-card {
    display: block;
    height: 100%;
    background: #fff;
    border: 1px solid #eee8e3;
    border-radius: 18px;
    padding: 1.5rem;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.hira-service-card:hover,
.hira-service-card:focus {
    border-color: rgba(243, 146, 0, 0.35);
    box-shadow: 0 12px 32px rgba(62, 39, 35, 0.08);
    transform: translateY(-2px);
    color: inherit;
}

.hira-service-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(243, 146, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.hira-service-card-icon img {
    width: 26px;
    height: 26px;
}

.hira-service-card h2 {
    font-size: 1.15rem;
    margin: 0 0 0.5rem;
    color: var(--hira-brown);
}

.hira-service-card p {
    margin: 0 0 1rem;
    color: #6b5f5a;
    font-size: 0.95rem;
    line-height: 1.55;
}

.hira-service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    color: var(--hira-orange);
    font-size: 0.9rem;
}

.hira-service-block {
    background: #fff;
    border: 1px solid #eee8e3;
    border-radius: 18px;
    padding: 1.75rem;
    margin-bottom: 0;
    scroll-margin-top: 6rem;
}

.hira-service-block-head {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.hira-service-block-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(243, 146, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hira-service-block-icon img {
    width: 28px;
    height: 28px;
}

.hira-service-block-num {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--hira-orange);
    margin-bottom: 0.35rem;
}

.hira-service-block h2 {
    font-size: 1.35rem;
    margin: 0 0 0.35rem;
    color: var(--hira-brown);
}

.hira-service-block-summary {
    margin: 0;
    color: #6b5f5a;
}

.hira-service-contact {
    margin-top: 2.5rem;
    background: #fff;
    border: 1px solid #eee8e3;
    border-radius: 18px;
    padding: 2rem;
}

.hira-service-contact-head {
    margin-bottom: 1.5rem;
}

.hira-service-contact-head h2 {
    margin: 0 0 0.5rem;
    font-size: 1.35rem;
    color: var(--hira-brown);
}

.hira-service-contact-head p {
    margin: 0;
    color: #6b5f5a;
    max-width: 42rem;
}

.hira-service-contact .hira-btn-primary {
    background: #8b2332;
    border-color: #8b2332;
}

.hira-service-contact .hira-btn-primary:hover {
    background: #6f1c28;
    border-color: #6f1c28;
}

@media (max-width: 991.98px) {
    .hira-services-nav {
        position: static;
        margin-bottom: 1rem;
    }

    .hira-service-contact {
        margin-top: 1.5rem;
        padding: 1.25rem;
    }
}

/* ── Blog & Haberler ── */
.hira-post-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 2rem 0 2.5rem;
}

.hira-post-filter-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    color: var(--titleColor, #1a1a1a);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.hira-post-filter-pill:hover,
.hira-post-filter-pill.is-active {
    background: var(--primaryColor, #e30613);
    border-color: var(--primaryColor, #e30613);
    color: #fff;
}

.hira-post-card {
    height: 100%;
}

.hira-post-card-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.hira-post-card .blog-img {
    height: 240px;
}

.hira-post-card .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.hira-post-card-body {
    padding-top: 1.25rem;
}

.hira-post-card-category {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primaryColor, #e30613);
    margin-bottom: 0.65rem;
}

.hira-post-card h3 {
    color: var(--titleColor, #1a1a1a);
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
}

.hira-post-card:hover h3 {
    color: var(--primaryColor, #e30613);
}

.hira-post-card-summary {
    color: var(--paraColor, #666);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hira-post-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--paraColor, #666);
}

.hira-post-card-meta i {
    margin-right: 0.35rem;
}

.hira-post-pagination {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.hira-post-pagination .pagination {
    gap: 0.35rem;
}

.hira-post-detail-category {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--hira-orange, #f39200);
}

.hira-post-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
}

.hira-post-detail-meta i {
    margin-right: 0.35rem;
}

.hira-post-detail-cover img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.hira-post-detail-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #5c534f;
    margin-bottom: 1.5rem;
}

.hira-post-detail-content {
    color: var(--paraColor, #444);
    line-height: 1.85;
    font-size: 1.02rem;
}

.hira-post-detail-content > *:first-child {
    margin-top: 0;
}

.hira-post-detail-content > *:last-child {
    margin-bottom: 0;
}

.hira-post-detail-content h2,
.hira-post-detail-content h3,
.hira-post-detail-content h4 {
    color: var(--titleColor, #1a1a1a);
    margin: 1.75rem 0 0.85rem;
    line-height: 1.35;
}

.hira-post-detail-content h2 { font-size: 1.55rem; }
.hira-post-detail-content h3 { font-size: 1.3rem; }
.hira-post-detail-content h4 { font-size: 1.12rem; }

.hira-post-detail-content p {
    margin-bottom: 1.1rem;
}

.hira-post-detail-content ul,
.hira-post-detail-content ol {
    margin: 0 0 1.25rem;
    padding-left: 1.35rem;
}

.hira-post-detail-content li + li {
    margin-top: 0.35rem;
}

.hira-post-detail-content blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border-left: 4px solid rgba(227, 6, 19, 0.65);
    background: rgba(227, 6, 19, 0.05);
    border-radius: 0 12px 12px 0;
    font-style: italic;
}

.hira-post-detail-content a {
    color: var(--primaryColor, #e30613);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hira-post-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    margin: 1.25rem 0;
}

.hira-post-detail-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25rem 0;
    font-size: 0.95rem;
}

.hira-post-detail-content th,
.hira-post-detail-content td {
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.65rem 0.85rem;
    text-align: left;
}

.hira-post-detail-content th {
    background: rgba(0, 0, 0, 0.03);
    font-weight: 600;
}

.hira-post-sidebar {
    position: sticky;
    top: 110px;
}

.hira-post-sidebar-block {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.hira-post-sidebar-block h2 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--titleColor, #1a1a1a);
}

.hira-post-related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hira-post-related-list li + li {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.hira-post-related-list a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.hira-post-related-title {
    display: block;
    font-weight: 600;
    color: var(--titleColor, #1a1a1a);
    line-height: 1.45;
}

.hira-post-related-date {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.82rem;
    color: var(--paraColor, #666);
}

.hira-post-sidebar-cta {
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.08), rgba(243, 146, 0, 0.12));
}

@media (max-width: 991.98px) {
    .hira-post-sidebar {
        position: static;
    }
}

/* Yatırım fırsatları */
.hira-investments-page .hira-investments-layout {
    padding-top: 2rem;
}

.hira-investment-card {
    display: block;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.hira-investment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.hira-investment-card-head {
    padding: 1.35rem 1.35rem 1rem;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hira-investment-card-head h2 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.45;
    color: var(--titleColor, #1a1a1a);
    font-weight: 700;
}

.hira-investment-card-media {
    aspect-ratio: 16 / 10;
}

.hira-investment-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hira-investment-detail-layout {
    padding-top: 0.5rem;
}

.hira-investment-detail-hero-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
}

.hira-investment-detail-hero-text {
    padding: 2.5rem 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hira-investment-detail-hero-text h1 {
    margin: 0;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    line-height: 1.3;
    color: var(--titleColor, #1a1a1a);
    font-weight: 700;
}

.hira-investment-detail-hero-image {
    min-height: 280px;
    height: 100%;
}

.hira-investment-detail-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.hira-investment-detail-content {
    color: var(--paraColor, #444);
    line-height: 1.9;
    font-size: 1.02rem;
    margin-bottom: 2.5rem;
}

.hira-investment-detail-content p {
    margin-bottom: 1.15rem;
}

.hira-investment-detail-content p:last-child {
    margin-bottom: 0;
}

.hira-investment-detail-content h2,
.hira-investment-detail-content h3 {
    color: var(--titleColor, #1a1a1a);
    margin: 1.5rem 0 0.75rem;
}

.hira-investment-detail-content ul,
.hira-investment-detail-content ol {
    margin: 0 0 1.15rem;
    padding-left: 1.35rem;
}

.hira-investment-detail-content a {
    color: var(--primaryColor, #e30613);
}

.hira-investment-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1rem 0;
}

.hira-investment-contact {
    background: #f4f4f4;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

.hira-investment-contact .hira-btn-primary {
    background: #8b2332;
    border-color: #8b2332;
}

.hira-investment-contact .hira-btn-primary:hover {
    background: #6f1c28;
    border-color: #6f1c28;
}

@media (max-width: 991.98px) {
    .hira-investment-detail-hero-text {
        padding: 1.75rem 1.25rem;
    }

    .hira-investment-contact {
        padding: 1.25rem;
    }
}

/* Referanslar — firma logoları */
.hira-testimonials-layout {
    padding-top: 0.5rem;
}

.hira-references-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.hira-reference-logo-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 1.75rem 1.25rem;
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hira-reference-logo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    border-color: rgba(227, 6, 19, 0.15);
}

.hira-reference-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.hira-reference-logo {
    max-width: 100%;
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.92;
    transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.hira-reference-logo-card:hover .hira-reference-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.03);
}

.hira-reference-name {
    display: block;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--titleColor, #1a1a1a);
    padding: 0 0.5rem;
    word-break: break-word;
}

@media (min-width: 768px) {
    .hira-references-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .hira-reference-logo-card {
        min-height: 150px;
        padding: 2rem 1.5rem;
    }

    .hira-reference-logo {
        max-height: 84px;
    }
}

@media (min-width: 1200px) {
    .hira-references-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.75rem;
    }

    .hira-reference-logo-card {
        min-height: 160px;
    }

    .hira-reference-logo {
        max-height: 96px;
    }
}

/* İK Sayfası */
.hira-careers-hero {
    padding-bottom: 2.5rem;
}

.hira-careers-hero-image {
    aspect-ratio: 4 / 3;
    background: rgba(0, 0, 0, 0.04);
}

.hira-careers-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hira-careers-layout {
    padding-top: 0.5rem;
}

.hira-careers-content {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    color: rgba(0, 0, 0, 0.78);
    line-height: 1.85;
    font-size: 1.02rem;
    margin-bottom: 2rem;
}

.hira-careers-content p {
    margin-bottom: 1.15rem;
}

.hira-careers-content p:last-child {
    margin-bottom: 0;
}

.hira-careers-content h2,
.hira-careers-content h3 {
    color: var(--titleColor, #1a1a1a);
    margin: 1.5rem 0 0.75rem;
}

.hira-careers-content ul,
.hira-careers-content ol {
    margin: 0 0 1.15rem;
    padding-left: 1.35rem;
}

.hira-careers-content a {
    color: var(--hira-primary, #E30613);
}

.hira-careers-requirements {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.hira-careers-requirements h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--hira-primary, #E30613);
}

.hira-careers-sidebar {
    position: sticky;
    top: 7rem;
}

.hira-careers-sidebar .hira-contact-form-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.hira-careers-sidebar .hira-contact-form-card h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--titleColor, #1a1a1a);
}

.hira-careers-sidebar .hira-contact-form-card > p {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.65);
    margin-bottom: 1.25rem;
}

.hira-careers-sidebar .hira-btn-primary {
    background: #8b2332;
    border-color: #8b2332;
}

.hira-careers-sidebar .hira-btn-primary:hover {
    background: #6f1c28;
    border-color: #6f1c28;
}

.hira-careers-form input[type="file"] {
    padding: 0.55rem 0.75rem;
    background: #fafafa;
    cursor: pointer;
}

.hira-careers-form .hira-field-hint {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.5);
}

.hira-careers-form .hira-field-error {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.82rem;
    color: #c0392b;
}

@media (max-width: 991.98px) {
    .hira-careers-sidebar {
        position: static;
    }

    .hira-careers-content,
    .hira-careers-requirements {
        padding: 1.25rem;
    }
}

/* Kanal sayfası */
.hira-channel-hero {
    margin-bottom: 0;
    padding-bottom: 1.5rem;
}

.hira-channel-layout {
    padding-top: 0.5rem;
}

.hira-channel-intro {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.hira-channel-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: var(--titleColor, #1a1a1a);
}

.hira-channel-subtitle {
    font-size: 1.05rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 0.75rem;
}

.hira-channel-stats {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 1rem;
}

.hira-channel-stats-sep {
    margin: 0 0.4rem;
}

.hira-channel-description {
    color: rgba(0, 0, 0, 0.75);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.hira-channel-subscribe {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hira-channel-featured {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.hira-channel-featured img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.hira-channel-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    color: #fff;
    font-size: 3rem;
    transition: background 0.25s ease;
}

.hira-channel-featured:hover .hira-channel-play {
    background: rgba(0, 0, 0, 0.4);
}

.hira-channel-section {
    margin-bottom: 2.5rem;
}

.hira-channel-section h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--titleColor, #1a1a1a);
}

.hira-channel-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.hira-channel-section-head h2 {
    margin-bottom: 0;
}

.hira-channel-see-all {
    color: var(--hira-primary, #E30613);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.hira-channel-see-all:hover {
    text-decoration: underline;
}

.hira-channel-video-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}

.hira-channel-video-row--shorts {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.hira-channel-video-card {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    text-decoration: none;
    color: inherit;
}

.hira-channel-video-card.is-short .hira-channel-video-thumb {
    aspect-ratio: 9 / 16;
}

.hira-channel-video-thumb {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #f0f0f0;
}

.hira-channel-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.hira-channel-video-card:hover .hira-channel-video-thumb img {
    transform: scale(1.04);
}

.hira-channel-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.hira-channel-video-card:hover .hira-channel-video-play {
    opacity: 1;
}

.hira-channel-video-duration {
    position: absolute;
    right: 0.5rem;
    bottom: 0.5rem;
    background: rgba(0, 0, 0, 0.78);
    color: #fff;
    font-size: 0.75rem;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
}

.hira-channel-video-title {
    font-size: 0.92rem;
    line-height: 1.45;
    font-weight: 600;
    color: var(--titleColor, #1a1a1a);
}

.hira-channel-cta {
    background: #f4f4f4;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.hira-channel-cta h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.hira-channel-cta p {
    color: rgba(0, 0, 0, 0.72);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.hira-channel-cta-btn {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: var(--titleColor, #1a1a1a);
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
}

.hira-channel-cta-btn:hover {
    border-color: var(--hira-primary, #E30613);
    color: var(--hira-primary, #E30613);
}

.hira-channel-playlist-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.hira-channel-playlist-filter {
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    color: rgba(0, 0, 0, 0.72);
    border-radius: 999px;
    padding: 0.45rem 1rem;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hira-channel-playlist-filter.is-active,
.hira-channel-playlist-filter:hover {
    border-color: var(--hira-primary, #E30613);
    color: var(--hira-primary, #E30613);
    background: rgba(227, 6, 19, 0.05);
}

@media (max-width: 991.98px) {
    .hira-channel-intro {
        padding: 1.25rem;
    }

    .hira-channel-section-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Gizlilik Politikası */
.hira-privacy-hero {
    padding-bottom: 2.5rem;
}

.hira-privacy-hero-image {
    aspect-ratio: 16 / 10;
    background: rgba(0, 0, 0, 0.04);
}

.hira-privacy-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hira-privacy-layout {
    padding-top: 0.5rem;
}

.hira-privacy-content {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    color: rgba(0, 0, 0, 0.78);
    line-height: 1.85;
    font-size: 1.02rem;
}

.hira-privacy-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hira-primary, #E30613);
    margin: 2rem 0 0.85rem;
}

.hira-privacy-content h2:first-child {
    margin-top: 0;
}

.hira-privacy-content p {
    margin-bottom: 1rem;
}

.hira-privacy-content p:last-child {
    margin-bottom: 0;
}

.hira-privacy-content ul,
.hira-privacy-content ol {
    margin: 0 0 1rem;
    padding-left: 1.35rem;
}

.hira-privacy-content li {
    margin-bottom: 0.45rem;
}

.hira-privacy-content a {
    color: var(--hira-primary, #E30613);
}

.hira-privacy-sidebar {
    position: sticky;
    top: 7rem;
}

@media (max-width: 991.98px) {
    .hira-privacy-sidebar {
        position: static;
    }

    .hira-privacy-content {
        padding: 1.25rem;
    }
}

/* Danışman doğrulama modalı */
.hira-agent-modal.modal {
    z-index: 1060;
}

.hira-agent-modal .modal-dialog {
    max-width: 460px;
    margin: 1.75rem auto;
}

.hira-agent-modal .modal-content {
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.hira-agent-modal .modal-header,
.hira-agent-modal .modal-body,
.hira-agent-modal .modal-footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.hira-agent-modal .modal-header {
    padding-top: 1.35rem;
    padding-bottom: 0.25rem;
}

.hira-agent-modal .modal-body {
    padding-top: 0.75rem;
    padding-bottom: 0.5rem;
}

.hira-agent-modal .modal-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
    padding-top: 0.5rem;
    padding-bottom: 1.35rem;
}

.hira-agent-modal .modal-title {
    font-size: 1.15rem;
    color: var(--hira-brown, #2c1e1e);
}

.hira-agent-modal-lead {
    margin: 0 0 1.15rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.62);
}

.hira-agent-modal-input {
    min-height: 48px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 0.65rem 0.9rem;
    font-size: 0.95rem;
}

.hira-agent-modal-input:focus {
    border-color: var(--hira-orange, #f39200);
    box-shadow: 0 0 0 0.2rem rgba(243, 146, 0, 0.15);
}

.hira-agent-modal .hira-btn-primary,
.hira-agent-modal .hira-btn-ghost {
    padding: 0.65rem 1.25rem !important;
    border-radius: 10px !important;
    font-size: 0.9rem;
    min-height: 44px;
}

.hira-btn-ghost {
    background: transparent !important;
    color: rgba(0, 0, 0, 0.62) !important;
    border: 1px solid rgba(0, 0, 0, 0.14) !important;
    box-shadow: none !important;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.hira-btn-ghost:hover {
    background: rgba(0, 0, 0, 0.04) !important;
    color: var(--hira-brown, #2c1e1e) !important;
    border-color: rgba(0, 0, 0, 0.22) !important;
    transform: none;
}

.modal-backdrop.show {
    z-index: 1055;
}

.hira-agent-verify-result {
    margin-bottom: 1rem;
}

.hira-agent-verify-result.is-success {
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.hira-agent-verify-result.is-error {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: rgba(227, 6, 19, 0.08);
    border: 1px solid rgba(227, 6, 19, 0.2);
}

.hira-agent-verify-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.65rem;
}

.hira-agent-verify-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #fff;
}

.hira-agent-verify-photo.is-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.06);
    color: rgba(0, 0, 0, 0.45);
    font-size: 1.35rem;
}

.hira-agent-verify-copy {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.hira-agent-verify-name {
    font-size: 1rem;
    color: var(--hira-brown, #2c1e1e);
}

.hira-agent-verify-title {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.58);
}

.hira-agent-verify-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.2rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #15803d;
}

.hira-agent-verify-message {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.68);
}

.hira-agent-verify-result.is-error .hira-agent-verify-message {
    color: var(--hira-primary, #E30613);
}

.hira-agent-modal-input.is-invalid {
    border-color: var(--hira-primary, #E30613);
    box-shadow: 0 0 0 0.2rem rgba(227, 6, 19, 0.12);
}

@media (max-width: 575.98px) {
    .hira-agent-modal .modal-footer {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .hira-agent-modal .hira-btn-primary,
    .hira-agent-modal .hira-btn-ghost {
        width: 100%;
        justify-content: center;
    }
}

/* Bir Emlak Ekleyin sayfası */
.hira-property-add-page .hira-contact-hero {
    padding-bottom: 3.25rem;
}

.hira-property-add-page .hira-contact-layout {
    margin-top: -2.25rem;
    position: relative;
    z-index: 2;
}

.hira-property-add-page .hira-contact-form-card,
.hira-property-add-page .hira-contact-card {
    height: 100%;
}

.hira-property-add-page .hira-contact-form .row > [class*="col"] > label {
    margin-bottom: 0;
    height: 100%;
}

.hira-property-add-page .hira-contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.hira-property-add-page .hira-contact-form .hira-btn-primary {
    border-radius: 10px;
    padding: 0.85rem 1.5rem;
    margin-top: 1.25rem;
    font-size: 0.95rem;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.18);
}

.hira-property-add-page .hira-contact-form .hira-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(227, 6, 19, 0.24);
}

@media (max-width: 991px) {
    .hira-property-add-page .hira-contact-layout {
        margin-top: 0;
    }

    .hira-property-add-page .hira-contact-hero {
        padding-bottom: 2rem;
    }
}
