* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f6f7f3;
    color: #1f2937;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e5e7eb;
}

.header-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-logo {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
}

.site-brand-text strong {
    display: block;
    font-size: 28px;
    color: #0d4a38;
    line-height: 1;
}

.site-brand-text span {
    display: block;
    font-size: 14px;
    color: #7b8794;
    margin-top: 6px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.site-nav a {
    font-size: 15px;
    font-weight: 700;
    color: #374151;
    transition: .2s ease;
}

.site-nav a:hover {
    color: #0d4a38;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    background: #0d4a38;
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
}

.hero-section {
    padding: 30px 0 64px;
}

.hero-slider {
    min-height: 680px;
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 54px rgba(13, 74, 56, 0.16);
    display: flex;
    align-items: end;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 24, 18, 0.70) 0%, rgba(8, 24, 18, 0.36) 44%, rgba(8, 24, 18, 0.08) 100%);
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 62px;
    color: #fff;
}

.hero-badge {
    display: inline-flex;
    padding: 11px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-content h1 {
    margin: 0 0 18px;
    font-size: 78px;
    line-height: 0.96;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-content p {
    max-width: 650px;
    margin: 0 0 28px;
    font-size: 19px;
    line-height: 1.75;
    color: rgba(255,255,255,.88);
}

.hero-search-bar {
    display: grid;
    grid-template-columns: 1.25fr .9fr .9fr auto;
    gap: 12px;
    max-width: 780px;
    background: rgba(255,255,255,.97);
    padding: 14px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,.16);
}

.hero-search-bar input,
.hero-search-bar select {
    height: 56px;
    border: 1px solid #d9e2db;
    border-radius: 16px;
    padding: 0 16px;
    font-size: 15px;
    outline: none;
    background: #fff;
}

.hero-search-bar button {
    height: 56px;
    border: none;
    border-radius: 16px;
    padding: 0 24px;
    background: #0d4a38;
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
}

@media (max-width: 760px) {
    .hero-slider {
        min-height: auto;
    }

    .hero-content {
        padding: 34px 22px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-search-bar {
        grid-template-columns: 1fr;
    }
}

.hero-search-bar input,
.hero-search-bar select {
    height: 56px;
    border: 1px solid #d9e2db;
    border-radius: 16px;
    padding: 0 16px;
    font-size: 15px;
    outline: none;
    background: #fff;
}

.hero-search-bar button {
    height: 56px;
    border: none;
    border-radius: 16px;
    padding: 0 24px;
    background: #0d4a38;
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
}

/* SECTION */
.section {
    padding: 40px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 28px;
}

.section-head h2 {
    margin: 0 0 10px;
    font-size: 56px;
    color: #0d4a38;
    line-height: 1;
}

.section-head p {
    margin: 0;
    color: #7b8794;
    font-size: 16px;
}

.link-arrow {
    color: #0d4a38;
    font-weight: 800;
    font-size: 16px;
}

/* PROPERTY */
.property-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.property-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(13, 74, 56, 0.08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(13, 74, 56, 0.12);
}

.property-card-image-wrap {
    position: relative;
    height: 245px;
    overflow: hidden;
}

.property-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-badge {
    position: absolute;
    left: 14px;
    top: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(13, 74, 56, .96);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.property-status-badge {
    position: absolute;
    right: 14px;
    top: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.property-status-badge.sold {
    background: #b91c1c;
}

.property-status-badge.rented {
    background: #075985;
}

.property-card-body {
    padding: 22px;
}

.property-price {
    font-size: 22px;
    font-weight: 800;
    color: #0d4a38;
    margin-bottom: 8px;
}

.property-card-body h3 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #1f2937;
}

.property-location,
.property-meta,
.property-card-body p {
    margin: 0 0 8px;
    color: #6b7280;
    line-height: 1.7;
}

/* ABOUT HOME */
.about-section-box {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 28px;
    align-items: center;
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(13, 74, 56, 0.08);
}

.about-image {
    min-height: 500px;
    background: url('/images/ofis.png') center/cover no-repeat;
     border-radius: inherit;
    margin-left: 15px;
}

.about-content {
    padding: 42px;
}

.about-content h2 {
    margin: 0 0 18px;
    font-size: 58px;
    line-height: 1.05;
    color: #0d4a38;
}

.about-content p {
    margin: 0 0 16px;
    color: #6b7280;
    line-height: 1.9;
    font-size: 17px;
}

.about-stats {
    display: flex;
    gap: 110px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.about-stat strong {
    display: block;
    font-size: 40px;
    color: #0d4a38;
    margin-bottom: 6px;
}

.about-stat span {
    color: #6b7280;
    font-size: 15px;
}

/* BLOG */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.blog-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(13, 74, 56, 0.08);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card-body {
    padding: 22px;
}

.blog-card-body span {
    display: inline-block;
    margin-bottom: 10px;
    color: #0d4a38;
    font-size: 13px;
    font-weight: 800;
}

.blog-card-body h3 {
    margin: 0 0 12px;
    font-size: 24px;
    color: #1f2937;
}

.blog-card-body p {
    margin: 0;
    color: #6b7280;
    line-height: 1.8;
}

/* CTA */
/* CTA */
.cta-section {
    margin-top: 80px;
}

.cta-box {
    background: linear-gradient(135deg, #0f3d2e, #1f6f54);
    border-radius: 28px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.cta-text h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.cta-text p {
    opacity: 0.85;
}

.cta-btn {
    background: white;
    color: #0f3d2e;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
}

/* FOOTER */
.footer {
    margin-top: 80px;
    color: #e6f2ee;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(11, 46, 35, 0.78), rgba(11, 46, 35, 0.78)),
        url('/images/evler.png');
    background-size: 530px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer h4 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 24px;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: #cfe7df;
    text-decoration: none;
}

.footer-brand img {
    width: 140px;
    margin-bottom: 10px;
}

.footer-brand h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 34px;
}

.footer-brand p,
.footer-contact p {
    margin: 0 0 10px;
    color: #e6f2ee;
    line-height: 1.7;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.instagram {
    background: linear-gradient(45deg, #ff0066, #ff9900);
    color: white;
}

.whatsapp {
    background: #25d366;
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    opacity: 0.85;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
}

/* TABLET */
@media (max-width: 1150px) {
    .about-section-box,
    .blog-grid,
    .cta-box {
        grid-template-columns: 1fr;
    }

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

    .hero-content h1 {
        font-size: 58px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-social {
        grid-column: 1 / -1;
    }
}

/* MOBILE */
@media (max-width: 760px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 0;
    }

    .site-nav {
        gap: 18px;
        flex-wrap: wrap;
    }

    .hero-slider {
        min-height: auto;
    }

    .hero-content {
        padding: 34px 22px;
    }

    .hero-content h1,
    .section-head h2,
    .about-content h2,
    .cta-box h2 {
        font-size: 38px;
    }

    .hero-search-bar {
        grid-template-columns: 1fr;
    }

    .property-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 42px 0 18px;
        background-size: 360px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 18px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-menu {
        grid-column: 1 / 2;
    }

    .footer-contact {
        grid-column: 2 / 3;
    }

    .footer-social {
        grid-column: 1 / -1;
    }

    .footer-brand img {
        width: 110px;
    }

    .footer-brand h3 {
        font-size: 28px;
    }

    .footer h4 {
        font-size: 20px;
    }

    .footer-social a {
        margin-right: 8px;
    }
}

/* Hakkımızda */

.about-hero {
    padding: 46px 0 24px;
}

.about-hero-inner {
    border-radius: 32px;
    padding: 15px 40px;
    background:
        linear-gradient(135deg, rgba(13, 74, 56, 0.66), rgba(21, 112, 84, -0.2)),
        url('/images/artvin.png') center/cover no-repeat;
    box-shadow: 0 24px 54px rgba(13, 74, 56, 0.12);
}

.page-badge {
    display: inline-flex;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 18px;
}

.page-badge.soft {
    background: rgba(13, 74, 56, 0.08);
    color: #0d4a38;
}

.about-hero-text h1 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 53px;
    line-height: 1;
    letter-spacing: -1px;
    max-width: 820px;
}

.about-hero-text p {
    margin: 0;
    color: rgba(255,255,255,.88);
    font-size: 18px;
    line-height: 1.8;
    max-width: 820px;
}

.about-main-section {
    padding: 36px 0 30px;
}

.about-main-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 10px;
    align-items: center;
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(13, 74, 56, 0.08);
}

.about-main-image {
    height: 100%;
    min-height: 580px;
}

.about-main-image img {
    width: 100%;
    object-fit: cover;
}

.about-main-content {
    padding: 42px;
}

.about-main-content h2 {
    margin: 0 0 20px;
    font-size: 58px;
    line-height: 1.02;
    color: #0d4a38;
}

.about-main-content p {
    margin: 0 0 18px;
    color: #667085;
    line-height: 1.9;
    font-size: 17px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.about-stat-box {
    background: #f7faf8;
    border: 1px solid #e3ece7;
    border-radius: 22px;
    padding: 22px 20px;
}

.about-stat-box strong {
    display: block;
    font-size: 42px;
    line-height: 1;
    color: #0d4a38;
    margin-bottom: 10px;
}

.about-stat-box span {
    color: #667085;
    font-size: 15px;
}

.about-values-section {
    padding: 46px 0;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.about-value-card {
    background: #fff;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(13, 74, 56, 0.07);
    border: 1px solid rgba(13, 74, 56, 0.06);
}

.about-value-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d4a38, #1b7c5f);
    color: #fff;
    font-size: 24px;
    margin-bottom: 18px;
}

.about-value-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
    color: #0f172a;
}

.about-value-card p {
    margin: 0;
    color: #667085;
    line-height: 1.8;
}

.about-process-section {
    padding: 20px 0 50px;
}

.about-process-box {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 28px;
    background: linear-gradient(135deg, #0d4a38, #16634b);
    border-radius: 32px;
    padding: 38px;
    color: #fff;
    box-shadow: 0 22px 48px rgba(13, 74, 56, 0.14);
}

.about-process-left h2 {
    margin: 0 0 16px;
    font-size: 52px;
    line-height: 1.04;
}

.about-process-left p {
    margin: 0;
    color: rgba(255,255,255,.82);
    line-height: 1.8;
    font-size: 17px;
}

.about-process-steps {
    display: grid;
    gap: 18px;
}

.about-step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    backdrop-filter: blur(6px);
}

.about-step strong {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(255,255,255,.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.about-step h4 {
    margin: 0 0 8px;
    font-size: 20px;
}

.about-step p {
    margin: 0;
    color: rgba(255,255,255,.82);
    line-height: 1.7;
}

.about-closing-section {
    padding: 16px 0 10px;
}

.about-closing-card {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: center;
    background: #fff;
    border-radius: 32px;
    padding: 38px;
    box-shadow: 0 18px 40px rgba(13, 74, 56, 0.08);
    border: 1px solid rgba(13, 74, 56, 0.06);
}

.about-closing-card h2 {
    margin: 0 0 14px;
    font-size: 46px;
    line-height: 1.05;
    color: #0d4a38;
    max-width: 740px;
}

.about-closing-card p {
    margin: 0;
    color: #667085;
    line-height: 1.8;
    max-width: 720px;
}

.about-closing-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.about-btn {
    min-height: 52px;
    padding: 0 22px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.about-btn-outline {
    border: 1px solid #d5e2da;
    color: #0d4a38;
    background: #fff;
}

.about-btn-primary {
    background: #0d4a38;
    color: #fff;
}

@media (max-width: 1150px) {
    .about-main-grid,
    .about-process-box,
    .about-closing-card {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

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

    .about-hero-text h1,
    .about-main-content h2,
    .about-process-left h2,
    .about-closing-card h2 {
        font-size: 42px;
    }
}

@media (max-width: 760px) {
    .about-values-grid,
    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-inner,
    .about-main-content,
    .about-process-box,
    .about-closing-card {
        padding: 26px;
    }

    .about-hero-text h1,
    .about-main-content h2,
    .about-process-left h2,
    .about-closing-card h2 {
        font-size: 34px;
    }

    .about-main-image {
        min-height: 340px;
    }
}
/* iletişim */
.contact-hero-v2 {
    padding: 46px 0 24px;
}

.contact-hero-v2-inner {
    border-radius: 32px;
    padding: 40px 42px;
    background:
        linear-gradient(90deg, rgba(8,24,18,.76) 0%, rgba(8,24,18,.46) 50%, rgba(8,24,18,.18) 100%),
        url('/images/artvin-hero.jpg') center/cover no-repeat;
    box-shadow: 0 24px 54px rgba(13, 74, 56, 0.14);
}

.contact-hero-v2-inner h1 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 60px;
    line-height: 1;
    max-width: 860px;
}

.contact-hero-v2-inner p {
    margin: 0;
    color: rgba(255,255,255,.88);
    font-size: 18px;
    line-height: 1.8;
    max-width: 820px;
}

.contact-main-v2 {
    padding: 34px 0 20px;
}

.contact-main-v2-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 28px;
    align-items: stretch;
}

.contact-visual-v2,
.contact-panel-v2 {
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 18px 40px rgba(13, 74, 56, 0.07);
    border: 1px solid rgba(13, 74, 56, 0.06);
}

.contact-visual-v2 {
    overflow: hidden;
}

.contact-map-v2 iframe {
    width: 100%;
    height: 740px;
    border: 0;
    display: block;
}

.contact-visual-note-v2 {
    padding: 28px;
}

.contact-visual-note-v2 h3 {
    margin: 0 0 12px;
    font-size: 30px;
    color: #0d4a38;
}

.contact-visual-note-v2 p {
    margin: 0;
    color: #667085;
    line-height: 1.85;
}

.contact-panel-v2 {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.contact-panel-v2 h2 {
    margin: 0 0 12px;
    font-size: 42px;
    line-height: 1.05;
    color: #0d4a38;
}

.contact-panel-v2-text {
    margin: 0 0 22px;
    color: #667085;
    line-height: 1.8;
}

.contact-info-list-v2 {
    display: grid;
    gap: 0;
    border-top: 1px solid #edf2ef;
}

.contact-info-row-v2 {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #edf2ef;
    align-items: flex-start;
}

.contact-info-key-v2 {
    color: #475467;
    font-weight: 700;
    min-width: 140px;
}

.contact-info-value-v2 {
    color: #0d4a38;
    font-weight: 700;
    text-align: right;
    line-height: 1.7;
}

.contact-actions-v2 {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.contact-action-btn-v2 {
    min-height: 52px;
    padding: 0 22px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.contact-action-btn-v2.outline {
    border: 1px solid #d7e2dc;
    background: #fff;
    color: #0d4a38;
}

.contact-action-btn-v2.primary {
    background: #0d4a38;
    color: #fff;
}

.contact-bottom-v2 {
    padding: 18px 0 10px;
}

.contact-bottom-v2-card {
    background: linear-gradient(135deg, #f5faf7, #edf6f0);
    border: 1px solid #dfeae3;
    border-radius: 32px;
    padding: 30px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
    align-items: center;
}

.contact-bottom-v2-left h2 {
    margin: 0 0 12px;
    font-size: 38px;
    line-height: 1.08;
    color: #0d4a38;
}

.contact-bottom-v2-left p {
    margin: 0;
    color: #667085;
    line-height: 1.8;
}

.contact-bottom-v2-right {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-bottom-mini-card {
    background: #fff;
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 14px 32px rgba(13, 74, 56, 0.06);
    border: 1px solid rgba(13, 74, 56, 0.06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.contact-bottom-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(13, 74, 56, 0.1);
}

.contact-bottom-mini-card strong {
    display: block;
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 8px;
}

.contact-bottom-mini-card small {
    color: #667085;
    line-height: 1.7;
    display: block;
}

@media (max-width: 1150px) {
    .contact-main-v2-grid,
    .contact-bottom-v2-card {
        grid-template-columns: 1fr;
    }

    .contact-hero-v2-inner h1,
    .contact-panel-v2 h2,
    .contact-bottom-v2-left h2 {
        font-size: 40px;
    }
}

@media (max-width: 760px) {
    .contact-hero-v2-inner,
    .contact-panel-v2,
    .contact-visual-note-v2,
    .contact-bottom-v2-card {
        padding: 24px;
    }

    .contact-hero-v2-inner h1,
    .contact-panel-v2 h2,
    .contact-bottom-v2-left h2 {
        font-size: 30px;
    }



    .contact-info-row-v2 {
        flex-direction: column;
        gap: 8px;
    }

    .contact-info-value-v2 {
        text-align: left;
    }

    .contact-actions-v2 {
        width: 100%;
    }

    .contact-action-btn-v2 {
        width: 100%;
    }

    .contact-bottom-v2-right {
        grid-template-columns: 1fr;
    }
}

/* Blog */
.blog-hero {
    padding: 46px 0 24px;
}

.blog-hero-inner {
    border-radius: 32px;
    padding: 40px 42px;
    background:
        linear-gradient(90deg, rgba(8,24,18,.76) 0%, rgba(8,24,18,.46) 50%, rgba(8,24,18,.18) 100%),
        url('/images/artvin-hero.jpg') center/cover no-repeat;
    box-shadow: 0 24px 54px rgba(13, 74, 56, 0.14);
}

.blog-hero-inner h1 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 60px;
    line-height: 1;
    max-width: 860px;
}

.blog-hero-inner p {
    margin: 0;
    color: rgba(255,255,255,.88);
    font-size: 18px;
    line-height: 1.8;
    max-width: 820px;
}

.blog-list-section {
    padding: 34px 0 30px;
}

.blog-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.blog-page-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(13, 74, 56, 0.08);
    border: 1px solid rgba(13, 74, 56, 0.06);
    transition: transform .22s ease, box-shadow .22s ease;
}

.blog-page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(13, 74, 56, 0.12);
}

.blog-page-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-page-body {
    padding: 24px;
}

.blog-page-category {
    display: inline-block;
    margin-bottom: 12px;
    color: #0d4a38;
    font-size: 13px;
    font-weight: 800;
}

.blog-page-body h3 {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.15;
    color: #0f172a;
}

.blog-page-body p {
    margin: 0 0 14px;
    color: #667085;
    line-height: 1.8;
}

.blog-page-meta {
    color: #98a2b3;
    font-size: 14px;
    font-weight: 600;
}

.blog-detail-hero {
    padding: 46px 0 24px;
}

.blog-detail-hero-box {
    border-radius: 32px;
    padding: 15px 40px;
    background:
        linear-gradient(90deg, rgba(8,24,18,.76) 0%, rgba(8,24,18,.46) 50%, rgba(8,24,18,.18) 100%),
        url('/images/artvin.png') center/cover no-repeat;
    box-shadow: 0 24px 54px rgba(13, 74, 56, 0.14);
}

.blog-detail-hero-box h1 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 58px;
    line-height: 1;
}

.blog-detail-hero-box p {
    margin: 0 0 14px;
    color: rgba(255,255,255,.88);
    font-size: 18px;
    line-height: 1.8;
    max-width: 860px;
}

.blog-detail-meta {
    color: rgba(255,255,255,.74);
    font-size: 14px;
    font-weight: 700;
}

.blog-detail-main {
    padding: 34px 0 20px;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 28px;
    align-items: start;
}

.blog-article-card,
.blog-sidebar-card {
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 18px 40px rgba(13, 74, 56, 0.07);
    border: 1px solid rgba(13, 74, 56, 0.06);
}

.blog-article-card {
    overflow: hidden;
}

.blog-detail-cover {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.blog-article-content {
    padding: 32px;
}

.blog-article-content h2 {
    margin: 0 0 14px;
    font-size: 34px;
    line-height: 1.1;
    color: #0d4a38;
}

.blog-article-content p {
    margin: 0 0 20px;
    color: #667085;
    line-height: 1.95;
    font-size: 17px;
}

.blog-sidebar-card {
    padding: 28px;
    position: sticky;
    top: 110px;
}

.blog-sidebar-card h3 {
    margin: 0 0 16px;
    font-size: 30px;
    color: #0d4a38;
}

.blog-side-link {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid #edf2ef;
    color: #0f172a;
    font-weight: 700;
    line-height: 1.7;
}

.blog-side-link:last-of-type {
    margin-bottom: 18px;
}

.blog-side-cta {
    margin-top: 22px;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f3f8f5, #edf6f0);
    border: 1px solid #dde9e2;
}

.blog-side-cta h4 {
    margin: 0 0 10px;
    font-size: 22px;
    color: #0d4a38;
}

.blog-side-cta p {
    margin: 0 0 16px;
    color: #667085;
    line-height: 1.8;
}

.blog-side-btn {
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0d4a38;
    color: #fff;
    font-weight: 800;
}

@media (max-width: 1150px) {
    .blog-page-grid,
    .blog-detail-layout {
        grid-template-columns: 1fr;
    }

    .blog-hero-inner h1,
    .blog-detail-hero-box h1 {
        font-size: 40px;
    }
}

@media (max-width: 760px) {
    .blog-hero-inner,
    .blog-detail-hero-box,
    .blog-article-content,
    .blog-sidebar-card {
        padding: 24px;
    }

    .blog-hero-inner h1,
    .blog-detail-hero-box h1 {
        font-size: 32px;
    }

    .blog-page-body h3,
    .blog-sidebar-card h3,
    .blog-article-content h2 {
        font-size: 24px;
    }

    .blog-detail-cover {
        height: 260px;
    }
}
/* İlanlar */
.property-list-hero {
    padding: 46px 0 24px;
}

.property-list-hero-inner {
    border-radius: 32px;
    padding: 40px 42px;
    background:
        linear-gradient(90deg, rgba(8,24,18,.76) 0%, rgba(8,24,18,.46) 50%, rgba(8,24,18,.18) 100%),
        url('/images/artvin-hero.jpg') center/cover no-repeat;
    box-shadow: 0 24px 54px rgba(13, 74, 56, 0.14);
}

.property-list-hero-inner h1 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 58px;
    line-height: 1;
    max-width: 860px;
}

.property-list-hero-inner p {
    margin: 0;
    color: rgba(255,255,255,.88);
    font-size: 18px;
    line-height: 1.8;
    max-width: 820px;
}

.property-list-main {
    padding: 34px 0 20px;
}

.property-list-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 28px;
    align-items: start;
}

.property-filter-panel {
    position: sticky;
    top: 108px;
}

.property-filter-card {
    background: #fff;
    border-radius: 32px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(13, 74, 56, 0.07);
    border: 1px solid rgba(13, 74, 56, 0.06);
}

.property-filter-card h2 {
    margin: 0 0 18px;
    font-size: 34px;
    line-height: 1.1;
    color: #0d4a38;
}

.property-filter-form {
    display: grid;
    gap: 14px;
}

.property-filter-group label {
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
    font-weight: 700;
    font-size: 14px;
}

.property-filter-group input,
.property-filter-group select {
    width: 100%;
    height: 52px;
    border: 1px solid #dbe6e0;
    background: #fff;
    border-radius: 16px;
    padding: 0 16px;
    font-size: 15px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.property-filter-group input:focus,
.property-filter-group select:focus {
    border-color: #0d4a38;
    box-shadow: 0 0 0 4px rgba(13, 74, 56, 0.08);
}

.property-filter-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.property-filter-actions {
    display: flex;
    gap: 12px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.property-filter-btn,
.property-reset-btn {
    min-height: 50px;
    padding: 0 18px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.property-filter-btn {
    border: none;
    background: #0d4a38;
    color: #fff;
    cursor: pointer;
    flex: 1;
}

.property-reset-btn {
    background: #f4f8f5;
    border: 1px solid #dbe6e0;
    color: #0d4a38;
}

.property-list-topbar {
    margin-bottom: 20px;
}

.property-list-topbar h2 {
    margin: 12px 0 0;
    font-size: 36px;
    color: #0d4a38;
}

.property-grid-page {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.property-card-page {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(13, 74, 56, 0.08);
    border: 1px solid rgba(13, 74, 56, 0.06);
    transition: transform .22s ease, box-shadow .22s ease;
    min-width: 0;
}

.property-card-page:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(13, 74, 56, 0.12);
}

.property-card-page-image-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.property-card-page-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.property-card-page-badge {
    position: absolute;
    left: 14px;
    top: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(13, 74, 56, .96);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.property-card-page-status {
    position: absolute;
    right: 14px;
    top: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.property-card-page-status.sold {
    background: #b91c1c;
}

.property-card-page-status.rented {
    background: #075985;
}

.property-card-page-body {
    padding: 22px;
    min-width: 0;
}

.property-card-page-price {
    font-size: 22px;
    font-weight: 800;
    color: #0d4a38;
    margin-bottom: 8px;
}

.property-card-page-body h3 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.12;
    color: #0f172a;
    overflow-wrap: break-word;
}

.property-card-page-location {
    margin: 0 0 10px;
    color: #667085;
    line-height: 1.7;
}

.property-card-page-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.property-card-page-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    background: #f4f8f5;
    border: 1px solid #dbe6e0;
    color: #0d4a38;
    font-size: 13px;
    font-weight: 700;
}

.property-card-page-body p {
    margin: 0;
    color: #667085;
    line-height: 1.8;
    overflow-wrap: break-word;
}

.property-empty-state {
    grid-column: 1 / -1;
    background: #fff;
    border-radius: 28px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(13, 74, 56, 0.06);
    border: 1px solid rgba(13, 74, 56, 0.06);
}

.property-empty-state h3 {
    margin: 0 0 10px;
    font-size: 30px;
    color: #0d4a38;
}

.property-empty-state p {
    margin: 0;
    color: #667085;
}

@media (max-width: 1150px) {
    .property-list-layout {
        grid-template-columns: 1fr;
    }

    .property-filter-panel {
        position: static;
    }

    .property-grid-page {
        grid-template-columns: 1fr 1fr;
    }

    .property-list-hero-inner h1 {
        font-size: 40px;
    }
}

@media (max-width: 760px) {
    .property-list-hero-inner,
    .property-filter-card,
    .property-empty-state {
        padding: 24px;
    }

    .property-list-hero-inner h1,
    .property-filter-card h2,
    .property-list-topbar h2 {
        font-size: 30px;
    }

    .property-filter-row,
    .property-grid-page {
        grid-template-columns: 1fr;
    }

    .property-filter-actions {
        flex-direction: column;
    }

    .property-filter-btn,
    .property-reset-btn {
        width: 100%;
    }
}
/* iLan detay */
.property-detail-hero {
    padding: 46px 0 24px;
}

.property-detail-hero-inner {
    border-radius: 32px;
    padding: 40px 42px;
    background:
        linear-gradient(90deg, rgba(8,24,18,.76) 0%, rgba(8,24,18,.46) 50%, rgba(8,24,18,.18) 100%),
        url('/images/artvin-hero.jpg') center/cover no-repeat;
    box-shadow: 0 24px 54px rgba(13, 74, 56, 0.14);
}

.property-detail-hero-inner h1 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 56px;
    line-height: 1;
    max-width: 900px;
}

.property-detail-hero-inner p {
    margin: 0;
    color: rgba(255,255,255,.88);
    font-size: 18px;
    line-height: 1.8;
}

.property-detail-main {
    padding: 34px 0 20px;
}

.property-detail-layout-v2 {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 28px;
    align-items: start;
}

.property-detail-left,
.property-detail-right {
    display: grid;
    gap: 24px;
}

.property-detail-gallery-card,
.property-detail-content-card,
.property-summary-card {
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 18px 40px rgba(13, 74, 56, 0.07);
    border: 1px solid rgba(13, 74, 56, 0.06);
}

.property-detail-gallery-card {
    overflow: hidden;
    padding: 20px;
}

.property-detail-main-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.property-detail-thumb-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.property-detail-thumb {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.property-detail-content-card {
    padding: 30px;
}

.property-detail-section-head {
    margin-bottom: 18px;
}

.property-detail-section-head h2 {
    margin: 12px 0 0;
    font-size: 34px;
    line-height: 1.08;
    color: #0d4a38;
}

.property-detail-content-card p {
    margin: 0;
    color: #667085;
    line-height: 1.95;
    font-size: 17px;
}

.property-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.property-feature-item {
    background: #f7faf8;
    border: 1px solid #e3ece7;
    border-radius: 20px;
    padding: 18px;
}

.property-feature-item span {
    display: block;
    color: #667085;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}

.property-feature-item strong {
    display: block;
    color: #0f172a;
    font-size: 18px;
    line-height: 1.4;
}

.property-location-box p {
    margin: 0 0 16px;
    color: #475467;
    line-height: 1.8;
}

.property-map-wrap {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e3ece7;
}

.property-map-wrap iframe {
    width: 100%;
    height: 360px;
    border: 0;
    display: block;
}

.property-map-placeholder {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: #f4f8f5;
    border: 1px solid #dbe6e0;
    color: #667085;
    font-weight: 700;
}

.property-summary-card {
    padding: 28px;
}

.property-summary-price {
    font-size: 42px;
    line-height: 1;
    color: #0d4a38;
    font-weight: 800;
    margin: 16px 0 22px;
}

.property-summary-meta {
    display: grid;
    gap: 14px;
    margin-bottom: 20px;
}

.property-summary-meta div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #edf2ef;
}

.property-summary-meta span {
    color: #667085;
    font-weight: 700;
}

.property-summary-meta strong {
    color: #0f172a;
    font-weight: 800;
    text-align: right;
}

.property-status-box {
    border-radius: 18px;
    padding: 16px 18px;
    font-weight: 800;
    margin-bottom: 18px;
}

.property-status-box.active {
    background: #e8f7ee;
    color: #166534;
}

.property-status-box.sold {
    background: #fee2e2;
    color: #991b1b;
}

.property-status-box.rented {
    background: #dbeafe;
    color: #1d4ed8;
}

.property-contact-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.property-contact-btn {
    min-height: 50px;
    padding: 0 18px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex: 1;
}

.property-contact-btn.outline {
    border: 1px solid #dbe6e0;
    background: #fff;
    color: #0d4a38;
}

.property-contact-btn.primary {
    background: #0d4a38;
    color: #fff;
}

.property-summary-card h3 {
    margin: 14px 0 12px;
    font-size: 28px;
    color: #0f172a;
}

.property-summary-card p {
    margin: 0 0 18px;
    color: #667085;
    line-height: 1.85;
}

.property-side-link-btn {
    min-height: 50px;
    padding: 0 18px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0d4a38;
    color: #fff;
    font-weight: 800;
}

@media (max-width: 1150px) {
    .property-detail-layout-v2,
    .property-feature-grid {
        grid-template-columns: 1fr;
    }

    .property-detail-hero-inner h1 {
        font-size: 40px;
    }
}

@media (max-width: 760px) {
    .property-detail-hero-inner,
    .property-detail-content-card,
    .property-summary-card,
    .property-detail-gallery-card {
        padding: 24px;
    }

    .property-detail-hero-inner h1,
    .property-detail-section-head h2,
    .property-summary-price {
        font-size: 30px;
    }

    .property-detail-main-image {
        height: 280px;
    }

    .property-detail-thumb-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .property-detail-thumb {
        height: 90px;
    }

    .property-contact-buttons {
        flex-direction: column;
    }
}
.property-detail-gallery-card {
    position: relative;
}

/* OKLAR */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.5);
    color: white;
    font-size: 22px;
    cursor: pointer;
    z-index: 5;
}

.gallery-nav.prev {
    left: 12px;
}

.gallery-nav.next {
    right: 12px;
}

.gallery-nav:hover {
    background: #145c3a;
}

/* THUMB */
.property-detail-thumb {
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
}

.property-detail-thumb:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Header */
.site-header {
    background: #fff;
    border-bottom: 1px solid #e9eeeb;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-row {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.site-brand-text {
    display: flex;
    flex-direction: column;
}

.site-brand-text strong {
    font-size: 22px;
    line-height: 1.1;
    color: #0d4a38;
    font-weight: 800;
}

.site-brand-text span {
    font-size: 14px;
    color: #7b8794;
    margin-top: 4px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-nav a {
    text-decoration: none;
    color: #2d3748;
    font-weight: 700;
    font-size: 17px;
}

.header-cta {
    min-height: 48px;
    padding: 0 22px;
    border-radius: 16px;
    background: #0d5c43;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* hamburger */
.mobile-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid #d7e4dd;
    background: #fff;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #0d4a38;
    border-radius: 999px;
    transition: 0.25s ease;
}

/* aktifken çarpı */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 992px) {
    .header-row {
        min-height: 84px;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid #e9eeeb;
        padding: 18px 20px 24px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        box-shadow: 0 18px 32px rgba(13, 74, 56, 0.08);
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        width: 100%;
        font-size: 18px;
    }

    .header-cta {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .site-logo {
        width: 48px;
        height: 48px;
    }

    .site-brand-text strong {
        font-size: 18px;
    }

    .site-brand-text span {
        font-size: 12px;
    }
}
