/* Hira Real Estate — logo kırmızı & siyah (admin panelinden özelleştirilebilir) */
:root {
    --hira-brown: #1a1a1a;
    --hira-brown-light: #2d2d2d;
    --hira-orange: #e30613;
    --hira-orange-dark: #b8050f;
    --hira-cream: #f5f5f5;
    --hira-gold: #e8e8e8;
}

body.hira-home {
    --primaryColor: var(--hira-orange);
    --secondaryColor: var(--hira-gold);
    --optionalColor: var(--hira-brown);
    --hira-nav-desktop-min: 1366px;
    --hira-site-max-width: 1366px;
    background: var(--hira-cream);
}

body.hira-home .hira-site-header .container-fluid {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-left: clamp(16px, 2.5vw, 48px) !important;
    padding-right: clamp(16px, 2.5vw, 48px) !important;
}

body.hira-home .hira-footer .container,
body.hira-home .hira-footer .container-fluid {
    width: 100%;
    max-width: var(--hira-site-max-width);
    margin-inline: auto;
}

/* Site header — her zaman hero'nun üstünde */
.hira-site-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    width: 100%;
    overflow: visible;
    background: var(--hira-brown);
}

/* Top bar */
.hira-topbar {
    position: relative;
    z-index: 1000;
    overflow: visible;
    background: var(--hira-brown);
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hira-topbar a,
.hira-topbar button {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    transition: color 0.2s;
}

.hira-topbar a:hover,
.hira-topbar button:hover {
    color: var(--hira-orange);
}

.hira-topbar-utils {
    align-items: center;
    gap: 1.25rem !important;
}

.hira-topbar-utils>label,
.hira-topbar-utils>.hira-lang-picker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 20px;
    line-height: 1;
    flex-shrink: 0;
}

.hira-topbar select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 13px;
    line-height: 1;
    height: 20px;
    padding: 0 14px 0 0;
    margin: 0;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,0.75)'%3E%3Cpath d='M12 16.5 6 10.5h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 14px;
}

.hira-topbar select option {
    color: #111;
}

.hira-topbar label {
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0;
}

.hira-topbar label>span {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1;
    white-space: nowrap;
}

.hira-topbar-links {
    row-gap: 0.5rem;
}

.hira-topbar-dropdown {
    position: relative;
    z-index: 1001;
}

.hira-topbar-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
}

.hira-topbar-dropdown-toggle i {
    font-size: 0.95rem;
    opacity: 0.75;
    transition: transform 0.2s ease;
}

.hira-topbar-dropdown.is-open .hira-topbar-dropdown-toggle i,
.hira-topbar-dropdown:hover .hira-topbar-dropdown-toggle i {
    transform: rotate(180deg);
}

.hira-topbar-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 160px;
    margin: 0;
    padding: 0.4rem 0;
    list-style: none;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.hira-topbar-dropdown.is-open .hira-topbar-dropdown-menu,
.hira-topbar-dropdown:hover .hira-topbar-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hira-topbar-dropdown-menu a {
    display: block;
    padding: 0.45rem 0.9rem;
    color: #333 !important;
    font-size: 13px;
    white-space: nowrap;
}

.hira-topbar-dropdown-menu a:hover {
    color: var(--hira-orange) !important;
    background: rgba(227, 6, 19, 0.06);
}

.hira-lang-picker {
    position: relative;
    z-index: 1001;
}

.hira-lang-picker-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    height: 20px;
    padding: 0;
    border: none;
    border-radius: 0.35rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
}

.hira-lang-picker-toggle:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.hira-lang-picker.is-open .hira-lang-picker-toggle {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.hira-lang-flag {
    display: block;
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.hira-lang-code {
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
}

.hira-lang-chevron {
    font-size: 0.95rem;
    opacity: 0.75;
    transition: transform 0.2s ease;
}

.hira-lang-picker.is-open .hira-lang-chevron {
    transform: rotate(180deg);
}

.hira-lang-picker-menu {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    z-index: 1200;
    min-width: 10.5rem;
    margin: 0;
    padding: 0.35rem;
    list-style: none;
    border-radius: 0.65rem;
    background: #fff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: none;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}

.hira-lang-picker.is-open .hira-lang-picker-menu {
    display: block;
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.hira-topbar .hira-lang-picker-menu .hira-lang-picker-option {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 0.6rem;
    border-radius: 0.45rem;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.15s ease, color 0.15s ease;
}

.hira-topbar .hira-lang-picker-menu .hira-lang-picker-option:hover {
    background: rgba(227, 6, 19, 0.08);
    color: var(--hira-primary, #E30613);
}

.hira-topbar .hira-lang-picker-menu .hira-lang-picker-option.is-active {
    background: rgba(227, 6, 19, 0.1);
    color: var(--hira-primary, #E30613);
    font-weight: 600;
}

.hira-topbar .hira-lang-picker-menu .hira-lang-name {
    color: inherit;
    white-space: nowrap;
}

/* Küçük laptop: hamburger menü; geniş ekran: masaüstü menü */
.hira-nav-mobile-only {
    display: none;
}

.hira-nav-desktop-only {
    display: none;
}

.hira-topbar-extra-link {
    display: none;
}

@media (max-width: 1365px) {
    .hira-nav-mobile-only {
        display: flex;
    }

    .hira-topbar-extra-link {
        display: none !important;
    }

    .hira-topbar {
        padding: 6px 0;
        font-size: 12px;
    }

    .hira-topbar label>span {
        display: none;
    }

    .hira-topbar-utils {
        gap: 0.75rem !important;
    }

    .hira-callback-tab {
        min-height: 170px;
        width: 36px;
        padding: 10px 6px;
    }

    .hira-callback-tab-text {
        font-size: 11px;
    }

    .hira-callback-panel {
        width: min(280px, calc(100vw - 48px));
    }
}

@media (min-width: 1366px) {
    .hira-nav-desktop-only {
        display: flex;
    }

    .hira-nav-mobile-only {
        display: none !important;
    }

    .hira-mobile-drawer {
        display: none !important;
    }

    .hira-topbar-extra-link {
        display: inline-flex;
    }
}

/* Navbar */
.navbar-area.hira-navbar {
    position: relative !important;
    top: auto !important;
    background: var(--hira-brown) !important;
    box-shadow: 0 4px 20px rgba(44, 30, 30, 0.2);
    z-index: 1;
}

.navbar-area.hira-navbar.sticky {
    position: relative !important;
    top: auto !important;
    background: var(--hira-brown) !important;
}

/* Navbar — yuvarlak logo üstte, menü altta */
.hira-navbar .hira-navbar-stacked {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
}

.hira-navbar-logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 12px 0 4px;
}

.hira-navbar-mobile-bar {
    align-items: center;
    gap: 8px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.hira-navbar-menu-row {
    position: relative;
    align-items: center;
    justify-content: flex-start;
    min-height: 52px;
    padding: 4px 0 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hira-navbar-menu-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    min-width: 0;
    max-width: calc(100% - 200px);
    z-index: 1;
}

.hira-navbar-menu-center .menu-area {
    margin: 0 !important;
}

.hira-navbar-menu-contact {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    margin-left: auto;
}

.hira-navbar-start {
    position: absolute;
    inset: 0 auto auto 0;
    width: 0;
    height: 0;
    overflow: visible;
    pointer-events: none;
}

.hira-navbar-start .menu,
.hira-navbar-start .overlay {
    pointer-events: auto;
}

@media (min-width: 1366px) {
    body.hira-home .hira-navbar .container-fluid {
        max-width: min(100%, 1800px);
        margin-inline: auto;
    }

    .hira-navbar-logo-row {
        padding: 16px 0 8px;
    }

    .hira-navbar-menu-row .menu {
        position: static !important;
        transform: none !important;
        background: transparent !important;
        overflow: visible !important;
        width: auto !important;
        height: auto !important;
    }

    .hira-navbar-menu-row .menu-mobile-header,
    .hira-navbar-menu-row .hira-mobile-menu-extras {
        display: none !important;
    }

    .hira-navbar-menu-row .menu>ul>li {
        display: block !important;
        margin-right: 0 !important;
        flex: 0 0 auto;
    }

    .hira-navbar-menu-row .hira-main-menu {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 2px 4px;
    }

    .hira-navbar-menu-row .menu>ul>li>a {
        padding: 10px 12px !important;
        border-bottom: none !important;
    }

    .hira-navbar-menu-row .menu>ul>li>.menu-subs {
        width: auto !important;
        min-width: 220px;
        max-width: min(320px, 90vw);
    }

    .hira-navbar-menu-row .hira-main-menu>li.is-scroll-closed>.menu-subs,
    .hira-navbar-menu-row .hira-main-menu>li.is-scroll-closed:hover>.menu-subs {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .hira-navbar-menu-row .hira-main-menu>li:not(:hover)>.menu-subs {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .navbar-area.hira-navbar.style-one .container-fluid {
        padding-left: clamp(16px, 2.5vw, 48px) !important;
        padding-right: clamp(16px, 2.5vw, 48px) !important;
    }
}

.hira-navbar .menu>ul>li .menu-subs {
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    min-width: 17rem;
}

.hira-navbar .menu>ul>li .menu-subs li a {
    color: #1a1a1a;
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

.hira-navbar .menu>ul>li .menu-subs li a:hover,
.hira-navbar .menu>ul>li .menu-subs li a.active {
    color: var(--hira-primary, #E30613);
    background: rgba(227, 6, 19, 0.04);
}

.hira-logo--stacked {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    line-height: 0;
}

@keyframes logoPulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.03);
        opacity: 1;
    }

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

.hira-logo img {
    display: block;
    border: none !important;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.hira-logo--stacked img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 50%;
    animation: logoPulse 3s infinite ease-in-out;
}

.hira-logo--stacked:hover img {
    transform: scale(1.05);
}

.navbar-area.hira-navbar .navbar-brand img {
    max-width: none !important;
}

@media (min-width: 1366px) {
    .hira-logo--stacked img {
        width: 100px;
        height: 100px;
    }
}

@media (min-width: 1441px) {
    .hira-logo--stacked img {
        width: 110px;
        height: 110px;
    }
}

@media (min-width: 1366px) {
    .hira-main-menu>li>a {
        color: rgba(255, 255, 255, 0.92) !important;
        font-weight: 500;
        font-size: clamp(12px, 0.95vw, 14px);
        letter-spacing: 0.01em;
        padding: 12px clamp(8px, 0.9vw, 13px) !important;
        white-space: nowrap;
    }
}

@media (min-width: 1366px) and (max-width: 1440px) {
    .hira-logo--stacked img {
        width: 92px;
        height: 92px;
    }

    .hira-navbar-menu-row .hira-main-menu>li>a {
        padding: 8px 10px !important;
        font-size: 13px !important;
    }

    .hira-navbar-menu-center {
        max-width: calc(100% - 180px);
    }

    .hira-navbar-menu-contact .hira-btn-contact-label {
        display: none;
    }

    .hira-navbar-menu-contact .hira-btn-contact {
        width: 42px;
        height: 42px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }

    .hira-navbar-menu-contact .hira-btn-contact i {
        margin: 0;
    }
}

@media (min-width: 1441px) {
    .hira-navbar-menu-contact .hira-btn-contact-label {
        display: inline;
    }
}

.hira-main-menu>li>a:hover,
.hira-main-menu>li>a.active {
    color: var(--hira-orange) !important;
}

.hira-main-menu>li.menu-item-has-children {
    position: relative;
}

.hira-main-menu>li.menu-item-has-children>.menu-subs {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    margin: 0;
    padding: 0.5rem 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 1200;
}

.hira-main-menu>li.menu-item-has-children:hover>.menu-subs {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hira-main-menu>li.menu-item-has-children>.menu-subs li {
    display: block;
    margin: 0;
}

.hira-main-menu>li.menu-item-has-children>.menu-subs a {
    display: block;
    padding: 0.65rem 1.1rem !important;
    color: var(--hira-brown) !important;
    font-size: 14px !important;
    white-space: nowrap;
}

.hira-main-menu>li.menu-item-has-children>.menu-subs a:hover {
    color: var(--hira-orange) !important;
    background: rgba(227, 6, 19, 0.06);
}

.hira-main-menu .menu-subs .menu-item-has-children {
    position: relative;
}

.hira-main-menu .menu-subs .menu-item-has-children>.menu-subs {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 260px;
    margin: 0;
    padding: 0.5rem 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 1201;
}

.hira-main-menu .menu-subs .menu-item-has-children:hover>.menu-subs {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.hira-main-menu .menu-subs .menu-item-has-children>a i {
    float: right;
    margin-top: 2px;
}

.hira-auth-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.hira-auth-link:hover {
    color: var(--hira-orange);
}

.hira-auth-divider {
    color: rgba(255, 255, 255, 0.35);
}

.hira-btn-primary {
    background: var(--hira-orange) !important;
    color: #fff !important;
    border: none;
    border-radius: 50px;
    padding: 12px 22px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 8px 24px rgba(243, 146, 0, 0.35);
}

.hira-btn-primary:hover {
    background: var(--hira-orange-dark) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(243, 146, 0, 0.45);
}

/* Hero — şablon margin/padding sıfırla (header altına it) */
.hero-area.style-one.hira-hero {
    margin: 0 !important;
    padding: 72px 0 100px !important;
    border-radius: 0 0 40px 40px;
    position: relative;
    z-index: 1;
    min-height: 580px;
    background: var(--hira-brown);
    overflow: hidden;
}

.hero-area.style-one.hira-hero::after {
    display: none !important;
}

.hero-area.hira-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 90% 20%, rgba(243, 146, 0, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(245, 200, 66, 0.08) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.hero-area.hira-hero::after {
    display: none;
}

.hero-area.hira-hero .container {
    position: relative;
    z-index: 2;
}

.hero-area.hira-hero .hero-content {
    margin-bottom: 0 !important;
}

.hira-hero-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(243, 146, 0, 0.12);
    filter: blur(80px);
    top: -80px;
    right: -60px;
    z-index: 1;
    pointer-events: none;
}

.hero-area.hira-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.hero-area.hira-hero .hero-badge-pill {
    background: rgba(243, 146, 0, 0.15);
    border: 1px solid rgba(243, 146, 0, 0.35);
    color: var(--hira-gold);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.hira-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 28px;
}

.hira-trust-row span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hira-trust-row i {
    color: var(--hira-orange);
    font-size: 18px;
}

.hira-search-box {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
}

.hira-search-box::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 20px;
    right: 20px;
    height: 4px;
    background: linear-gradient(90deg, var(--hira-orange), var(--hira-gold));
    border-radius: 4px;
}

.hira-search-box .form-select,
.hira-search-box .hira-search-input {
    height: 52px;
    border-radius: 12px;
    border: 1px solid #e5e0db;
    font-size: 14px;
    background-color: #faf8f6;
}

.hira-search-box .hira-search-input:focus {
    border-color: var(--hira-orange);
    box-shadow: 0 0 0 0.15rem rgba(243, 146, 0, 0.15);
    background-color: #fff;
}

.hira-search-box .hira-price-range {
    --bs-gutter-x: 0.5rem;
}

.hira-search-box .hira-search-submit {
    height: 52px;
    border-radius: 12px;
    background: var(--hira-orange) !important;
    border: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 10px 28px rgba(243, 146, 0, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.hira-search-box .hira-search-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(243, 146, 0, 0.5);
}

/* Quick cards — overlap hero */
.hira-quick-strip {
    margin-top: -56px;
    position: relative;
    z-index: 10;
    padding-bottom: 20px;
}

.hira-quick-card {
    background: #fff;
    border-radius: 18px;
    padding: 26px 22px;
    height: 100%;
    border: none;
    box-shadow: 0 12px 40px rgba(44, 30, 30, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hira-quick-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(44, 30, 30, 0.14);
}

.hira-quick-card .icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(243, 146, 0, 0.2), rgba(245, 200, 66, 0.25));
    margin-bottom: 18px;
}

.hira-quick-card .icon-wrap img {
    width: 30px;
    height: 30px;
}

.hira-quick-card h3 {
    color: var(--hira-brown);
}

/* Featured */
.hira-featured-section {
    background: #fff;
    border-radius: 32px;
    margin: 0 16px;
    padding: 80px 0;
    box-shadow: 0 4px 24px rgba(44, 30, 30, 0.04);
}

.hira-property-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #eee8e3;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hira-property-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(44, 30, 30, 0.12);
}

.hira-property-card .thumb {
    height: 210px;
    background: linear-gradient(145deg, var(--hira-brown) 0%, var(--hira-brown-light) 50%, #5a4038 100%);
    position: relative;
    overflow: hidden;
}

.hira-property-card .thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 30, 30, 0.5), transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hira-property-card .thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hira-property-card .thumb .badge-type {
    top: 14px;
    left: 14px;
    background: var(--hira-gold);
    color: var(--hira-brown);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 8px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hira-property-card .price {
    color: var(--hira-orange);
    font-size: 22px;
    font-weight: 800;
}

/* Services */
.hira-services-section {
    padding: 90px 0;
}

.hira-service-pill {
    background: #fff;
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    border: 1px solid #eee8e3;
    height: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.hira-service-pill:hover {
    border-color: var(--hira-orange);
    box-shadow: 0 12px 32px rgba(243, 146, 0, 0.12);
}

.hira-service-pill img {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
}

.hira-services-slider-wrap {
    padding: 0 44px;
}

.hira-services-slider {
    overflow: hidden;
}

.hira-services-slider .swiper-slide {
    height: auto;
}

.hira-services-slider-prev,
.hira-services-slider-next {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    border: 1px solid #eee8e3;
    border-radius: 50%;
    background: #fff;
    color: var(--hira-brown, #2c1e1e);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.hira-services-slider-prev {
    left: 0;
}

.hira-services-slider-next {
    right: 0;
}

.hira-services-slider-prev:hover,
.hira-services-slider-next:hover {
    border-color: var(--hira-orange);
    background: var(--hira-orange);
    color: #fff;
}

.hira-services-slider-prev.swiper-button-disabled,
.hira-services-slider-next.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

@media (max-width: 575px) {
    .hira-services-slider-wrap {
        padding: 0 36px;
    }

    .hira-services-slider-prev,
    .hira-services-slider-next {
        width: 34px;
        height: 34px;
        margin-top: -17px;
    }
}

.hira-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    border: 1px solid var(--hira-orange);
    color: var(--hira-orange);
    background: transparent;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

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

/* FAQ */
.hira-faq-section {
    padding: 90px 0 110px;
    background: #fff;
}

.hira-faq-accordion .accordion-item {
    border: 1px solid #eee8e3;
    border-radius: 14px !important;
    overflow: hidden;
    margin-bottom: 12px;
    background: #fff;
}

.hira-faq-accordion .accordion-button {
    font-size: 1rem;
    font-weight: 600;
    color: var(--hira-brown);
    padding: 1.1rem 1.25rem;
}

.hira-faq-accordion .accordion-body {
    color: #5c504c;
    line-height: 1.7;
}

/* Why */
.wh-area.hira-why {
    background: var(--hira-brown);
    margin-top: 56px;
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

.wh-area.hira-why.style-one:after {
    top: 0;
    height: 100%;
}

.wh-area.hira-why .wh-content .section-title {
    margin-bottom: 24px !important;
}

.wh-area.hira-why .hira-why-stats h4 {
    margin-bottom: 10px !important;
}

.wh-area.hira-why .hira-why-stats p {
    line-height: 1.45;
}

.wh-area.hira-why .hira-btn-primary {
    margin-top: 8px;
}

.hira-map-card {
    min-height: 380px;
    background: linear-gradient(145deg, var(--hira-brown-light), #1a1212);
    border: 1px solid rgba(243, 146, 0, 0.2);
    box-shadow: inset 0 0 80px rgba(243, 146, 0, 0.06);
}

.hira-map-card i {
    color: var(--hira-orange) !important;
    opacity: 1 !important;
}

/* Dual CTA */
.hira-dual-cta {
    padding: 72px 0 96px;
}

.hira-dual-cta .row {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
}

/* CTA blocks */
.hira-cta-citizenship {
    background: linear-gradient(135deg, var(--hira-brown) 0%, #4a3028 50%, var(--hira-orange-dark) 100%) !important;
    border: 1px solid rgba(243, 146, 0, 0.25);
    min-height: 280px;
    padding: 48px 40px !important;
}

.hira-cta-contact {
    background: var(--hira-cream) !important;
    border: 2px solid #e8e0d8;
    min-height: 280px;
    padding: 48px 40px !important;
}

.hira-blog-section {
    padding-top: 24px;
}

.hira-cta-contact .section-title {
    color: var(--hira-brown) !important;
}

.hira-cta-contact .btn {
    background: var(--hira-orange) !important;
    color: #fff !important;
    border-radius: 50px;
    padding: 14px 28px;
}

/* Blog */
.hira-blog-card .blog-img {
    background: linear-gradient(135deg, #e8e2dc, #d4ccc4) !important;
    transition: transform 0.4s;
}

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

/* Footer */
.footer-area.hira-footer {
    background: var(--hira-brown) !important;
}

body.hira-home .hira-footer>.container-fluid {
    container-type: inline-size;
}

@keyframes textGlow {
    0% {
        opacity: 0.8;
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
        transform: scale(1);
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
        transform: scale(1.02);
    }

    100% {
        opacity: 0.8;
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
        transform: scale(1);
    }
}

.hira-footer-logo-text {
    animation: textGlow 3s infinite ease-in-out;
    transition: transform 0.3s ease;
    display: inline-block;
}

.hira-footer-logo-text:hover {
    transform: scale(1.05);
}

.hira-footer-copy-row {
    width: 100%;
}

.hira-footer-interweb-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    overflow: hidden;
    isolation: isolate;
    text-decoration: none;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hira-footer-interweb-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(227, 6, 19, 0.35) 55%, rgba(180, 0, 90, 0.28) 100%);
    opacity: 0;
    transform: scale(0.82);
    transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}

.hira-footer-interweb-link::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
    pointer-events: none;
}

.hira-footer-interweb-link:hover {
    transform: translateY(-2px);
}

.hira-footer-interweb-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.hira-footer-interweb-link:hover::after {
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 8px 24px rgba(227, 6, 19, 0.25);
}

.hira-footer-interweb-logo {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    opacity: 0.88;
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.35s ease;
}

.hira-footer-interweb-link:hover .hira-footer-interweb-logo {
    opacity: 1;
    transform: scale(1.04);
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.15));
}

.social-profile.style-two a {
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    width: 40px;
    height: 40px;
    font-size: 20px;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.social-profile.style-two a i {
    font-size: 20px;
}

.social-profile.style-two a:hover {
    transform: scale(1.15) translateY(-4px) translateZ(0);
    box-shadow: 0 8px 20px rgba(243, 146, 0, 0.4);
}

.social-profile.style-two a.hira-social-whatsapp:hover {
    background: #25D366;
    color: #fff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.social-profile.style-two a.hira-social-whatsapp:hover i {
    color: #fff;
}

.social-profile.style-two a.hira-social-facebook:hover {
    background: #1877F2;
    color: #fff;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.social-profile.style-two a.hira-social-facebook:hover i {
    color: #fff;
}

.social-profile.style-two a.hira-social-instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(214, 36, 159, 0.4);
}

.social-profile.style-two a.hira-social-instagram:hover i {
    color: #fff;
}

.social-profile.style-two a.hira-social-twitter:hover {
    background: #000;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.social-profile.style-two a.hira-social-twitter:hover i {
    color: #fff;
}

.social-profile.style-two a.hira-social-linkedin:hover {
    background: #0A66C2;
    color: #fff;
    box-shadow: 0 8px 20px rgba(10, 102, 194, 0.4);
}

.social-profile.style-two a.hira-social-linkedin:hover i {
    color: #fff;
}

.social-profile.style-two a.hira-social-youtube:hover {
    background: #FF0000;
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

.social-profile.style-two a.hira-social-youtube:hover i {
    color: #fff;
}

@supports (font-size: 1cqi) {
    .footer-area.hira-footer .footer-large-text {
        font-size: clamp(1.1rem, 6.5cqi, 4.85rem) !important;
        letter-spacing: clamp(0.01em, 0.06cqi, 0.03em) !important;
        padding: clamp(16px, 2.5cqi, 28px) clamp(10px, 1.5cqi, 20px) !important;
    }
}

.footer-area.hira-footer .footer-large-text span {
    color: rgba(255, 255, 255, 0.06);
}

/* Mobile nav */
.hira-mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    border-top: 1px solid #eee8e3;
    padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 30px rgba(44, 30, 30, 0.08);
}

.hira-mobile-nav a {
    flex: 1;
    text-align: center;
    font-size: 11px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
}

.hira-mobile-nav a i {
    display: block;
    font-size: 22px;
    margin-bottom: 4px;
}

.hira-mobile-nav a.active {
    color: var(--hira-orange);
}

.text_primary,
.link.style-one {
    color: var(--hira-orange) !important;
}

.btn.style-one .btn-text,
.section-subtitle.text_primary {
    color: var(--hira-orange) !important;
}

.btn.style-one {
    background: var(--hira-orange) !important;
}

@media (max-width: 991px) {
    .wh-area.hira-why {
        margin-top: 40px;
        padding-top: 72px !important;
        padding-bottom: 72px !important;
    }

    .hira-dual-cta {
        padding: 48px 0 64px;
    }

    .hira-cta-citizenship,
    .hira-cta-contact {
        min-height: auto;
        padding: 36px 28px !important;
    }

    .hira-map-card {
        min-height: 300px;
        margin-top: 24px;
    }
}

@media (max-width: 767px) {
    .footer-area.hira-footer .footer-large-text {
        font-size: clamp(1rem, 8cqi, 2.5rem) !important;
        letter-spacing: 0.02em;
        padding: 16px 10px !important;
        white-space: normal;
        line-height: 1.05 !important;
        word-break: break-word;
    }
}

html.hira-menu-open,
body.hira-menu-open {
    overflow: hidden !important;
    height: 100%;
}

html.hira-menu-open #smooth-wrapper,
html.hira-menu-open #smooth-content {
    overflow: hidden !important;
}

@media (max-width: 1365px) {

    html.hira-menu-open .hira-mobile-drawer__panel,
    html.hira-menu-open .hira-mobile-drawer__content,
    html.hira-menu-open .hira-mobile-drawer__stack {
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
    }

    .hira-topbar {
        padding: 6px 0;
        font-size: 12px;
    }

    .hira-topbar .container-fluid {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .hira-topbar>.container-fluid>.d-flex {
        flex-wrap: nowrap;
        gap: 8px;
    }

    .hira-topbar-links {
        flex-wrap: nowrap;
        gap: 10px !important;
        min-width: 0;
    }

    .hira-topbar-utils {
        flex-wrap: nowrap;
        flex-shrink: 0;
        gap: 10px !important;
    }

    .hira-topbar-dropdown-menu {
        left: auto;
        right: 0;
    }

    .hira-navbar-logo-row {
        justify-content: flex-start;
        padding: 10px 0;
        min-height: 76px;
    }

    .hira-logo--stacked {
        margin-left: 0;
    }

    .hira-logo--stacked img {
        width: 72px;
        height: 72px;
    }

    .hira-navbar-mobile-bar .menu-mobile-trigger {
        pointer-events: auto;
    }

    .hira-btn-contact {
        padding: 10px 14px;
        font-size: 13px;
        box-shadow: 0 4px 16px rgba(243, 146, 0, 0.3);
    }

    html.hira-menu-open .hira-topbar {
        visibility: hidden;
        pointer-events: none;
    }

    /* ========== MOBILE DRAWER ========== */
    .hira-mobile-drawer {
        position: fixed;
        inset: 0;
        z-index: 1300;
        pointer-events: none;
    }

    .hira-mobile-drawer.is-open {
        pointer-events: auto;
    }

    .hira-mobile-drawer__overlay {
        position: absolute;
        inset: 0;
        background: rgba(15, 20, 25, 0.55);
        opacity: 0;
        transition: opacity 0.28s ease;
    }

    .hira-mobile-drawer.is-open .hira-mobile-drawer__overlay {
        opacity: 1;
    }

    .hira-mobile-drawer__panel {
        position: absolute;
        top: 0;
        left: 0;
        width: min(340px, 88vw);
        height: 100%;
        height: 100dvh;
        max-height: 100dvh;
        min-height: 0;
        background: #fff;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        transform: translateX(-105%);
        transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
        box-shadow: 8px 0 32px rgba(0, 0, 0, 0.18);
    }

    .hira-mobile-drawer.is-open .hira-mobile-drawer__panel {
        transform: translateX(0);
    }

    .hira-mobile-drawer__header {
        display: flex;
        align-items: center;
        gap: 8px;
        min-height: 58px;
        padding: 0 10px;
        border-bottom: 1px solid #ece8e4;
        background: #fff;
        flex-shrink: 0;
    }

    .hira-mobile-drawer__back,
    .hira-mobile-drawer__close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border: none;
        border-radius: 50%;
        background: transparent;
        color: #2b211e;
        font-size: 22px;
        cursor: pointer;
        flex-shrink: 0;
    }

    .hira-mobile-drawer__back:hover,
    .hira-mobile-drawer__close:hover {
        background: #f5f1ee;
        color: var(--hira-orange, #f39200);
    }

    .hira-mobile-drawer__title {
        flex: 1;
        margin: 0;
        text-align: center;
        font-size: 15px;
        font-weight: 700;
        color: #1f1714;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 0 4px;
    }

    .hira-mobile-drawer__content {
        flex: 1 1 0;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        background: #fff;
    }

    .hira-mobile-drawer__stack {
        flex: 1 1 0;
        min-height: 0;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        touch-action: pan-y;
    }

    .hira-mobile-drawer__panel-view {
        width: 100%;
    }

    .hira-mobile-drawer__panel-view[hidden] {
        display: none !important;
    }

    .hira-mobile-drawer__list {
        list-style: none;
        margin: 0;
        padding: 0 0 20px;
    }

    /* Alt menüde (Hizmetler vb.) footer gizle — liste için tam yükseklik */
    .hira-mobile-drawer.is-submenu .hira-mobile-drawer__footer {
        display: none;
    }

    .hira-mobile-drawer.is-submenu .hira-mobile-drawer__content {
        flex: 1 1 auto;
    }

    .hira-mobile-drawer__item {
        border-bottom: 1px solid #f1ece8;
    }

    .hira-mobile-drawer__link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
        padding: 16px 18px;
        border: none;
        background: transparent;
        color: #2b211e;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.35;
        text-align: left;
        text-decoration: none;
        cursor: pointer;
        box-sizing: border-box;
    }

    .hira-mobile-drawer__link span {
        flex: 1;
        min-width: 0;
    }

    .hira-mobile-drawer__link i {
        font-size: 20px;
        color: #b0a6a0;
        flex-shrink: 0;
    }

    .hira-mobile-drawer__link:hover,
    .hira-mobile-drawer__link.is-active {
        color: var(--hira-orange, #f39200);
        background: rgba(243, 146, 0, 0.06);
    }

    .hira-mobile-drawer__item.is-active > .hira-mobile-drawer__link {
        color: var(--hira-orange, #f39200);
    }

    .hira-mobile-drawer.is-submenu .hira-mobile-drawer__panel-view:not([hidden]) .hira-mobile-drawer__link {
        font-weight: 500;
        font-size: 14px;
        padding-left: 22px;
    }

    .hira-mobile-drawer__footer {
        flex-shrink: 0;
        border-top: 1px solid #ece8e4;
        padding: 8px 0 calc(12px + env(safe-area-inset-bottom));
        background: #faf8f6;
    }

    .hira-mobile-drawer__footer-link {
        display: block;
        width: 100%;
        padding: 12px 18px;
        border: none;
        background: none;
        color: #5c524e;
        font-size: 14px;
        font-weight: 500;
        text-align: left;
        text-decoration: none;
        cursor: pointer;
        box-sizing: border-box;
    }

    .hira-mobile-drawer__footer-btn {
        font-family: inherit;
    }

    .hira-mobile-drawer__footer-link:hover {
        color: var(--hira-orange, #f39200);
        background: rgba(243, 146, 0, 0.05);
    }

    .hira-callback-widget { z-index: 1099 !important; }
    .hira-mobile-nav { display: flex; }
    body.hira-home { padding-bottom: 76px; }
    .hero-area.style-one.hira-hero {
        margin: 0 !important;
        min-height: auto;
        padding: 48px 0 80px !important;
        border-radius: 0 0 24px 24px;
    }
    .hira-quick-strip { margin-top: 0; }
}

@media (max-width: 575px) {


    .hira-topbar-links .hira-topbar-link-compact,
    .hira-topbar-links .hira-topbar-dropdown {
        display: none;
    }

    .hira-btn-contact-label {
        display: none;
    }

    .hira-btn-contact {
        width: 40px;
        height: 40px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }

    .hira-btn-contact i {
        margin: 0;
        font-size: 18px;
    }

    .hira-logo--stacked img {
        width: 60px;
        height: 60px;
    }

    .hira-navbar-logo-row {
        min-height: 64px;
    }
}

/* Sol kenar — geri arama widget */
.hira-callback-widget {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    align-items: stretch;
    pointer-events: none;
}

.hira-callback-widget>* {
    pointer-events: auto;
}

.hira-callback-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    min-height: 220px;
    padding: 14px 8px;
    border: none;
    border-radius: 0 12px 12px 0;
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    box-shadow: 0 8px 28px rgba(22, 163, 74, 0.35);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hira-callback-tab:hover {
    transform: translateX(2px);
    box-shadow: 0 10px 32px rgba(22, 163, 74, 0.45);
}

.hira-callback-tab-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
    white-space: nowrap;
}

.hira-callback-panel {
    width: min(300px, calc(100vw - 56px));
    margin-left: 0;
    padding: 18px 18px 14px;
    background: #fff;
    border-radius: 0 14px 14px 0;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
    position: relative;
    animation: hiraCallbackSlideIn 0.25s ease;
}

@keyframes hiraCallbackSlideIn {
    from {
        opacity: 0;
        transform: translateX(-12px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hira-callback-widget:not(.is-open) .hira-callback-panel {
    display: none;
}

.hira-callback-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    line-height: 1;
}

.hira-callback-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 28px 14px 0;
    line-height: 1.35;
}

.hira-callback-agent {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.hira-callback-agent-avatar {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    color: #6b7280;
    font-size: 22px;
}

.hira-callback-agent-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hira-callback-agent-status {
    position: absolute;
    right: 2px;
    bottom: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    border: 2px solid #fff;
}

.hira-callback-agent-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.hira-callback-agent-meta strong {
    font-size: 14px;
    color: #1a1a1a;
}

.hira-callback-agent-meta span {
    font-size: 12px;
    color: #6b7280;
}

.hira-callback-phone-field {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 10px;
    background: #fafafa;
}

.hira-callback-country {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.hira-callback-phone-field input {
    border: none;
    background: transparent;
    width: 100%;
    min-width: 0;
    font-size: 14px;
    color: #1a1a1a;
    outline: none;
}

.hira-callback-phone-field input::placeholder {
    color: #9ca3af;
}

.hira-callback-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 999px;
    padding: 12px 16px;
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hira-callback-submit:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.35);
}

.hira-callback-submit:disabled {
    opacity: 0.7;
    cursor: wait;
}

.hira-callback-feedback {
    margin: 10px 0 0;
    font-size: 12px;
    color: #16a34a;
    text-align: center;
}

.hira-callback-feedback.is-error {
    color: #dc2626;
}

.hira-callback-note {
    margin: 12px 0 0;
    font-size: 11px;
    color: #9ca3af;
    text-align: center;
}

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

html[dir="rtl"] .hira-callback-tab {
    border-radius: 12px 0 0 12px;
}

html[dir="rtl"] .hira-callback-panel {
    border-radius: 14px 0 0 14px;
}

@media (max-width: 767px) {
    .hira-callback-widget {
        top: auto;
        bottom: calc(76px + 130px);
        transform: none;
    }

    .hira-callback-tab {
        min-height: 180px;
        width: 36px;
    }

    .hira-callback-tab-text {
        font-size: 11px;
    }

    .hira-callback-panel {
        width: min(280px, calc(100vw - 48px));
        padding: 16px 14px 12px;
    }
}

/* Sağ alt — WhatsApp + yukarı ok */
.hira-floating-actions {
    position: fixed;
    right: 30px;
    bottom: 50px;
    z-index: 99;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hira-floating-actions .progress-wrap {
    position: static;
    right: auto;
    bottom: auto;
    flex-shrink: 0;
    margin: 0;
}

.hira-floating-whatsapp {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hira-floating-whatsapp:hover {
    transform: scale(1.06);
    color: #fff;
    background: #20bd5a;
}


@media (max-width: 991px) {
    .hira-floating-actions {
        bottom: calc(76px + 70px);
    }
}

@media (max-width: 767px) {
    .hira-floating-actions {
        right: 10px;
        bottom: calc(76px + 70px);
        gap: 10px;
    }

    .hira-floating-whatsapp {
        width: 44px;
        height: 44px;
        font-size: 1.35rem;
    }
}

/* Ana sayfa şehir kartları */
.hira-home-cities-section {
    background: #faf8f6;
}

.hira-city-card {
    display: block;
    color: inherit;
}

.hira-city-card-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #ddd;
}

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

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

.hira-city-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 35%, rgba(0, 0, 0, 0.65) 100%);
}

.hira-city-card-name {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 700;
    z-index: 1;
}

/* Müşteri yorumları */
.hira-home-reviews-section {
    background: #fff;
}

.hira-review-card {
    height: 100%;
    background: #faf8f6;
    border: 1px solid #eee8e3;
    border-radius: 18px;
    padding: 1.5rem;
}

.hira-review-rating {
    display: flex;
    gap: 0.2rem;
    color: var(--hira-orange);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.hira-review-quote {
    margin: 0 0 1.25rem;
    color: #4a403c;
    font-size: 1rem;
    line-height: 1.7;
}

.hira-review-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.hira-review-author img,
.hira-review-avatar-fallback {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.hira-review-avatar-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 6, 19, 0.1);
    color: var(--hira-primary, #E30613);
    font-size: 1.25rem;
}

.hira-review-author strong {
    display: block;
    color: var(--hira-brown);
    font-size: 0.95rem;
}

.hira-review-author span {
    display: block;
    color: #7a6f6a;
    font-size: 0.85rem;
}

/* Footer SEO */
.hira-footer-seo-title {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hira-footer-seo-links li+li {
    margin-top: 0.45rem;
}

.hira-footer-seo-links a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.hira-footer-seo-links a:hover {
    color: var(--hira-orange);
}

html[dir="rtl"] .hira-floating-actions {
    right: auto;
    left: 30px;
    flex-direction: row-reverse;
}

html[dir="rtl"] .hira-property-card .thumb .badge-type {
    left: auto;
    right: 14px;
}

html[dir="rtl"] .hira-search-box::before {
    left: 20px;
    right: 20px;
}

/* Modern Team Card */
.hira-team-card-modern {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.hira-team-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.hira-team-photo-modern {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #f8f9fa;
}

.hira-team-photo-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hira-team-card-modern:hover .hira-team-photo-modern img {
    transform: scale(1.05);
}

.hira-team-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f2f5;
}

.hira-team-placeholder i {
    font-size: 5rem;
    color: #cbd5e1;
}

.hira-team-social-overlay {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

.hira-team-card-modern:hover .hira-team-social-overlay {
    opacity: 1;
    transform: translateY(0);
}

.hira-team-social-link {
    width: 40px;
    height: 40px;
    background: #fff;
    color: var(--hira-primary, #E30613);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.hira-team-social-link:hover {
    background: var(--hira-primary, #E30613);
    color: #fff;
    transform: translateY(-2px);
}

.hira-team-info-modern {
    padding: 1.5rem;
    text-align: center;
    background: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hira-team-name-modern {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.25rem 0;
}

.hira-team-title-modern {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.hira-team-languages {
    margin-top: 0.85rem;
}

.hira-team-languages-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.45rem;
}

.hira-team-languages-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
}

.hira-team-language-flag {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.hira-team-lang-flag {
    display: block;
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.hira-team-language-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: #f3f4f6;
    color: #374151;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.4;
    border: 1px solid #e5e7eb;
}

/* Responsive Overrides for Laptops and Small Screens */
@media screen and (max-width: 1440px),
screen and (max-height: 850px) {

    /* Shrink header paddings */
    .navbar-area.style-one .menu>ul>li>a,
    .navbar-area.style-three .menu>ul>li>a {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
        font-size: 14px !important;
    }

    .hira-navbar-logo-row {
        padding: 5px 0 !important;
        min-height: auto !important;
    }

    .hira-navbar-menu-row {
        padding: 0 0 5px !important;
        min-height: auto !important;
    }

    /* Reduce Topbar spacing */
    .hira-topbar {
        padding: 5px 0 !important;
    }

    /* Reduce global header height variable */
    :root {
        --hira-header-height: 140px !important;
    }

    /* Shrink main titles and texts */
    body {
        font-size: 15px;
    }

    .hira-project-title {
        font-size: 1.8rem !important;
    }

    .hira-project-detail {
        padding-bottom: 60px !important;
    }
}
