@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap");

:root {
    --black: #070707;
    --black-soft: #111111;
    --black-light: #181818;
    --gold: #c99a4b;
    --gold-light: #e4bc72;
    --white: #ffffff;
    --gray: #b8b8b8;
    --border: rgba(201, 154, 75, 0.28);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, 92%);
    margin-inline: auto;
}

.section {
    padding: 90px 0;
}

/* HEADER */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
}

.navbar {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-symbol {
    width: 42px;
    height: 42px;
    border: 1px solid var(--gold);
    display: grid;
    place-items: center;
    color: var(--gold-light);
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-weight: 700;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.logo-text strong {
    font-family: "Playfair Display", serif;
    font-size: 23px;
    letter-spacing: 2px;
}

.logo-text small {
    margin-top: 5px;
    color: var(--gray);
    font-size: 8px;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.nav-menu a {
    position: relative;
    color: #dddddd;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold-light);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.offer-button,
.primary-button,
.secondary-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 22px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;
    transition: 0.3s ease;
}

.offer-button {
    border: 1px solid var(--gold);
    color: var(--gold-light);
}

.offer-button:hover {
    background: var(--gold);
    color: #090909;
}

.menu-button {
    display: none;
    border: 0;
    background: transparent;
    color: var(--gold-light);
    font-size: 28px;
    cursor: pointer;
}

/* HERO */

.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    padding-top: 78px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.65) 48%, rgba(0, 0, 0, 0.2) 100%),
        url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2000&q=85")
        center / cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 190px;
    background: linear-gradient(transparent, var(--black));
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 55%, rgba(201, 154, 75, 0.16), transparent 28%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.28));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 40px;
}

.hero-label {
    margin-bottom: 24px;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(42px, 5vw, 76px);
    line-height: 1.08;
    text-transform: uppercase;
    letter-spacing: -1.5px;
}

.hero h1 span {
    display: block;
    color: var(--gold-light);
}

.hero-description {
    max-width: 630px;
    margin-top: 26px;
    color: #d0d0d0;
    font-size: 16px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.primary-button {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #080808;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(201, 154, 75, 0.25);
}

.secondary-button {
    border: 1px solid var(--gold);
    color: var(--gold-light);
}

.secondary-button:hover {
    background: rgba(201, 154, 75, 0.12);
}

/* İSTATİSTİK */

.statistics {
    position: relative;
    z-index: 3;
    margin-top: -70px;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(9, 9, 9, 0.96);
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.statistic-item {
    position: relative;
    padding: 34px 24px;
    text-align: center;
}

.statistic-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20%;
    right: 0;
    width: 1px;
    height: 60%;
    background: rgba(255, 255, 255, 0.1);
}

.statistic-icon {
    display: block;
    margin-bottom: 9px;
    color: var(--gold-light);
    font-size: 31px;
}

.statistic-item strong {
    display: block;
    font-size: 27px;
}

.statistic-item h2 {
    margin-top: 3px;
    font-size: 12px;
    font-weight: 600;
}

.statistic-item p {
    margin-top: 4px;
    color: var(--gold);
    font-size: 10px;
}

/* BAŞLIK */

.section-heading {
    margin-bottom: 42px;
    text-align: center;
}

.section-heading > span,
.about-content > span,
.contact-box > div > span {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-heading h2 {
    margin-top: 10px;
    font-size: clamp(28px, 4vw, 45px);
    font-weight: 500;
}

.section-heading h2 strong {
    color: var(--gold-light);
    font-weight: 600;
}

/* HİZMETLER */

.services {
    background:
        radial-gradient(circle at 50% 0%, rgba(201, 154, 75, 0.08), transparent 35%),
        var(--black);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    overflow: hidden;
    background: var(--black-soft);
    border: 1px solid rgba(255, 255, 255, 0.09);
    transition: 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border);
}

.service-image {
    height: 235px;
    background-position: center;
    background-size: cover;
    filter: brightness(0.64);
    transition: 0.45s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
    filter: brightness(0.8);
}

.service-image-one {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.35)),
        url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1000&q=80");
}

.service-image-two {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.4)),
        url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1000&q=80");
}

.service-image-three {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.4)),
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1000&q=80");
}

.service-content {
    position: relative;
    min-height: 245px;
    padding: 34px 28px 30px;
    text-align: center;
}

.service-icon {
    position: absolute;
    top: -29px;
    left: 50%;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    transform: translateX(-50%);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #090909;
    font-size: 25px;
}

.service-content h3 {
    margin-top: 8px;
    color: var(--gold-light);
    font-size: 19px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-content p {
    margin: 16px auto 20px;
    color: var(--gray);
    font-size: 13px;
}

.service-content a {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* HAKKIMIZDA */

.about {
    background: #0b0b0b;
}

.about-box {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 58px;
    border: 1px solid var(--border);
    background:
        linear-gradient(110deg, rgba(10, 10, 10, 0.98), rgba(10, 10, 10, 0.7)),
        url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?auto=format&fit=crop&w=1500&q=80")
        center / cover no-repeat;
}

.about-content h2 {
    margin-top: 12px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.18;
}

.about-content p {
    max-width: 650px;
    margin-top: 20px;
    color: #c7c7c7;
}

.about-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.about-numbers div {
    padding: 18px 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.about-numbers strong {
    display: block;
    color: var(--gold-light);
    font-size: 34px;
}

.about-numbers span {
    display: block;
    margin-top: 4px;
    color: var(--gray);
    font-size: 10px;
    text-transform: uppercase;
}

/* İLETİŞİM */

.contact {
    padding: 55px 0;
    background: linear-gradient(135deg, #16120b, #070707);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.contact-box h2 {
    max-width: 650px;
    margin-top: 8px;
    font-size: clamp(25px, 3.5vw, 43px);
}

.contact-actions {
    display: flex;
    gap: 14px;
}

.contact-actions a {
    min-width: 145px;
    padding: 14px 18px;
    text-align: center;
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.contact-actions a:hover {
    background: var(--gold);
    color: #090909;
}

/* FOOTER */

.footer {
    background: #050505;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 0.8fr;
    gap: 60px;
    padding: 70px 0;
}

.footer-brand p {
    max-width: 430px;
    margin-top: 22px;
    color: #9d9d9d;
    font-size: 13px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-links h3 {
    margin-bottom: 8px;
    color: var(--gold-light);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a,
.footer-links p {
    color: #a9a9a9;
    font-size: 12px;
    transition: 0.2s ease;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.copyright {
    padding: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #777777;
    text-align: center;
    font-size: 11px;
}

/* MOBİL */

@media (max-width: 1050px) {
    .nav-menu {
        position: fixed;
        top: 78px;
        left: -100%;
        width: 100%;
        padding: 30px;
        flex-direction: column;
        background: rgba(5, 5, 5, 0.98);
        border-bottom: 1px solid var(--border);
        transition: 0.3s ease;
    }

    .nav-menu.open {
        left: 0;
    }

    .menu-button {
        display: block;
    }

    .offer-button {
        margin-left: auto;
    }

    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .statistic-item:nth-child(2)::after {
        display: none;
    }

    .service-grid {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin-inline: auto;
    }

    .about-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .section {
        padding: 70px 0;
    }

    .navbar {
        min-height: 70px;
    }

    .logo-text strong {
        font-size: 18px;
    }

    .logo-text small {
        font-size: 7px;
    }

    .offer-button {
        display: none;
    }

    .hero {
        min-height: 680px;
        padding-top: 70px;
    }

    .hero h1 {
        font-size: 39px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .statistics {
        margin-top: -35px;
    }

    .statistics-grid {
        grid-template-columns: 1fr;
    }

    .statistic-item::after {
        top: auto !important;
        right: 10% !important;
        bottom: 0;
        width: 80% !important;
        height: 1px !important;
    }

    .statistic-item:last-child::after {
        display: none;
    }

    .about-box {
        padding: 38px 24px;
    }

    .about-numbers {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .about-numbers div {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-actions {
        width: 100%;
        flex-direction: column;
    }

    .contact-actions a {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}/* PORTFÖYLER */

.portfolio {
    background:
        radial-gradient(circle at 50% 0%, rgba(201, 154, 75, 0.08), transparent 34%),
        #090909;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.portfolio-card {
    overflow: hidden;
    background: #101010;
    border: 1px solid rgba(255, 255, 255, 0.09);
    transition: 0.35s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: var(--border);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.portfolio-image {
    position: relative;
    height: 220px;
    background-position: center;
    background-size: cover;
    transition: 0.45s ease;
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.04);
}

.portfolio-one {
    background-image: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=900&q=80");
}

.portfolio-two {
    background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=900&q=80");
}

.portfolio-three {
    background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=900&q=80");
}

.portfolio-four {
    background-image: url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=900&q=80");
}

.portfolio-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 7px 12px;
    background: rgba(8, 8, 8, 0.82);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-content {
    padding: 24px;
}

.portfolio-content h3 {
    color: var(--white);
    font-size: 18px;
}

.portfolio-content p {
    margin-top: 4px;
    color: var(--gray);
    font-size: 12px;
}

.portfolio-content strong {
    display: block;
    margin-top: 16px;
    color: var(--gold-light);
    font-size: 15px;
}

.portfolio-content a {
    display: inline-block;
    margin-top: 18px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 1050px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}/* ==================================================
   YÖNETİM PANELİ
================================================== */

.hidden {
    display: none !important;
}

.admin-page {
    min-height: 100vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.94)),
        url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2000&q=85")
        center / cover fixed no-repeat;
}

/* GİRİŞ EKRANI */

.admin-login-screen {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 40px 20px;
}

.admin-login-card {
    width: min(480px, 100%);
    padding: 48px;
    background: rgba(9, 9, 9, 0.94);
    border: 1px solid rgba(201, 154, 75, 0.35);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(18px);
}

.admin-logo {
    margin-bottom: 42px;
}

.admin-login-heading > span {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.admin-login-heading h1 {
    margin-top: 10px;
    font-size: 36px;
    line-height: 1.15;
}

.admin-login-heading p {
    margin-top: 16px;
    color: var(--gray);
    font-size: 13px;
}

.admin-login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.admin-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-input-group label {
    color: #dddddd;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-input-group input {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    outline: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #101010;
    color: var(--white);
    font-family: inherit;
    font-size: 13px;
    transition: 0.25s ease;
}

.admin-input-group input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 154, 75, 0.12);
}

.admin-input-group input::placeholder {
    color: #666666;
}

.admin-login-button {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #090909;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s ease;
}

.admin-login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(201, 154, 75, 0.24);
}

.admin-login-message {
    min-height: 20px;
    color: #ff6b6b;
    font-size: 12px;
    text-align: center;
}

.admin-back-link {
    display: inline-block;
    margin-top: 26px;
    color: var(--gold);
    font-size: 12px;
    transition: 0.2s ease;
}

.admin-back-link:hover {
    color: var(--gold-light);
}

/* PANEL GENEL YAPI */

.admin-dashboard {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 270px 1fr;
    background: #080808;
}

.admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 270px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 32px 22px;
    background: #0d0d0d;
    border-right: 1px solid rgba(201, 154, 75, 0.22);
    z-index: 100;
}

.admin-sidebar-logo {
    margin-bottom: 50px;
}

.admin-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;

    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.admin-menu-item {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 16px;
    border: 1px solid transparent;
    background: transparent;
    color: #aaaaaa;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: 0.25s ease;
}

.admin-menu-item span {
    width: 22px;
    color: var(--gold);
    font-size: 18px;
    text-align: center;
}

.admin-menu-item:hover,
.admin-menu-item.active {
    border-color: rgba(201, 154, 75, 0.32);
    background: rgba(201, 154, 75, 0.08);
    color: var(--gold-light);
}

.admin-logout-button {
    width: 100%;
    min-height: 46px;
    margin-top: auto;
    flex-shrink: 0;
    border: 1px solid rgba(255, 93, 93, 0.4);
    background: transparent;
    color: #ff7676;
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.25s ease;
}

.admin-logout-button:hover {
    background: rgba(255, 93, 93, 0.1);
}

.admin-main {
    grid-column: 2;
    min-width: 0;
    padding: 40px;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 34px;
}

.admin-topbar span,
.admin-section-heading span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.admin-topbar h1 {
    margin-top: 5px;
    font-size: 34px;
}

.admin-view-site {
    padding: 13px 18px;
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.admin-view-site:hover {
    background: var(--gold);
    color: #080808;
}

/* ÖZET KARTLARI */

.admin-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 34px;
}

.admin-summary-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
    background:
        linear-gradient(145deg, rgba(201, 154, 75, 0.08), transparent),
        #101010;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s ease;
}

.admin-summary-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
}

.admin-summary-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 154, 75, 0.35);
}

.admin-summary-card > span {
    color: #aaaaaa;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-summary-card strong {
    display: block;
    margin-top: 12px;
    color: var(--gold-light);
    font-size: 38px;
    line-height: 1;
}

.admin-summary-card small {
    display: block;
    margin-top: 10px;
    color: #777777;
    font-size: 10px;
}

/* İLAN TABLOSU */

.admin-panel-section {
    padding: 28px;
    background: #0e0e0e;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.admin-section-heading h2 {
    margin-top: 6px;
    font-size: 24px;
}

.admin-primary-button {
    min-height: 44px;
    padding: 0 18px;
    border: 0;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #090909;
    font-family: inherit;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.25s ease;
}

.admin-primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 154, 75, 0.18);
}

.admin-table-wrapper {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    min-width: 780px;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 17px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: left;
}

.admin-table th {
    color: var(--gold);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-table td {
    color: #c8c8c8;
    font-size: 12px;
}

.admin-table tbody tr {
    transition: 0.2s ease;
}

.admin-table tbody tr:hover {
    background: rgba(201, 154, 75, 0.04);
}

.admin-table td:first-child {
    color: var(--white);
    font-weight: 600;
}

.admin-status {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.admin-status.active {
    background: rgba(50, 190, 120, 0.12);
    color: #5ee19c;
}

.admin-status.passive {
    background: rgba(255, 180, 70, 0.12);
    color: #ffc16b;
}

.admin-table td button {
    padding: 8px 12px;
    border: 1px solid rgba(201, 154, 75, 0.45);
    background: transparent;
    color: var(--gold-light);
    font-family: inherit;
    font-size: 10px;
    cursor: pointer;
    transition: 0.2s ease;
}

.admin-table td button:hover {
    background: var(--gold);
    color: #090909;
}

/* PANEL MOBİL */

@media (max-width: 1100px) {
    .admin-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 850px) {
    .admin-dashboard {
        display: block;
    }

    .admin-sidebar {
        position: static;
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .admin-sidebar-logo {
        margin-bottom: 20px;
    }

    .admin-menu {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-logout-button {
        margin-top: 20px;
    }

    .admin-main {
        padding: 24px;
    }
}

@media (max-width: 600px) {
    .admin-login-card {
        padding: 32px 22px;
    }

    .admin-login-heading h1 {
        font-size: 28px;
    }

    .admin-topbar,
    .admin-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-summary-grid {
        grid-template-columns: 1fr;
    }

    .admin-menu {
        grid-template-columns: 1fr;
    }

    .admin-main {
        padding: 18px;
    }

    .admin-panel-section {
        padding: 20px 14px;
    }
}/* YENİ İLAN FORMU */

.admin-listing-form {
    margin-top: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #dddddd;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    outline: none;
    background: #101010;
    color: #ffffff;
    font-family: inherit;
    font-size: 13px;
    transition: 0.25s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 154, 75, 0.12);
}

.form-group select option {
    background: #101010;
    color: #ffffff;
}

@media (max-width: 700px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}.admin-table-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-table td .admin-delete-button {
    border-color: rgba(255, 90, 90, 0.45);
    color: #ff7777;
}

.admin-table td .admin-delete-button:hover {
    background: #d44747;
    border-color: #d44747;
    color: #ffffff;
}/* İLAN DETAY SAYFASI */

.listing-detail-page {
    min-height: 100vh;
    background: #080808;
}

.listing-detail-hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: flex-end;
    padding-top: 78px;
    overflow: hidden;
}

.listing-detail-image {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.listing-detail-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.18),
            rgba(0, 0, 0, 0.92)
        );
}

.listing-detail-heading {
    position: relative;
    z-index: 2;
    padding-bottom: 58px;
}

.listing-detail-heading > span {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 13px;
    border: 1px solid var(--gold);
    background: rgba(0, 0, 0, 0.65);
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.listing-detail-heading h1 {
    max-width: 900px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.05;
}

.listing-detail-heading p {
    margin-top: 14px;
    color: #d3d3d3;
    font-size: 15px;
}

.listing-detail-content {
    background:
        radial-gradient(
            circle at 20% 0%,
            rgba(201, 154, 75, 0.08),
            transparent 30%
        ),
        #080808;
}

.listing-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.7fr);
    gap: 36px;
    align-items: start;
}

.listing-detail-main {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.listing-detail-price,
.listing-detail-description,
.listing-contact-card {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: #101010;
}

.listing-detail-price > span,
.listing-detail-description > span,
.listing-contact-card > span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.listing-detail-price strong {
    display: block;
    margin-top: 10px;
    color: var(--gold-light);
    font-size: clamp(28px, 4vw, 44px);
}

.listing-detail-description h2,
.listing-contact-card h2 {
    margin-top: 10px;
    font-size: 27px;
}

.listing-detail-description p,
.listing-contact-card p {
    margin-top: 16px;
    color: #b8b8b8;
    font-size: 14px;
    line-height: 1.8;
}

.listing-contact-card {
    position: sticky;
    top: 105px;
}

.listing-contact-card .primary-button,
.listing-contact-card .secondary-button {
    width: 100%;
    margin-top: 18px;
}

@media (max-width: 900px) {
    .listing-detail-grid {
        grid-template-columns: 1fr;
    }

    .listing-contact-card {
        position: static;
    }
}

@media (max-width: 600px) {
    .listing-detail-hero {
        min-height: 500px;
    }

    .listing-detail-price,
    .listing-detail-description,
    .listing-contact-card {
        padding: 24px;
    }
}/* ADMIN FOTOĞRAF ÖNİZLEME */

.admin-image-preview {
    position: relative;
    margin-top: 15px;
    padding: 12px;
    border: 1px solid rgba(201, 154, 75, 0.35);
    background: #0b0b0b;
}

.admin-image-preview img {
    display: block;
    width: 100%;
    max-height: 260px;
    object-fit: cover;
}

.admin-image-preview button {
    width: 100%;
    min-height: 42px;
    margin-top: 12px;
    border: 1px solid rgba(255, 90, 90, 0.5);
    background: transparent;
    color: #ff7777;
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}

.admin-image-preview button:hover {
    background: #c94444;
    color: #ffffff;
}/* =========================================================
   İLAN DETAY FOTOĞRAF GALERİSİ
========================================================= */

.listing-detail-hero {
    position: relative;
    overflow: hidden;
}

.listing-detail-image {
    cursor: grab;
    transition:
        background-image 0.25s ease,
        transform 0.4s ease;
}

.listing-detail-image:active {
    cursor: grabbing;
}

.listing-gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    padding: 0;
    border: 1px solid rgba(225, 177, 87, 0.65);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: #e1b157;
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.listing-gallery-arrow:hover {
    border-color: #e1b157;
    background: #e1b157;
    color: #080808;
}

.listing-gallery-arrow-left {
    left: 32px;
}

.listing-gallery-arrow-right {
    right: 32px;
}

.listing-gallery-counter {
    position: absolute;
    right: 30px;
    bottom: 26px;
    z-index: 8;
    padding: 9px 14px;
    border: 1px solid rgba(225, 177, 87, 0.4);
    background: rgba(0, 0, 0, 0.75);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.listing-thumbnail-section {
    padding: 20px 0;
    border-top: 1px solid rgba(225, 177, 87, 0.15);
    border-bottom: 1px solid rgba(225, 177, 87, 0.15);
    background: #090909;
}

.listing-thumbnail-gallery {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    scrollbar-width: thin;
    scrollbar-color: #c99a4b #161616;
}

.listing-thumbnail-gallery::-webkit-scrollbar {
    height: 7px;
}

.listing-thumbnail-gallery::-webkit-scrollbar-track {
    background: #161616;
}

.listing-thumbnail-gallery::-webkit-scrollbar-thumb {
    background: #c99a4b;
}

.listing-thumbnail-button {
    flex: 0 0 150px;
    height: 100px;
    padding: 0;
    overflow: hidden;
    border: 2px solid transparent;
    background: #111111;
    opacity: 0.62;
    cursor: pointer;
    transition:
        opacity 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.listing-thumbnail-button:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.listing-thumbnail-button.active {
    border-color: #e1b157;
    opacity: 1;
}

.listing-thumbnail-button img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .listing-gallery-arrow {
        width: 42px;
        height: 42px;
        font-size: 30px;
    }

    .listing-gallery-arrow-left {
        left: 12px;
    }

    .listing-gallery-arrow-right {
        right: 12px;
    }

    .listing-gallery-counter {
        right: 14px;
        bottom: 14px;
        padding: 7px 10px;
        font-size: 11px;
    }

    .listing-thumbnail-button {
        flex-basis: 115px;
        height: 78px;
    }
}/* =========================================================
   TAM EKRAN FOTOĞRAF GALERİSİ
========================================================= */

body.lightbox-open {
    overflow: hidden;
}

.listing-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 90px;
    background: rgba(0, 0, 0, 0.96);
}

.listing-lightbox.hidden {
    display: none;
}

.listing-lightbox-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.listing-lightbox-content img {
    display: block;
    max-width: 100%;
    max-height: 88vh;
    object-fit: contain;
    user-select: none;
}

.listing-lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    z-index: 3;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(225, 177, 87, 0.65);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.75);
    color: #e1b157;
    font-size: 20px;
    cursor: pointer;
}

.listing-lightbox-close:hover {
    background: #e1b157;
    color: #080808;
}

.listing-lightbox-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    padding: 0;
    border: 1px solid rgba(225, 177, 87, 0.65);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.72);
    color: #e1b157;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
}

.listing-lightbox-arrow:hover {
    background: #e1b157;
    color: #080808;
}

.listing-lightbox-arrow-left {
    left: 25px;
}

.listing-lightbox-arrow-right {
    right: 25px;
}

.listing-lightbox-counter {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 9px 14px;
    border: 1px solid rgba(225, 177, 87, 0.45);
    background: rgba(0, 0, 0, 0.78);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .listing-lightbox {
        padding: 70px 15px 35px;
    }

    .listing-lightbox-arrow {
        width: 44px;
        height: 44px;
        font-size: 32px;
    }

    .listing-lightbox-arrow-left {
        left: 8px;
    }

    .listing-lightbox-arrow-right {
        right: 8px;
    }

    .listing-lightbox-close {
        top: 15px;
        right: 15px;
        width: 42px;
        height: 42px;
    }

    .listing-lightbox-counter {
        right: 8px;
        bottom: 8px;
    }
}/* =========================================================
   İLAN EMLAK BİLGİLERİ
========================================================= */

.listing-property-section {
    margin-top: 32px;
    padding: 30px;
    border: 1px solid rgba(201, 154, 75, 0.25);
    background: #0d0d0d;
}

.listing-property-heading {
    margin-bottom: 24px;
}

.listing-property-heading > span {
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.listing-property-heading h2 {
    margin: 7px 0 8px;
    color: #ffffff;
    font-size: 28px;
}

.listing-property-heading p {
    margin: 0;
    color: #969696;
    font-size: 13px;
    line-height: 1.6;
}

.listing-property-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.listing-property-item {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 82px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #121212;
    transition:
        border-color 0.2s ease,
        transform 0.2s ease;
}

.listing-property-item:hover {
    border-color: rgba(201, 154, 75, 0.55);
    transform: translateY(-2px);
}

.listing-property-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(201, 154, 75, 0.35);
    background: rgba(201, 154, 75, 0.08);
    font-size: 19px;
}

.listing-property-item div {
    min-width: 0;
}

.listing-property-item small {
    display: block;
    margin-bottom: 5px;
    color: #858585;
    font-size: 10px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.listing-property-item strong {
    display: block;
    overflow: hidden;
    color: #ffffff;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 950px) {
    .listing-property-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .listing-property-section {
        padding: 20px 15px;
    }

    .listing-property-grid {
        grid-template-columns: 1fr;
    }

    .listing-property-heading h2 {
        font-size: 23px;
    }
}/* =========================================================
   PORTFÖY ARAMA VE FİLTRELEME
========================================================= */

.portfolio-filter-panel {
    margin: 38px 0 42px;
    padding: 28px;
    border: 1px solid rgba(201, 154, 75, 0.28);
    background:
        linear-gradient(
            145deg,
            rgba(201, 154, 75, 0.07),
            rgba(255, 255, 255, 0.015)
        ),
        #0b0b0b;
}

.portfolio-filter-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-filter-heading span {
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.portfolio-filter-heading h3 {
    margin: 7px 0 0;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.25;
}

.portfolio-filter-clear {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: transparent;
    color: #b7b7b7;
    font-family: inherit;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        color 0.2s ease;
}

.portfolio-filter-clear:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

.portfolio-filter-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 15px;
}

.portfolio-filter-group {
    min-width: 0;
}

.portfolio-filter-search {
    grid-column: span 2;
}

.portfolio-filter-group label {
    display: block;
    margin-bottom: 8px;
    color: #9b9b9b;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.portfolio-filter-group input,
.portfolio-filter-group select {
    width: 100%;
    min-height: 48px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    outline: none;
    background: #111111;
    color: #ffffff;
    font-family: inherit;
    font-size: 12px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.portfolio-filter-group input::placeholder {
    color: #666666;
}

.portfolio-filter-group input:focus,
.portfolio-filter-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 154, 75, 0.1);
}

.portfolio-filter-group select option {
    background: #111111;
    color: #ffffff;
}

.portfolio-filter-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 23px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-filter-footer p {
    margin: 0;
    color: #a1a1a1;
    font-size: 13px;
}

.portfolio-filter-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid var(--gold);
    background: var(--gold);
    color: #080808;
    font-family: inherit;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.portfolio-filter-button:hover {
    background: transparent;
    color: var(--gold-light);
}

/* PORTFÖY KARTI YENİ BİLGİLER */

.portfolio-image {
    position: relative;
}

.portfolio-image-count {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 7px 10px;
    background: rgba(0, 0, 0, 0.78);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
}

.portfolio-property-type {
    display: block;
    margin-bottom: 8px;
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.portfolio-location {
    margin-bottom: 14px;
}

.portfolio-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 16px;
}

.portfolio-feature-badge {
    padding: 7px 9px;
    border: 1px solid rgba(201, 154, 75, 0.22);
    background: rgba(201, 154, 75, 0.06);
    color: #b9b9b9;
    font-size: 10px;
    font-weight: 600;
}

.portfolio-price {
    display: block;
    margin-bottom: 18px;
}

.portfolio-empty-message {
    padding: 35px 20px;
    border: 1px solid rgba(201, 154, 75, 0.2);
    background: #0d0d0d;
    color: #b5b5b5;
    text-align: center;
}

.portfolio-loading-message {
    grid-column: 1 / -1;
    color: #aaaaaa;
    text-align: center;
}

/* RESPONSIVE */

@media (max-width: 1150px) {
    .portfolio-filter-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .portfolio-filter-search {
        grid-column: span 2;
    }
}

@media (max-width: 780px) {
    .portfolio-filter-panel {
        padding: 20px;
    }

    .portfolio-filter-heading {
        flex-direction: column;
    }

    .portfolio-filter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .portfolio-filter-search {
        grid-column: 1 / -1;
    }

    .portfolio-filter-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .portfolio-filter-button {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .portfolio-filter-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-filter-search {
        grid-column: auto;
    }

    .portfolio-filter-heading h3 {
        font-size: 20px;
    }
}/* =========================================================
   HARİTA VE KONUM KARTI
========================================================= */

.listing-map-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 48px;
    margin-top: 12px;
    border: 1px solid rgba(201, 154, 75, 0.55);
    background: rgba(201, 154, 75, 0.07);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.listing-map-button:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: #080808;
}

.listing-location-summary {
    margin-top: 20px;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #111111;
}

.listing-location-summary small {
    display: block;
    margin-bottom: 7px;
    color: #888888;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.listing-location-summary strong {
    display: block;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.5;
}

.listing-location-summary p {
    margin: 9px 0 0;
    color: #777777;
    font-size: 10px;
    line-height: 1.5;
}

/* =========================================================
   BENZER İLANLAR
========================================================= */

.similar-listings {
    border-top: 1px solid rgba(201, 154, 75, 0.13);
    background: #090909;
}

.similar-listings-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 35px;
}

.similar-listing-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #101010;
    transition:
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.similar-listing-card:hover {
    border-color: rgba(201, 154, 75, 0.55);
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
}

.similar-listing-image {
    position: relative;
    display: block;
    height: 190px;
    background-position: center;
    background-size: cover;
}

.similar-listing-image span {
    position: absolute;
    top: 13px;
    left: 13px;
    padding: 7px 10px;
    background: rgba(0, 0, 0, 0.78);
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.similar-listing-content {
    padding: 19px;
}

.similar-listing-content > small {
    display: block;
    margin-bottom: 8px;
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.similar-listing-content h3 {
    margin: 0 0 9px;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.35;
}

.similar-listing-content p {
    min-height: 38px;
    margin: 0 0 13px;
    color: #8d8d8d;
    font-size: 11px;
    line-height: 1.6;
}

.similar-listing-features {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 15px;
}

.similar-listing-features span {
    padding: 6px 8px;
    border: 1px solid rgba(201, 154, 75, 0.22);
    background: rgba(201, 154, 75, 0.05);
    color: #b5b5b5;
    font-size: 9px;
}

.similar-listing-content strong {
    display: block;
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 15px;
}

.similar-listing-content > a {
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-decoration: none;
    text-transform: uppercase;
}

.similar-listings-footer {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

@media (max-width: 1100px) {
    .similar-listings-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .similar-listings-grid {
        grid-template-columns: 1fr;
    }

    .similar-listing-image {
        height: 220px;
    }
}/* =========================================================
   FAVORİLER SİSTEMİ
========================================================= */

.portfolio-favorites-toolbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin: -20px 0 26px;
}

.portfolio-favorites-toggle,
.portfolio-favorites-clear {
    min-height: 43px;
    padding: 0 16px;
    border: 1px solid rgba(201, 154, 75, 0.35);
    background: #0d0d0d;
    color: #d7d7d7;
    font-family: inherit;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.65px;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.portfolio-favorites-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.portfolio-favorites-heart {
    color: #e6b75d;
    font-size: 19px;
    line-height: 1;
}

.portfolio-favorites-toggle strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 20px;
    background: rgba(201, 154, 75, 0.15);
    color: var(--gold-light);
    font-size: 10px;
}

.portfolio-favorites-toggle:hover,
.portfolio-favorites-toggle.active {
    border-color: var(--gold);
    background: var(--gold);
    color: #080808;
}

.portfolio-favorites-toggle.active
.portfolio-favorites-heart,
.portfolio-favorites-toggle.active strong {
    color: #080808;
}

.portfolio-favorites-clear:disabled {
    cursor: not-allowed;
    opacity: 0.38;
}

.portfolio-favorites-clear:not(:disabled):hover {
    border-color: #d96464;
    color: #ff8585;
}

/* İLAN KARTINDAKİ KALP */

.portfolio-favorite-button {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.74);
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.portfolio-favorite-button:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    transform: scale(1.08);
}

.portfolio-favorite-button.active {
    border-color: #e5b65c;
    background: #e5b65c;
    color: #090909;
}

/* TELEFON GÖRÜNÜMÜ */

@media (max-width: 600px) {
    .portfolio-favorites-toolbar {
        align-items: stretch;
        flex-direction: column;
        margin-top: -12px;
    }

    .portfolio-favorites-toggle,
    .portfolio-favorites-clear {
        width: 100%;
    }
}/* ===========================
   İLAN İLETİŞİM FORMU
=========================== */

.listing-contact-form-button{
    width:100%;
    margin-bottom:15px;
}

.listing-contact-modal{
    position:fixed;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(8px);
    z-index:99999;
    padding:20px;
}

.listing-contact-modal.hidden{
    display:none;
}

.listing-contact-modal-box{
    position:relative;
    width:100%;
    max-width:760px;
    background:#121212;
    border:1px solid rgba(201,154,75,.35);
    border-radius:14px;
    padding:40px;
    box-shadow:0 25px 70px rgba(0,0,0,.45);
}

.listing-contact-modal-close{
    position:absolute;
    top:18px;
    right:18px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#222;
    color:#fff;
    font-size:18px;
    cursor:pointer;
    transition:.25s;
}

.listing-contact-modal-close:hover{
    background:#c99a4b;
    color:#111;
}

.listing-contact-modal-heading span{
    color:#c99a4b;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:12px;
}

.listing-contact-modal-heading h2{
    margin:10px 0;
    color:#fff;
    font-size:32px;
}

.listing-contact-modal-heading p{
    color:#a8a8a8;
    margin-bottom:30px;
}

.listing-contact-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.listing-contact-form-group{
    display:flex;
    flex-direction:column;
}

.listing-contact-form-group label{
    margin-bottom:8px;
    color:#d5d5d5;
    font-size:13px;
}

.listing-contact-form-group input,
.listing-contact-form-group textarea{

    width:100%;
    background:#1a1a1a;
    border:1px solid #333;
    color:#fff;
    border-radius:8px;
    padding:14px;
    font-size:14px;
    transition:.25s;
}

.listing-contact-form-group input:focus,
.listing-contact-form-group textarea:focus{

    border-color:#c99a4b;
    outline:none;
    box-shadow:0 0 0 3px rgba(201,154,75,.15);

}

.listing-contact-form-group textarea{

    min-height:170px;
    resize:vertical;
}

.listing-contact-submit{

    width:100%;
    margin-top:28px;
}

.listing-contact-form-message{

    min-height:24px;
    margin-top:18px;
    text-align:center;
    font-weight:600;
}

@media(max-width:700px){

.listing-contact-modal-box{

padding:25px;

}

.listing-contact-form-grid{

grid-template-columns:1fr;

}

.listing-contact-modal-heading h2{

font-size:25px;

}

}/* =========================================================
   ANA SAYFA GENEL İLETİŞİM FORMU
========================================================= */

.general-contact-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);
    gap: 42px;
    align-items: start;
}

.general-contact-intro {
    padding: 35px;
    border: 1px solid rgba(201, 154, 75, 0.3);
    background:
        linear-gradient(
            145deg,
            rgba(201, 154, 75, 0.09),
            rgba(255, 255, 255, 0.015)
        ),
        #0d0d0d;
}

.general-contact-intro > span {
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.general-contact-intro h2 {
    margin: 12px 0 16px;
    color: #ffffff;
    font-size: 38px;
    line-height: 1.2;
}

.general-contact-intro > p {
    margin: 0;
    color: #9c9c9c;
    font-size: 14px;
    line-height: 1.8;
}

.general-contact-direct {
    display: grid;
    gap: 11px;
    margin-top: 30px;
}

.general-contact-direct a {
    display: block;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: #111111;
    text-decoration: none;
    transition:
        border-color 0.2s ease,
        transform 0.2s ease;
}

.general-contact-direct a:hover {
    border-color: var(--gold);
    transform: translateX(4px);
}

.general-contact-direct small {
    display: block;
    margin-bottom: 6px;
    color: #777777;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.general-contact-direct strong {
    color: #ffffff;
    font-size: 14px;
}

.general-contact-form {
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #0d0d0d;
}

.general-contact-form-heading {
    margin-bottom: 25px;
}

.general-contact-form-heading span {
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.general-contact-form-heading h3 {
    margin: 8px 0 0;
    color: #ffffff;
    font-size: 27px;
}

.general-contact-form-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.general-contact-form-group {
    margin-bottom: 17px;
}

.general-contact-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #b7b7b7;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.general-contact-form-group input,
.general-contact-form-group select,
.general-contact-form-group textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    outline: none;
    background: #141414;
    color: #ffffff;
    font-family: inherit;
    font-size: 13px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.general-contact-form-group input,
.general-contact-form-group select {
    min-height: 50px;
    padding: 0 14px;
}

.general-contact-form-group textarea {
    min-height: 155px;
    padding: 14px;
    resize: vertical;
    line-height: 1.7;
}

.general-contact-form-group input:focus,
.general-contact-form-group select:focus,
.general-contact-form-group textarea:focus {
    border-color: var(--gold);
    box-shadow:
        0 0 0 3px
        rgba(201, 154, 75, 0.1);
}

.general-contact-form-group select option {
    background: #141414;
    color: #ffffff;
}

.general-contact-form-message {
    min-height: 22px;
    margin: 2px 0 14px;
    font-size: 12px;
    line-height: 1.5;
}

.general-contact-form-message.success {
    color: #68d99a;
}

.general-contact-form-message.error {
    color: #ff7777;
}

.general-contact-submit {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.general-contact-submit:disabled {
    cursor: wait;
    opacity: 0.65;
}

@media (max-width: 900px) {
    .general-contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .general-contact-intro,
    .general-contact-form {
        padding: 24px 18px;
    }

    .general-contact-intro h2 {
        font-size: 29px;
    }

    .general-contact-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .general-contact-form-heading h3 {
        font-size: 23px;
    }
}/* =========================================================
   REKLAMCILIK TEKLİF PENCERESİ
========================================================= */

.service-link-button {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--gold-light);
    font-family: inherit;
    font-size: inherit;
    font-weight: 700;
    cursor: pointer;
}

.service-link-button:hover {
    color: #ffffff;
}

.advertising-modal {
    position: fixed;
    inset: 0;
    z-index: 6000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.advertising-modal.hidden {
    display: none;
}

.advertising-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(7px);
}

.advertising-modal-box {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    max-height: calc(100vh - 44px);
    overflow-y: auto;
    padding: 36px;
    border: 1px solid rgba(201, 154, 75, 0.45);
    background: #0d0d0d;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}

.advertising-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: #171717;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
}

.advertising-modal-close:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

.advertising-modal-heading {
    margin-bottom: 26px;
    padding-right: 55px;
}

.advertising-modal-heading span {
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.advertising-modal-heading h2 {
    margin: 8px 0;
    color: #ffffff;
    font-size: 30px;
}

.advertising-modal-heading p {
    margin: 0;
    color: #929292;
    font-size: 13px;
    line-height: 1.7;
}

.advertising-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.advertising-form-group {
    margin-bottom: 17px;
}

.advertising-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #b7b7b7;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.advertising-form-group input,
.advertising-form-group select,
.advertising-form-group textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    outline: none;
    background: #141414;
    color: #ffffff;
    font-family: inherit;
    font-size: 13px;
}

.advertising-form-group input,
.advertising-form-group select {
    min-height: 50px;
    padding: 0 14px;
}

.advertising-form-group textarea {
    min-height: 150px;
    padding: 14px;
    resize: vertical;
    line-height: 1.7;
}

.advertising-form-group input:focus,
.advertising-form-group select:focus,
.advertising-form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 154, 75, 0.1);
}

.advertising-form-message {
    min-height: 22px;
    margin: 0 0 14px;
    font-size: 12px;
}

.advertising-form-message.success {
    color: #68d99a;
}

.advertising-form-message.error {
    color: #ff7777;
}

.advertising-submit-button {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.advertising-submit-button:disabled {
    cursor: wait;
    opacity: 0.65;
}

@media (max-width: 650px) {
    .advertising-modal {
        padding: 12px;
    }

    .advertising-modal-box {
        padding: 28px 18px;
    }

    .advertising-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .advertising-modal-heading h2 {
        font-size: 24px;
    }
}/* =========================================================
   DANIŞMANLIK TALEP PENCERESİ
========================================================= */

.consulting-modal {
    position: fixed;
    inset: 0;
    z-index: 6100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.consulting-modal.hidden {
    display: none;
}

.consulting-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(7px);
}

.consulting-modal-box {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    max-height: calc(100vh - 44px);
    overflow-y: auto;
    padding: 36px;
    border: 1px solid rgba(201, 154, 75, 0.45);
    background: #0d0d0d;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}

.consulting-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: #171717;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
}

.consulting-modal-close:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

.consulting-modal-heading {
    margin-bottom: 26px;
    padding-right: 55px;
}

.consulting-modal-heading span {
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.consulting-modal-heading h2 {
    margin: 8px 0;
    color: #ffffff;
    font-size: 30px;
}

.consulting-modal-heading p {
    margin: 0;
    color: #929292;
    font-size: 13px;
    line-height: 1.7;
}

.consulting-form-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.consulting-form-group {
    margin-bottom: 17px;
}

.consulting-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #b7b7b7;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.consulting-form-group input,
.consulting-form-group select,
.consulting-form-group textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    outline: none;
    background: #141414;
    color: #ffffff;
    font-family: inherit;
    font-size: 13px;
}

.consulting-form-group input,
.consulting-form-group select {
    min-height: 50px;
    padding: 0 14px;
}

.consulting-form-group textarea {
    min-height: 150px;
    padding: 14px;
    resize: vertical;
    line-height: 1.7;
}

.consulting-form-group input:focus,
.consulting-form-group select:focus,
.consulting-form-group textarea:focus {
    border-color: var(--gold);
    box-shadow:
        0 0 0 3px
        rgba(201, 154, 75, 0.1);
}

.consulting-form-message {
    min-height: 22px;
    margin: 0 0 14px;
    font-size: 12px;
}

.consulting-form-message.success {
    color: #68d99a;
}

.consulting-form-message.error {
    color: #ff7777;
}

.consulting-submit-button {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.consulting-submit-button:disabled {
    cursor: wait;
    opacity: 0.65;
}

@media (max-width: 650px) {
    .consulting-modal {
        padding: 12px;
    }

    .consulting-modal-box {
        padding: 28px 18px;
    }

    .consulting-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .consulting-modal-heading h2 {
        font-size: 24px;
    }
}.listing-contact-card .listing-contact-form-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .listing-contact-card {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .listing-contact-card .primary-button,
    .listing-contact-card .secondary-button,
    .listing-contact-card .listing-contact-form-button {
        width: 100%;
        display: flex;
    }
}@media (max-width: 768px) {
    .listing-contact-card .listing-contact-form-button {
        display: flex !important;
        width: 100%;
        min-height: 50px;
        align-items: center;
        justify-content: center;
        margin-bottom: 12px;
    }
}/* İLAN İLETİŞİM BUTONLARI */

.listing-contact-card .listing-contact-form-button {
    width: 100%;
    min-height: 50px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    margin-bottom: 0;
    border: 0;
    font-family: inherit;
    cursor: pointer;
}

@media (max-width: 900px) {
    .listing-contact-card {
        display: flex;
        flex-direction: column;
    }

    .listing-contact-card .listing-contact-form-button,
    .listing-contact-card .primary-button,
    .listing-contact-card .secondary-button,
    .listing-contact-card .listing-map-button {
        width: 100%;
        display: flex !important;
    }
}/* ÜCRETLER */

.pricing {
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(201, 154, 75, 0.08),
            transparent 35%
        ),
        #090909;
}

.pricing-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.pricing-card {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: #101010;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
}

.pricing-card.featured {
    border-color: rgba(201, 154, 75, 0.55);
    background:
        linear-gradient(
            145deg,
            rgba(201, 154, 75, 0.1),
            transparent
        ),
        #101010;
}

.pricing-label {
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.pricing-card h3 {
    margin-top: 12px;
    font-size: 24px;
}

.pricing-price {
    margin-top: 20px;
    color: var(--gold-light);
    font-size: 30px;
    font-weight: 700;
}

.pricing-card ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 25px 0;
    padding-left: 18px;
    color: #b8b8b8;
    font-size: 13px;
}

.pricing-card .primary-button,
.pricing-card .secondary-button,
.pricing-button {
    width: 100%;
    border: 1px solid var(--gold);
    font-family: inherit;
    cursor: pointer;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}/* =========================================================
   OFİS KONUMU / GOOGLE MAPS
========================================================= */

.company-map-section {
    grid-column: 1 / -1;
    margin-top: 32px;
    padding: 28px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.company-map-header {
    margin-bottom: 20px;
}

.company-map-header span {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9a7b32;
}

.company-map-header h3 {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.2;
    color: #111827;
}

.company-map-header p {
    margin: 0;
    max-width: 720px;
    color: #6b7280;
    line-height: 1.7;
}

.company-map-frame {
    overflow: hidden;
    border-radius: 18px;
    background: #f3f4f6;
}

.company-map-frame iframe {
    display: block;
    width: 100%;
    min-height: 380px;
    border: 0;
}

@media (max-width: 768px) {
    .company-map-section {
        margin-top: 24px;
        padding: 18px;
        border-radius: 18px;
    }

    .company-map-header h3 {
        font-size: 24px;
    }

    .company-map-frame iframe {
        min-height: 300px;
    }
}.company-map-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 14px 22px;
    border-radius: 12px;
    background: #111827;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.company-map-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}.company-map-section{
    grid-column:1 / -1;
    margin-top:40px;
    padding:35px;
    background:#0d0d0d;
    border:1px solid rgba(201,154,75,.25);
    border-radius:18px;
}

.company-map-header span{
    color:#c99a4b;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:12px;
    font-weight:700;
}

.company-map-header h3{
    color:#fff;
    margin:12px 0;
    font-size:34px;
}

.company-map-header p{
    color:#b5b5b5;
    margin-bottom:25px;
}

.company-map-frame{
    overflow:hidden;
    border-radius:16px;
    border:1px solid rgba(201,154,75,.25);
}

.company-map-frame iframe{
    width:100%;
    height:420px;
    display:block;
}

.company-map-button{
    display:inline-flex;
    margin-top:22px;
    padding:14px 24px;
    background:#c99a4b;
    color:#111;
    font-weight:700;
    border-radius:10px;
    transition:.25s;
}

.company-map-button:hover{
    transform:translateY(-3px);
}