/* Aileena tarzı fontlar */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700&family=Montserrat:wght@300;400;500;600;700&display=swap');

body.site-body {
    font-family: "Montserrat", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    color: #222;
    background-color: #FCF8F8;
    font-weight: 400;
}

.site-header {
    position: relative;
    z-index: 1000;
    transition: box-shadow 0.35s ease, background-color 0.35s ease;
}

.site-header.sticky-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

/* Sayfa açılış yükleme efekti (Aileena "Yükleniyor..." ) */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #896C6C;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader-text {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: #c89a5b;
    text-transform: uppercase;
    margin-top: 1rem;
}

.page-loader-spinner {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(200, 154, 91, 0.3);
    border-top-color: #c89a5b;
    border-radius: 50%;
    animation: loader-spin 0.9s linear infinite;
}

@keyframes loader-spin {
    to { transform: rotate(360deg); }
}

.top-bar {
    background-color: #E5BEB5;
    color: #fff;
    font-size: 0.9rem;
    padding: 6px 0;
}

.top-bar-left span + span {
    margin-left: 16px;
}

.top-bar i {
    margin-right: 4px;
}

.top-email-link {
    display: inline-block;
    margin-left: 16px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
}

.top-email-link:hover {
    color: #E5BEB5;
}

.social-link {
    display: inline-block;
    color: #fff;
    font-size: 1rem;
    margin-left: 10px;
    text-decoration: none;
}

    .social-link:hover {
        color: #896C6C;
    }

.main-navbar {
    position: relative;
    background: radial-gradient(circle at top left, #18212f 0, #060a12 60%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(184, 115, 51, 0.6);
}

.main-navbar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -40px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(6, 10, 18, 0.78), rgba(6, 10, 18, 0.0));
    pointer-events: none;
}

.main-navbar .navbar-brand {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #f9f4ea;
    font-size: 1.1rem;
}

.main-navbar .navbar-brand:hover {
    color: #f9e4c8;
}

.main-navbar .navbar-nav .nav-item {
    margin: 0 0.2rem;
}

.main-navbar .nav-link {
    position: relative;
    font-family: "Montserrat", sans-serif;
    color: #f5f5f5;
    font-weight: 500;
    padding: 1rem 1.1rem 0.85rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
}

.main-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 0.35rem;
    height: 2px;
    background-color: #b87333;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link:focus,
.main-navbar .nav-link.active {
    color: #f9e4c8;
}

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

.main-navbar .nav-item-cta .nav-link {
    border: 1px solid #f4d594;
    border-radius: 999px;
    padding-inline: 1.6rem;
    margin-left: 0.8rem;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4), 0 8px 22px rgba(0, 0, 0, 0.55);
}

.main-navbar .nav-item-cta .nav-link::after {
    display: none;
}

.main-navbar .nav-item-cta .nav-link:hover,
.main-navbar .nav-item-cta .nav-link:focus,
.main-navbar .nav-item-cta .nav-link.active {
    background: radial-gradient(circle at 30% 30%, #ffe8b8 0, #e7b763 45%, #d89b34 100%);
    color: #1b1308;
}

.main-navbar .dropdown-menu.main-dropdown {
    background-color: #070f2a;
    border-radius: 0;
    border: 1px solid rgba(244, 213, 148, 0.3);
    min-width: 210px;
    padding: 0.5rem 0;
}

.main-navbar .dropdown-menu.main-dropdown .dropdown-item {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #f5f5f5;
    padding: 0.45rem 1.1rem;
}

.main-navbar .dropdown-menu.main-dropdown .dropdown-item:hover,
.main-navbar .dropdown-menu.main-dropdown .dropdown-item:focus {
    background-color: rgba(244, 213, 148, 0.12);
    color: #f9e4c8;
}

/* HERO / SLIDER (Bootstrap carousel uyumlu) */
.hero-slider {
    position: relative;
    min-height: 70vh;
    color: #fff;
    overflow: hidden;
}

.hero-slider .carousel-inner {
    min-height: 70vh;
}

.hero-slide {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.80);
    z-index: -2;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
    z-index: -1;
}

.hero-content {
    max-width: 620px;
    padding: 4rem 2rem;
}

.hero-title {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.carousel-item .hero-content {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.carousel-item.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.btn-gold {
    background-color: #E5BEB5;
    color: #000;
    border-radius: 999px;
    padding: 0.7rem 1.7rem;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

    .btn-gold:hover {
        background-color: #896C6C;
        color: #000;
    }

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    margin: 0 4px;
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators .active {
    background-color: #F9DFDF;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.7));
}

/* GENEL BÖLÜM STİLİ */
.section {
    padding: 4rem 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title h2 {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    font-weight: 500;
    color: #9a8f7e;
}

.section-title h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    margin-top: 0.5rem;
    color: #1a1a1a;
    letter-spacing: 0.02em;
}

/* ANASAYFA - SIZE ÖZEL HİZMETLERİMİZ BLOĞU */
.section-home-services {
    background-image: url("images/indir.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-home-services .container {
    max-width: 1100px;
    text-align: center;
}

.section-home-services .section-title h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #a18f7b;
}

.section-home-services .section-title h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2.6rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #26221e;
    margin-top: 0.75rem;
    margin-bottom: 2.5rem;
}

.section-home-services .row {
    text-align: left;
}

.section-home-services .card-service {
    background: transparent;
    box-shadow: none;
}

.section-home-services .card-service-body {
    padding: 0 2.5rem 1.9rem;
}

.section-home-services h5 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2a2622;
    margin-bottom: 0.4rem;
}

.section-home-services p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #746a61;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .section-home-services .card-service-body {
        padding-inline: 1.25rem;
    }
}

/* KARTLAR */
.card-room,
.card-service,
.card-destination,
.card-testimonial {
    border: none;
    border-radius: 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background-color: #fff;
}

.card-room:hover,
.card-service:hover,
.card-destination:hover,
.card-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.card-room img,
.card-destination img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-room-body,
.card-service-body,
.card-destination-body {
    padding: 1.5rem;
}

.badge-room {
    display: inline-block;
    background-color: #FBEFEF;
    color: #8a672e;
    font-size: 0.75rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

/* HİZMETLERİMİZ KARTLARI (referans tasarıma benzer) */
.service-card {
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: none;
    background-color: #ffffff;
}

.service-card-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.service-card-body {
    padding: 1.8rem 1.6rem 2rem;
}

.service-badge {
    display: inline-block;
    background-color: #f3ddd2;
    color: #7a5c4a;
    padding: 0.25rem 0.9rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.service-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

.service-link {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #2563eb;
    text-decoration: none;
}

.service-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* MİSAFİR YORUMLARI */
.card-testimonial .card-body {
    padding: 1.7rem;
}

.card-testimonial p.mb-3 {
    font-style: italic;
    line-height: 1.6;
}

.referans-photo-wrap .referans-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.referans-rating {
    color: #c89a5b;
    font-size: 1rem;
}

/* DOĞAYI KEŞFET - Aileena tarzı kartlar */
.section-dogayi-kesfet {
    position: relative;
    background-color: #f5f1eb;
    /* Site.css -> /Content/Site.css, görsel -> /Content/images/background1.png */
    background-image: url("images/background1.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

.section-dogayi-kesfet .container {
    max-width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
}

.dogayi-kesfet-row {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    gap: 1.5rem;
    padding-bottom: 1rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.dogayi-kesfet-row::-webkit-scrollbar {
    display: none;
}

.dogayi-kesfet-row {
    scrollbar-width: none;
}

.dogayi-card {
    position: relative;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.96), #fbf7f3);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 360px;
    max-width: 420px;
}

.dogayi-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(251, 247, 243, 0) 0, rgba(251, 247, 243, 0.75) 40%, rgba(251, 247, 243, 1) 100%);
    pointer-events: none;
}

.dogayi-card-image {
    height: 190px;
    overflow: hidden;
}

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

.dogayi-card-body {
    position: relative;
    z-index: 1;
    padding: 1.6rem 1.6rem 2rem;
    text-align: center;
}

.dogayi-card-title {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.6rem;
}

.dogayi-card-text {
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.dogayi-card-body::after {
    content: "";
    display: block;
    width: 34px;
    height: 1px;
    margin: 1.5rem auto 0;
    background: linear-gradient(to right, transparent, #c9b59c, transparent);
    opacity: 0.7;
}

.section-dogayi-kesfet .section-title-organizasyon {
    margin-bottom: 3.2rem;
}

.section-dogayi-kesfet .section-title-organizasyon h3 {
    font-size: 2.4rem;
}

.section-dogayi-kesfet .section-title-organizasyon::after {
    content: "";
    display: block;
    width: 120px;
    height: 1px;
    margin: 1.5rem auto 0;
    background: linear-gradient(to right, transparent, #c9b59c, transparent);
}

@media (max-width: 991.98px) {
    .dogayi-card-image {
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .dogayi-card-image {
        height: 190px;
    }
}

/* FOOTER */
.site-footer {
    background: radial-gradient(circle at top left, #18212f 0, #060a12 60%);
    color: #e5e7eb;
    margin-top: 0;
}

.site-footer .footer-main {
    padding: 2.5rem 0 2rem;
    border-top: 2px solid #b87333;
}

.footer-brand-col {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-mark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.4rem;
    color: #d29a63;
}

.footer-brand-text h5 {
    color: #f9fafb;
    margin-bottom: 0.35rem;
}

.footer-brand-text p {
    color: #e5e7eb;
}

.site-footer .footer-col h6 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 0.9rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #d29a63;
    margin-bottom: 0.75rem;
}

.site-footer .footer-col a {
    display: block;
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.site-footer .footer-col a:hover {
    color: #f9e4c8;
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    padding-top: 0.75rem;
    font-size: 0.8rem;
    color: #9ca3af;
}

/* ========== ORGANİZASYON / HİZMETLER SAYFASI (Aileena tarzı) ========== */
.page-organizasyon {
    font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
    background-color: #f8f6f2;
    color: #2c2c2c;
}

.section-organizasyon .section-title-organizasyon h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #9a8f7e;
    margin-bottom: 0.5rem;
}

.section-organizasyon .section-title-organizasyon h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.02em;
}

.card-organizasyon {
    border: none;
    border-radius: 0;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    overflow: hidden;
}

.card-organizasyon:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.card-organizasyon .card-img-wrap {
    overflow: hidden;
}

.card-organizasyon .card-img-top {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card-organizasyon:hover .card-img-top {
    transform: scale(1.03);
}

.portfolio-img-wrap {
    position: relative;
}

.portfolio-brand-tag {
    position: absolute;
    right: 12px;
    bottom: 10px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.45);
    color: #F9DFDF;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Portfolyo lightbox */
.portfolio-lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1050;
}

.portfolio-lightbox-overlay.show {
    display: flex;
}

.portfolio-lightbox-inner {
    max-width: 90vw;
    max-height: 90vh;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.85);
    border-radius: 8px;
    overflow: hidden;
}

.portfolio-lightbox-inner img {
    display: block;
    max-width: 100%;
    max-height: 90vh;
}

.portfolio-lightbox-close,
.portfolio-lightbox-prev,
.portfolio-lightbox-next {
    position: absolute;
    background: rgba(15, 23, 42, 0.75);
    color: #e5e7eb;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.portfolio-lightbox-close {
    top: 24px;
    right: 28px;
    font-size: 1.6rem;
}

.portfolio-lightbox-prev {
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.portfolio-lightbox-next {
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.portfolio-lightbox-close:hover,
.portfolio-lightbox-prev:hover,
.portfolio-lightbox-next:hover {
    background: rgba(15, 23, 42, 0.95);
    transform: translateY(-50%) scale(1.05);
}

.portfolio-lightbox-close:hover {
    transform: scale(1.05);
}

.card-organizasyon-body {
    padding: 1.75rem 1.5rem;
}

.card-organizasyon-title {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
}

.card-organizasyon-text {
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #555;
    margin-bottom: 1rem;
}

.link-daha-fazlasi {
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #b8860b;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.link-daha-fazlasi:hover {
    color: #8a6708;
    border-bottom-color: #b8860b;
}

/* Organizasyon detay sayfası */
.section-organizasyon-detail .detail-organizasyon-title {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-organizasyon-detail .detail-organizasyon-lead {
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.section-organizasyon-detail .detail-organizasyon-body {
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: #444;
}

.detail-organizasyon-img {
    border-radius: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* İLETİŞİM SAYFASI */
.section-contact {
    background-color: #f8f6f2;
}

.contact-card {
    border: none;
    border-radius: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact-card-title {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-info-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.contact-icon {
    width: 26px;
    flex-shrink: 0;
    color: #E5BEB5;
    font-size: 1.1rem;
}

.contact-text {
    font-size: 0.95rem;
    color: #444;
}

.contact-text a {
    color: #896C6C;
    text-decoration: none;
}

.contact-text a:hover {
    color: #E5BEB5;
}

.contact-lead {
    font-size: 0.95rem;
    color: #555;
}

/* Planlama süreci akışı */
.process-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1.5rem;
}

.process-step-item {
    flex: 1;
    min-width: 180px;
    max-width: 280px;
    padding: 1.5rem;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
}

.process-step-num {
    width: 36px;
    height: 36px;
    background: #c89a5b;
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.process-step-img-wrap {
    margin-bottom: 0.75rem;
}

.process-step-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.process-step-title {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.process-step-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 0;
}

.process-arrow {
    position: absolute;
    right: -1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #c89a5b;
    font-size: 1.5rem;
    z-index: 1;
}

.process-step-item:last-child .process-arrow {
    display: none;
}

.process-step-item:last-child {
    flex-basis: 100%;
    max-width: 100%;
    text-align: center;
}

.process-step-item:last-child .process-step-title {
    font-size: 1.5rem;
}

@media (max-width: 767.98px) {
    .process-flow {
        flex-direction: column;
    }
    .process-step-item {
        max-width: 100%;
    }
    .process-arrow {
        right: auto;
        bottom: -1rem;
        top: auto;
        transform: rotate(90deg);
    }
}

/* GENEL BODY CONTENT */
.body-content {
    margin-top: 0;
}

/* MOBİL DUYARLILIK */
@media (max-width: 767.98px) {
    .hero-content {
        padding: 3rem 1.5rem;
    }

    .hero-title {
        font-size: 2.1rem;
    }
}
