:root {
    --color-bg: #ffffff;
    --color-text: #111111;
    --color-muted: #555555;
    --color-border: #e8e8e8;
    --color-soft: #f7f7f7;
    --font-main: "Montserrat", sans-serif;
    --header-h: 72px;
}

#danismanlik,
#dis-ticaret,
#teklif,
#faaliyetler,
#basvuru,
#is-birligi,
#kurumsal-talep {
    scroll-margin-top: calc(var(--header-h) + 12px);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background: var(--color-bg);
    font-weight: 500;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
    color: var(--color-text);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
    border-bottom-color: var(--color-border);
}

.navbar {
    min-height: var(--header-h);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    text-transform: lowercase;
    color: #000 !important;
}

.navbar-nav .nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666666 !important;
    padding: 0.35rem 0 !important;
    margin-left: 1.75rem;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #111;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #111 !important;
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
}

@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 0.65rem 0 !important;
    }
}

/* First screen: header + hero + faaliyet */
.home-fold {
    display: flex;
    flex-direction: column;
    min-height: calc(100dvh - var(--header-h));
    height: calc(100dvh - var(--header-h));
}

.hero {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    align-items: stretch;
    padding: 0.35rem 0 0;
}

.hero-frame {
    position: relative;
    height: 100%;
    display: flex;
}

.hero-frame::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 42%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.35) 40%,
        rgba(255, 255, 255, 0.85) 75%,
        #ffffff 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero-media {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    object-position: center;
}

.section-faaliyet {
    flex: 0 0 auto;
    padding: 1.75rem 0 2.25rem;
}

.section-faaliyet .section-title {
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    margin-bottom: 0.65rem;
}

.home-faaliyet-lead {
    margin-bottom: 1.5rem;
    max-width: 34rem;
    font-size: 0.95rem;
}

.home-fold .faaliyet-grid {
    row-gap: 1.25rem;
}

.home-fold .faaliyet-item {
    padding: 0.35rem 0.25rem;
}

.home-fold .faaliyet-item .icon-wrap {
    width: 48px;
    height: 48px;
    margin-bottom: 0.65rem;
}

.home-fold .faaliyet-item .icon-wrap svg {
    width: 42px;
    height: 42px;
}

/* Home content blocks */
.home-media-frame {
    overflow: hidden;
    background: #eee;
}

.home-media-frame img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.home-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-check-list li {
    position: relative;
    padding: 0.7rem 0 0.7rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
    font-weight: 500;
    font-size: 0.95rem;
}

.home-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.05rem;
    width: 6px;
    height: 6px;
    background: #111;
    border-radius: 50%;
}

.home-service-grid {
    border-top: 1px solid var(--color-border);
}

.home-service-item {
    display: block;
    padding: 1.35rem 1rem 1.35rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.home-service-item:hover {
    opacity: 0.65;
}

.home-consult {
    background: #fff;
    color: #111;
}

.home-consult .section-title {
    color: #111;
}

.home-consult .section-lead {
    color: var(--color-muted);
}

.home-consult-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.home-consult-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 0.75rem;
}

.home-consult .btn-dark-custom {
    background: #111;
    border-color: #111;
    color: #fff !important;
}

.home-consult .btn-dark-custom:hover {
    background: #000;
    border-color: #000;
    color: #fff !important;
}

.consult-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 240px;
    padding: 1.75rem;
    background: #fff;
    border: 1px solid var(--color-border);
    color: #111;
}

.consult-card:hover {
    border-color: #111;
}

.consult-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.35rem;
    border: 1px solid #111;
    font-size: 1.25rem;
    color: #111;
}

.consult-body {
    flex-grow: 1;
}

.consult-num {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--color-muted);
    margin-bottom: 0.65rem;
}

.consult-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 0.7rem;
    line-height: 1.35;
    color: #111;
}

.consult-card p {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-muted);
    line-height: 1.55;
    margin-bottom: 0;
}

@media (max-width: 575.98px) {
    .home-consult-head {
        align-items: flex-start;
    }

    .consult-card {
        min-height: 0;
    }
}

.home-whatsapp-box {
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.home-whatsapp-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.home-whatsapp-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-muted);
    margin-bottom: 1.15rem;
}

@media (max-width: 767.98px) {
    .home-fold {
        height: auto;
        min-height: calc(100dvh - var(--header-h));
    }

    .hero {
        flex: 0 0 auto;
        height: clamp(220px, 42vh, 360px);
    }

    .section-faaliyet {
        padding: 1.5rem 0 2rem;
    }

    .section-faaliyet .section-title {
        margin-bottom: 0.5rem;
    }

    .home-faaliyet-lead {
        margin-bottom: 1.15rem;
    }
}

/* Sections */
.section {
    padding: 4.5rem 0;
}

.section-soft {
    background: var(--color-soft);
}

.section-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
    color: #000;
}

.section-lead {
    color: var(--color-muted);
    font-weight: 500;
    font-size: 1rem;
    max-width: 42rem;
    margin-bottom: 2rem;
}

/* Faaliyet Alanları */
.faaliyet-grid {
    row-gap: 2.5rem;
}

.faaliyet-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0.5rem;
    color: #111;
}

.faaliyet-item:hover {
    opacity: 0.7;
}

.faaliyet-item .icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.faaliyet-item .icon-wrap svg {
    width: 48px;
    height: 48px;
    stroke: #111;
    fill: none;
    stroke-width: 1.4;
}

.faaliyet-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

/* Listing / portfolio */
.listing-item {
    display: block;
    margin-bottom: 2rem;
}

.listing-item:hover .listing-img {
    transform: scale(1.02);
}

.listing-img-wrap {
    overflow: hidden;
    margin-bottom: 1rem;
    background: #eee;
}

.listing-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.listing-meta {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.35rem;
}

.listing-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.listing-info {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-muted);
    margin-bottom: 0;
}

.listing-price {
    margin-top: 0.4rem;
    margin-bottom: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #111;
}

.gm-cat-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1.75rem;
}

.gm-cat-chip {
    appearance: none;
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--color-border);
    padding: 0.65rem 1rem;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.gm-cat-chip:hover,
.gm-cat-chip.active {
    border-color: #111;
    background: #111;
    color: #fff;
}

a.gm-cat-chip:hover {
    color: #fff;
}


.gm-filter-nav .gm-filter.active {
    color: #111;
}


/* Category pills as text links */
.category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-border);
}

.category-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-muted);
}

.category-nav a:hover,
.category-nav a.active {
    color: #111;
}

/* Page hero / inner */
.page-intro {
    padding: 2.5rem 0 1rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-muted);
    margin-bottom: 1.5rem;
}

.back-link:hover {
    color: #111;
}

.page-intro h1 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

/* Detail */
.detail-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.detail-gallery .main-shot {
    grid-column: 1 / -1;
}

.detail-gallery img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.detail-gallery .main-shot img {
    aspect-ratio: 16 / 9;
}


.detail-meta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.detail-meta-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
    font-weight: 500;
}

.detail-meta-list li span:first-child {
    color: var(--color-muted);
}

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

.feature-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    background: #111;
    border-radius: 50%;
}

/* Forms */
.form-control,
.form-select {
    border-radius: 0;
    border-color: var(--color-border);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: none !important;
}

.form-control:focus,
.form-select:focus {
    border-color: #111;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.btn-dark-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #111;
    color: #fff !important;
    border: 1px solid #111;
    border-radius: 0;
    padding: 0.85rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-dark-custom:hover {
    background: #000;
    color: #fff !important;
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: #111 !important;
    border: 1px solid #111;
    border-radius: 0;
    padding: 0.85rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline-custom:hover {
    background: #111;
    color: #fff !important;
}

.btn-whatsapp {
    background: #25d366;
    border-color: #25d366;
    color: #fff !important;
}

.btn-whatsapp:hover {
    background: #1ebe57;
    border-color: #1ebe57;
    color: #fff !important;
}

/* Service list blocks */
.service-block {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.service-block:last-child {
    border-bottom: 0;
}

.service-block h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-block p {
    color: var(--color-muted);
    margin-bottom: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

/* About page */
.about-hero {
    padding: 3rem 0 1.5rem;
}

.about-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: lowercase;
    color: var(--color-muted);
    margin-bottom: 1rem;
}

.about-hero h1 {
    font-size: clamp(1.85rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.about-hero-lead {
    max-width: 36rem;
}

.trade-visual {
    padding-bottom: 0.5rem;
}

.trade-visual .about-visual-frame img {
    aspect-ratio: 21 / 9;
    min-height: 240px;
    max-height: 420px;
}

.about-visual {
    padding-bottom: 0.5rem;
}

.metals-notice {
    border: 1px solid var(--color-border);
    padding: 1.75rem 1.5rem;
    background: #fff;
}

.metals-deny-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.metals-deny-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--color-border);
    font-weight: 500;
    font-size: 0.95rem;
}

.metals-deny-list li:last-child {
    border-bottom: 0;
}

.metals-deny-list i {
    color: #111;
    font-size: 0.85rem;
}


.about-visual-frame {
    position: relative;
    overflow: hidden;
    background: #eee;
}

.about-visual-frame img {
    width: 100%;
    aspect-ratio: 21 / 9;
    min-height: 260px;
    max-height: 480px;
    object-fit: cover;
}

.about-visual-frame::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 35%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.55) 55%,
        #ffffff 100%
    );
    pointer-events: none;
}

.about-story {
    padding-top: 2.5rem;
}

.about-story-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.about-fields {
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.about-fields-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 1.25rem;
}

.about-field-link {
    display: block;
    padding: 1rem 0.75rem 1rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: opacity 0.2s ease;
}

.about-field-link span {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-muted);
    margin-bottom: 0.35rem;
}

.about-field-link:hover {
    opacity: 0.65;
}

.about-mv {
    background: #111;
    color: #fff;
}

.about-mv-block {
    padding: 3.5rem 2rem 3.5rem 0;
}

.about-mv-block-alt {
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.about-mv-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1rem;
}

.about-mv-block h2 {
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.about-mv-block p {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0;
    max-width: 28rem;
}

.about-value {
    padding-top: 1.25rem;
    border-top: 1px solid #111;
    height: 100%;
}

.about-value-num {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-muted);
    margin-bottom: 1rem;
}

.about-value h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.65rem;
}

.about-value p {
    color: var(--color-muted);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0;
}

.about-team-note {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-muted);
}

.about-team-photo {
    overflow: hidden;
    margin-bottom: 1rem;
    background: #eee;
}

.about-team-photo img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.about-team:hover .about-team-photo img {
    transform: scale(1.04);
}

.team-name {
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.team-role {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-muted);
}

.about-cta {
    padding: 4rem 0;
    border-top: 1px solid var(--color-border);
}

.about-cta-title {
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.65rem;
}

.about-cta-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-muted);
    max-width: 28rem;
}

@media (max-width: 767.98px) {
    .about-hero {
        padding-top: 2rem;
    }

    .about-hero h1 br {
        display: none;
    }

    .about-visual-frame img {
        aspect-ratio: 4 / 3;
        max-height: none;
    }

    .about-mv-block,
    .about-mv-block-alt {
        padding: 2.5rem 0;
    }

    .about-mv-block-alt {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        padding-top: 2.5rem;
    }

    .about-field-link {
        padding-right: 0.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-team-photo img {
        transition: none;
    }
}

/* Map */
.map-embed {
    width: 100%;
    height: 360px;
    border: 0;
}

/* Contact info */
.contact-list {
    border-top: 1px solid var(--color-border);
}

.contact-line {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-line strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.contact-line a,
.contact-line span {
    color: var(--color-muted);
}

.contact-line a:hover {
    color: #111;
}

.contact-line i {
    flex-shrink: 0;
    width: 1.25rem;
    margin-top: 0.2rem;
    font-size: 1.1rem;
    color: #111;
}

.contact-actions {
    margin-top: 1.75rem;
}

/* Status badge */
.status-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 0.5rem;
}

/* Notice box for kıymetli madenler */
.notice-plain {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 1.25rem 0;
    color: var(--color-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Footer */
.site-footer {
    background: #111;
    color: #cfcfcf;
    padding: 4rem 0 0;
    margin-top: 2rem;
}

.footer-brand {
    font-size: 1.35rem;
    font-weight: 700;
    text-transform: lowercase;
    color: #fff !important;
}

.footer-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #b0b0b0;
    max-width: 16rem;
}

.footer-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #b0b0b0;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.55rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #fff;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #999;
    margin-right: 0.35rem;
    font-size: 1.1rem;
}

.footer-social a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.25rem 0;
    border-top: 1px solid #2a2a2a;
    font-size: 0.8rem;
    color: #777;
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    z-index: 1040;
    transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    background: #1ebe57;
    color: #fff !important;
}

/* Utilities */
.text-muted-custom {
    color: var(--color-muted) !important;
    font-weight: 500;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 575.98px) {
    .section {
        padding: 3.25rem 0;
    }

    .faaliyet-item .icon-wrap {
        width: 48px;
        height: 48px;
        margin-bottom: 0.75rem;
    }

    .faaliyet-item .icon-wrap svg {
        width: 40px;
        height: 40px;
    }

    .faaliyet-item span {
        font-size: 0.85rem;
    }

    .whatsapp-float {
        right: 1rem;
        bottom: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.45rem;
    }

    .page-intro {
        padding-top: 1.75rem;
    }

    .detail-gallery {
        gap: 0.5rem;
    }

    .map-embed {
        height: 280px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .listing-img {
        transition: none;
    }
}
