:root {
    --color-primary: #ff3b2f;
    --color-primary-hover: #e63228;
    --color-dark: #0f1a44;
    --color-turquoise: #18b6b2;
    --color-bg: #f4f7fb;
    --color-surface: #ffffff;
    --color-text: #1a1a1a;
    --color-text-soft: #5b6475;
    --color-border: #e7ebf3;

    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-sm: 0 8px 24px rgba(15, 26, 68, 0.06);
    --shadow-md: 0 18px 50px rgba(15, 26, 68, 0.10);

    --container-width: 1480px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding-top: 72px;
    font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-weight: 800;
}

h2,
h3 {
    font-weight: 700;
}

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

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition:
        background-color 0.25s ease,
        backdrop-filter 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.72);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 28px rgba(15, 26, 68, 0.08);
}

.site-header__inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 0 0 auto;
}

.brand__icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-dark), #16327c);
    display: grid;
    place-items: center;
    color: #fff;
    flex-shrink: 0;
}

.brand img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.brand-logo {
    height: 60px;
    max-height: 70px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    display: none;
}

.brand__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.1;
}

.brand__subtitle {
    font-size: 12px;
    color: var(--color-text-soft);
    line-height: 1.2;
}

.site-nav {
    display: none;
    gap: 28px;
    font-weight: 500;
}

.site-nav a {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-dark);
    padding: 8px 2px;
    transition: color 0.2s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 2px;
    width: 0%;
    background: var(--color-primary);
    transition: width 0.25s ease;
    border-radius: 999px;
}

.site-nav a:hover {
    color: var(--color-primary);
}

.site-nav a:hover::after {
    width: 100%;
    opacity: 0.4;
}

.site-nav a.is-active {
    color: var(--color-primary);
}

.site-nav a.is-active::after {
    width: 100%;
    opacity: 1;
}

/* BUTTONS */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease;
}

.button--primary {
    background: linear-gradient(135deg, var(--color-primary), #ff6a3d);
    color: #fff;
    box-shadow: 0 8px 18px rgba(255, 59, 47, 0.14);
}

.button--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(255, 59, 47, 0.18);
}

.button--secondary {
    background: #fff;
    color: var(--color-dark);
    border-color: var(--color-border);
}

.button--secondary:hover {
    border-color: rgba(255, 59, 47, 0.35);
    color: var(--color-primary);
}

.button--disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.button--secondary-light {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.button--secondary-light:hover {
    background: rgba(255, 255, 255, 0.20);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.32);
}

.header-cta {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-primary), #ff6a3d);
    color: #fff !important;
    box-shadow: 0 10px 22px rgba(255, 59, 47, 0.16);
    font-weight: 700;
}

.header-cta:hover {
    transform: translateY(-1px);
}

/* HERO */
.hero {
    padding: 28px 0 24px;
}

.hero__box {
    background:
        radial-gradient(circle at top right, rgba(24, 182, 178, 0.10), transparent 24%),
        linear-gradient(180deg, #ffffff, #f8fbff);
    border-radius: 24px;
    padding: 34px 22px;
    box-shadow: 0 14px 34px rgba(15, 26, 68, 0.08);
}

.hero__eyebrow {
    display: inline-flex;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(24, 182, 178, 0.10);
    color: var(--color-dark);
    font-size: 12px;
    font-weight: 700;
    align-items: center;
    letter-spacing: -0.01em;
}

.hero__title {
    margin: 14px 0 10px;
    max-width: 760px;
    font-size: 40px;
    line-height: 1.04;
    color: var(--color-dark);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero__description {
    margin: 0;
    max-width: 680px;
    color: var(--color-text-soft);
    font-size: 15px;
    line-height: 1.7;
}

.hero__actions {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero h1 {
    letter-spacing: -0.02em;
}

.hero-gradient {
    background: linear-gradient(135deg, #ff3b2f, #ff7a18);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* HERO COVER */
.hero.hero--cover {
    position: relative;
    padding: 10px 0;
}

.hero__box--cover {
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    background-image:
        linear-gradient(180deg, rgba(8, 16, 40, 0.40), rgba(8, 16, 40, 0.26)),
        url("/static/media/fethiye-yamac-parasutu.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-radius: 12px;
    overflow: hidden;
    padding: 56px 28px 42px;
    box-shadow: 0 18px 40px rgba(15, 26, 68, 0.12);
}

.hero__box--cover::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 16, 40, 0.35),
        rgba(8, 16, 40, 0.25)
    );
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}

.hero__box--cover > * {
    position: relative;
    z-index: 2;
}

.hero__main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__box--cover .hero__eyebrow {
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 700;
}

.hero__box--cover .hero__title {
    max-width: 920px;
    margin: 18px auto 12px;
    color: #fff;
    font-size: 62px;
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.hero__box--cover .hero__description {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
    font-size: 20px;
    line-height: 1.6;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.hero__box--cover .hero__actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.hero__box--cover .button--primary {
    box-shadow: 0 10px 22px rgba(255, 90, 54, 0.24);
}

.hero__glass {
    background: rgba(10, 18, 38, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 28px 36px;
    border-radius: 18px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* HERO RATING */
.hero-rating {
    margin-top: 14px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 26, 68, 0.08);
    box-shadow: 0 10px 24px rgba(15, 26, 68, 0.10);
    transition: all 0.25s ease;
}

.hero-rating:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(15, 26, 68, 0.14);
}

.hero-rating__stars {
    color: #f4b400;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.03em;
}

.hero-rating__stars span {
    color: var(--color-dark);
    margin-left: 6px;
    letter-spacing: -0.01em;
}

.hero-rating__text {
    color: var(--color-text-soft);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

.hero-micro-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.hero-micro-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;

    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.18);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.icon-dot {
    width: 10px;
    height: 10px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.9);
}

.icon-lightning {
    color: #ffd24d;
    font-size: 14px;
}

.icon-shield {
    color: #8fd3ff;
    font-size: 14px;
}

/* GENERIC SECTIONS */
.section {
    padding: 28px 0;
}

.section__header {
    margin-bottom: 18px;
}

.section__eyebrow {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-turquoise);
}

.section__title {
    margin: 8px 0 0;
    color: var(--color-dark);
    font-size: 28px;
    line-height: 1.2;
}

.section__intro {
    margin: 10px 0 0;
    max-width: 760px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-soft);
}

/* FEATURE GRID */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.feature-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 18px;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.12),
        0 6px 14px rgba(0, 0, 0, 0.08);
}

/* SOFT FEATURE CARDS */
.feature-grid--soft {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.feature-card--soft {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(231, 235, 243, 0.95);
    box-shadow: 0 10px 24px rgba(15, 26, 68, 0.05);
    overflow: hidden;
}

.feature-card__icon-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card__icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f7f9fd, #edf3fb);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    color: #7ea8ef;
    overflow: hidden;
    flex-shrink: 0;
}

.feature-card__icon svg {
    width: 80%;
    height: 80%;
    display: block;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    vector-effect: non-scaling-stroke;
}

.feature-card__body {
    min-width: 0;
    flex: 1;
}

.feature-card--soft h3 {
    margin: 0 0 4px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-dark);
}

.feature-card--soft p {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--color-text-soft);
}

.feature-card--soft:nth-child(1) .feature-card__icon {
    color: #7ea8ef;
}

.feature-card--soft:nth-child(2) .feature-card__icon {
    color: #7ad7a7;
}

.feature-card--soft:nth-child(3) .feature-card__icon {
    color: #e7bf55;
}

.feature-card--soft:nth-child(4) .feature-card__icon {
    color: #9a98ef;
}

/* OFFER CARD */
.offer-card {
    background: linear-gradient(135deg, var(--color-dark), #16327c);
    color: #fff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-md);
}

.offer-card__badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 12px;
    font-weight: 700;
}

/* FOOTER */
.site-footer {
    margin-top: 44px;
    padding: 28px 0 40px;
    border-top: 1px solid var(--color-border);
}

.site-footer p {
    margin: 0;
    color: var(--color-text-soft);
    font-size: 14px;
}

/* ACTIVITY LAYOUT */
.activity-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.activity-main,
.booking-sidebar {
    min-width: 0;
}

/* BOOKING CARD */
.booking-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 20px;
    box-shadow: var(--shadow-md);
}

.booking-card--sticky {
    position: sticky;
    top: 96px;
}

.price-box {
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--color-border);
}

.price-box__label {
    font-size: 13px;
    color: var(--color-text-soft);
    margin-bottom: 6px;
}

.price-box__value {
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
    color: var(--color-primary);
}

.price-box__currency {
    font-size: 18px;
    color: var(--color-dark);
    font-weight: 700;
}

/* INFO CARDS */
.info-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.info-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.info-item__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(24, 182, 178, 0.10);
    color: var(--color-dark);
    flex-shrink: 0;
}

.info-item__title {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
}

.info-item__text {
    margin: 0;
    color: var(--color-text-soft);
    font-size: 14px;
}

.section-stack {
    display: grid;
    gap: 20px;
}

.rich-content-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.rich-content-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--color-dark);
}

/* FORM */
.form-control {
    width: 100%;
    min-height: 46px;
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    font: inherit;
    background: #fff;
    color: var(--color-dark);
    outline: none;
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 59, 47, 0.08);
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
}

.form-group-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-errors {
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 59, 47, 0.08);
    color: #b42318;
    font-size: 14px;
}

.field-error {
    margin-top: 8px;
    color: #b42318;
    font-size: 13px;
}

.booking-divider {
    margin: 20px 0;
    border-top: 1px solid var(--color-border);
}

.booking-note {
    padding: 14px;
    border-radius: 14px;
    background: rgba(24, 182, 178, 0.08);
    color: var(--color-dark);
    font-size: 14px;
}

/* BOOKING SUMMARY */
.booking-summary {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--color-border);
}

.booking-summary__row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
    color: var(--color-text-soft);
}

.booking-summary__total {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-dark);
}

/* DATE PILLS */
.date-pill-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.date-pill {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: #fff;
    transition: 0.2s ease;
}

.date-pill:hover {
    border-color: var(--color-primary);
    transform: translateY(-1px);
}

.date-pill--active {
    border-color: var(--color-primary);
    background: rgba(255, 59, 47, 0.06);
}

.date-pill--empty {
    opacity: 0.7;
}

.date-pill__day {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-dark);
}

.date-pill__month {
    font-size: 12px;
    color: var(--color-text-soft);
}


/* SAAT KARTLARI - DAHA KİBAR GÖRÜNÜM */
.slot-select-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:10px;
}

.slot-select-card{
    position:relative;
    min-height:48px;
    padding:0 12px;
    border:1px solid #d9dee8;
    border-radius:12px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:
        border-color .20s ease,
        background-color .20s ease,
        box-shadow .20s ease,
        transform .20s ease;
    color:#1f2940;
    font-weight:600;
    box-shadow:none;
}

.slot-select-card input{
    position:absolute;
    inset:0;
    opacity:0;
    cursor:pointer;
    margin:0;
}

.slot-select-card__text{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    width:100%;
    min-height:48px;
    font-size:14px;
    font-weight:700;
    color:#1f2940;
    pointer-events:none;
}

.slot-select-card__text::before{
    content:"◔";
    font-size:14px;
    line-height:1;
    color:#6d7890;
    transform:translateY(-1px);
}

.slot-select-card:hover{
    border-color:#bfc7d8;
    background:#fafbfd;
    transform:translateY(-1px);
}

.slot-select-card:has(input:checked){
    border-color:#ff6b2c;
    background:#fff2ec;
    color:#ff6b2c;
    box-shadow:0 0 0 3px rgba(255,107,44,.15);
}

.slot-select-card:has(input:checked) .slot-select-card__text{
    color:#ff6b2c;
}

.slot-select-card:has(input:checked) .slot-select-card__text::before{
    color:#ff6b2c;
}

.slot-select-card--empty{
    min-height:48px;
    border:1px dashed #d9dee8;
    border-radius:12px;
    background:#fafbfd;
    color:#7a8498;
    font-size:13px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 12px;
}

@media (max-width: 767px){
    .slot-select-grid{
        grid-template-columns:repeat(2, 1fr);
        gap:8px;
    }

    .slot-select-card,
    .slot-select-card__text,
    .slot-select-card--empty{
        min-height:46px;
    }
}

/* EXTRAS */
.extras-list {
    display: grid;
    gap: 10px;
}

.extra-option {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    padding: 8px 10px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: 0.2s ease;
}

.extra-option:hover {
    border-color: var(--color-primary);
}

.extra-option__main {
    font-weight: 600;
    color: var(--color-dark);
}

.extra-option__price {
    color: var(--color-primary);
    font-weight: 700;
}

/* BOOKING STEPS */
.booking-steps {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.booking-step-indicator {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-text-soft);
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

.booking-step-indicator--active {
    border-color: var(--color-primary);
    background: rgba(255, 59, 47, 0.08);
    color: var(--color-primary);
}

.booking-step-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.guest-card {
    padding: 14px;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: #fff;
    margin-bottom: 14px;
}

.guest-card__title {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 800;
    color: var(--color-dark);
}

/* PAYMENT */
.payment-page-section {
    padding-top: 20px;
}

.payment-single-card {
    padding: 22px 24px;
}

.payment-single-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
}

.payment-single-card__title {
    margin-top: 6px !important;
    margin-bottom: 0;
    font-size: 24px;
    line-height: 1.15;
}

.payment-single-card__amount {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
}

.payment-single-card__amount span {
    font-size: 12px;
    color: var(--color-text-soft);
}

.payment-single-card__amount strong {
    font-size: 22px;
    color: var(--color-primary);
    line-height: 1;
}

.payment-single-card__intro {
    margin-top: 10px;
    margin-bottom: 0;
    color: var(--color-text-soft);
    font-size: 14px;
    line-height: 1.5;
}

.payment-single-card__grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 440px;
    gap: 20px;
    align-items: start;
}

.payment-single-card__content {
    margin-top: 16px;
    display: grid;
    gap: 16px;
}

.payment-summary-card {
    min-height: 100%;
}

.payment-summary-box {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.payment-summary-compact {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: var(--shadow-sm);
}

.payment-summary-compact__block {
    display: grid;
    gap: 10px;
}

.payment-summary-compact__divider {
    margin: 14px 0;
    border-top: 1px solid var(--color-border);
}

.payment-summary-compact__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.payment-summary-compact__row:last-child {
    margin-bottom: 0;
}

.payment-summary-compact__row span:first-child {
    color: var(--color-text-soft);
}

.payment-summary-compact__row span:last-child,
.payment-summary-compact__row strong {
    color: var(--color-dark);
    text-align: right;
}

.payment-summary-compact__row--total {
    font-size: 18px;
    font-weight: 800;
}

.payment-summary-compact__row--total strong,
.payment-summary-compact__row--total span:last-child {
    color: var(--color-primary) !important;
}

.payment-layout {
    align-items: start;
}

.payment-embed-card {
    overflow: hidden;
}

.payment-embed-inner {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 14px;
    box-shadow: var(--shadow-sm);
}

.payment-embed-inner--full {
    max-width: 520px;
    margin: 0 auto;
}

.iyzico-embed-wrapper {
    width: 100%;
    overflow: hidden;
    
}

.iyzico-embed-wrapper iframe {
    width: 100% !important;
    max-width: 100% !important;
    border: 0 !important;
    border-radius: 18px !important;
    background: #fff;
}

.iyzico-embed-wrapper #iyzipay-checkout-form,
.iyzico-embed-wrapper .iyzipay-checkout-form,
.iyzico-embed-wrapper .iyzico-checkout-form {
    width: 100% !important;
    max-width: 100% !important;
}


/* MOBILE BOOKING BAR */
.mobile-booking-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 300;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    padding: 6px;
    border-radius: 18px 18px 0 0;

    background: linear-gradient(
        135deg,
        rgba(15, 26, 68, 0.92) 0%,
        rgba(15, 26, 68, 0.88) 50%,
        rgba(24, 182, 178, 0.18) 100%
    );

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);



    box-shadow:
        0 16px 40px rgba(15, 26, 68, 0.14),
        0 4px 14px rgba(15, 26, 68, 0.08);
}

.mobile-booking-bar__price {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.mobile-booking-bar__label {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    line-height: 1.2;
}

.mobile-booking-bar__price strong {
    font-size: 22px;
    line-height: 1.1;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.mobile-booking-bar__button {
    border: none;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 14px;

    background: linear-gradient(135deg, #ff3b2f 0%, #ff6a3d 60%, #ff8b4b 100%);
    color: #fff;

    font-size: 14px;
    font-weight: 800;

    cursor: pointer;
    white-space: nowrap;

    box-shadow: 0 8px 20px rgba(255, 59, 47, 0.35);
}

/* MOBILE MENU */
.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.mobile-menu-toggle:hover {
    border-color: rgba(255, 59, 47, 0.22);
    box-shadow: 0 6px 16px rgba(15, 26, 68, 0.06);
    transform: translateY(-1px);
}

.mobile-menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--color-dark);
    display: block;
    border-radius: 999px;
    transition: 0.2s ease;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    max-height: 88vh;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 14px 0 18px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 16px 34px rgba(15, 26, 68, 0.08);
    transform: translateY(-18px) scale(0.985);
    opacity: 0;
    pointer-events: none;
    transition:
        transform 0.28s ease,
        opacity 0.22s ease,
        box-shadow 0.28s ease;
}

.mobile-drawer.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 26, 68, 0.14);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
    z-index: 900;
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding: 0 14px;
}

.drawer-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.drawer-logo-text {
    font-size: 15px;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.1;
}

.drawer-close {
    width: 38px;
    height: 38px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: #fff;
    font-size: 18px;
    cursor: pointer;
    color: var(--color-dark);
    flex-shrink: 0;
}

.drawer-nav {
    display: grid;
    gap: 8px;
    padding: 0 14px;
}

.drawer-nav a {
    position: relative;
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-dark);
    transition: 0.2s ease;
}

.drawer-nav a:hover {
    background: rgba(15, 26, 68, 0.04);
}

.drawer-nav a.is-active {
    background: rgba(255, 106, 61, 0.10);
    color: var(--color-primary);
    font-weight: 700;
    border: 1px solid rgba(255, 106, 61, 0.14);
}

.drawer-nav a.is-active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 3px;
    border-radius: 999px;
    background: var(--color-primary);
}

.drawer-contact {
    margin-top: 16px;
    padding: 14px 14px 0;
    border-top: 1px solid var(--color-border);
    display: grid;
    gap: 10px;
}

.drawer-contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 50px;
    padding: 0 14px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease,
        background-color 0.18s ease,
        color 0.18s ease;
}

.drawer-contact-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(15, 26, 68, 0.08);
}

.drawer-contact-card__icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.drawer-contact-card__text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* TELEFON - soft mor */
.drawer-contact-card--phone {
    background: linear-gradient(180deg, #faf9ff 0%, #f4f2ff 100%);
    color: #6f4df6;
    border-color: rgba(111, 77, 246, 0.14);
}

.drawer-contact-card--phone .drawer-contact-card__icon {
    color: #6f4df6;
}

.drawer-contact-card--phone:hover {
    border-color: rgba(111, 77, 246, 0.22);
    box-shadow: 0 10px 22px rgba(111, 77, 246, 0.10);
}

/* WHATSAPP - yeşil */
.drawer-contact-card--whatsapp {
    background: linear-gradient(180deg, #f4fff7 0%, #ebfbf1 100%);
    color: #179c4a;
    border-color: rgba(37, 211, 102, 0.16);
}

.drawer-contact-card--whatsapp .drawer-contact-card__icon {
    color: #179c4a;
}

.drawer-contact-card--whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.24);
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.12);
}

/* E-POSTA - soft mavi */
.drawer-contact-card--email {
    background: linear-gradient(180deg, #f6f9ff 0%, #edf3ff 100%);
    color: #3a74e6;
    border-color: rgba(58, 116, 230, 0.15);
}

.drawer-contact-card--email .drawer-contact-card__icon {
    color: #3a74e6;
}

.drawer-contact-card--email:hover {
    border-color: rgba(58, 116, 230, 0.22);
    box-shadow: 0 10px 22px rgba(58, 116, 230, 0.10);
}

/* animasyon */


.mobile-drawer{
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.drawer-nav a,
.drawer-contact-card {
    transform: translateY(-6px);
    opacity: 0;
    transition:
        transform 0.24s ease,
        opacity 0.24s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease,
        background-color 0.18s ease,
        color 0.18s ease;
}

.mobile-drawer.open .drawer-nav a,
.mobile-drawer.open .drawer-contact-card {
    transform: translateY(0);
    opacity: 1;
}

.mobile-drawer.open .drawer-contact-card:nth-child(1) {
    transition-delay: 0.16s;
}

.mobile-drawer.open .drawer-contact-card:nth-child(2) {
    transition-delay: 0.18s;
}

.mobile-drawer.open .drawer-contact-card:nth-child(3) {
    transition-delay: 0.20s;
}

.mobile-drawer.open .drawer-nav a:nth-child(1) { transition-delay: 0.04s; }
.mobile-drawer.open .drawer-nav a:nth-child(2) { transition-delay: 0.06s; }
.mobile-drawer.open .drawer-nav a:nth-child(3) { transition-delay: 0.08s; }
.mobile-drawer.open .drawer-nav a:nth-child(4) { transition-delay: 0.10s; }
.mobile-drawer.open .drawer-nav a:nth-child(5) { transition-delay: 0.12s; }
.mobile-drawer.open .drawer-nav a:nth-child(6) { transition-delay: 0.14s; }


/* PROCESS */
.process-accordion {
    position: relative;
    display: grid;
    gap: 12px;
    margin-top: 30px;
    padding: 10px 0;
}

.process-accordion::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: linear-gradient(
        to bottom,
        rgba(255, 106, 61, 0),
        rgba(255, 106, 61, 0.18),
        rgba(255, 106, 61, 0)
    );
}

.process-accordion::after {
    content: "";
    position: absolute;
    left: -40px;
    right: -40px;
    top: -30px;
    bottom: -30px;
    background: radial-gradient(
        circle at 20% 30%,
        rgba(255, 106, 61, 0.08),
        transparent 60%
    );
    z-index: -1;
    pointer-events: none;
}

.process-item {
    position: relative;
    border: 1px solid rgba(231, 235, 243, 0.95);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 24px rgba(15, 26, 68, 0.05);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.process-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(15, 26, 68, 0.08);
}

.process-item[open] {
    border-color: rgba(255, 106, 61, 0.16);
    box-shadow: 0 14px 28px rgba(15, 26, 68, 0.07);
}

.process-item__summary {
    list-style: none;
    display: grid;
    grid-template-columns: 14px 44px 1fr 18px;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    cursor: pointer;
}

.process-item__summary::-webkit-details-marker {
    display: none;
}

.process-item__marker {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow:
        0 0 0 6px rgba(255, 106, 61, 0.10),
        0 6px 12px rgba(0, 0, 0, 0.08);
}

.process-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f7f9fd, #edf3fb);
    color: var(--color-primary);
    flex-shrink: 0;
}

.process-item__icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.process-item__text {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.process-item__text strong {
    font-size: 16px;
    line-height: 1.2;
    color: var(--color-dark);
    font-weight: 700;
}

.process-item__text small {
    font-size: 13px;
    line-height: 1.4;
    color: var(--color-text-soft);
}

.process-item__arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color-text-soft);
    border-bottom: 2px solid var(--color-text-soft);
    transform: rotate(45deg);
    transition: transform 0.22s ease, border-color 0.22s ease;
    justify-self: end;
}

.process-item[open] .process-item__arrow {
    transform: rotate(-135deg);
    border-color: var(--color-primary);
}

.process-item__content {
    padding: 0 18px 18px 88px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-soft);
}

/* PROMO BANNERS */
.promo-banners {
    padding: 36px 0;
}

.promo-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px;
    align-items: stretch;
}

.promo-banner {
    position: relative;
    display: block;
    width: 100%;
    min-width: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 26, 68, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #0f1a44;
}

.promo-banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.45s ease;
}

.promo-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 18, 38, 0.02) 20%,
        rgba(10, 18, 38, 0.22) 58%,
        rgba(10, 18, 38, 0.70) 100%
    );
    pointer-events: none;
}

.promo-banner__content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
}

.promo-banner__text {
    min-width: 0;
}

.promo-banner__content h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 24px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.promo-banner__content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    line-height: 1.45;
}

.promo-banner__cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.promo-banner:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(15, 26, 68, 0.18);
}

.promo-banner:hover img {
    transform: scale(1.03);
}

.promo-banner:hover .promo-banner__cta {
    transform: translateX(2px);
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

/* RESPONSIVE */
@media (min-width: 768px) {
    .site-nav {
        display: flex;
    }

    .hero__box {
        padding: 42px 40px;
    }

    .hero__title {
        font-size: 52px;
    }

    .hero__description {
        font-size: 16px;
    }

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

@media (max-width: 991px) {
    .feature-grid--soft {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (min-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .feature-card--soft {
        padding: 18px 16px;
    }

    .feature-card__icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        min-height: 52px;
        border-radius: 15px;
    }

    .feature-card__icon svg {
        width: 80%;
        height: 80%;
    }

    .activity-layout {
        grid-template-columns: minmax(0, 1fr) 360px;
        align-items: start;
    }

    .info-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .date-pill-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mobile-booking-bar {
        display: none;
    }
}

@media (max-width: 1023px) {
    body {
        padding-bottom: 92px;
    }

    .booking-card--sticky {
        position: static;
    }

    .payment-layout,
    .payment-single-card__grid {
        grid-template-columns: 1fr;
    }

    .payment-embed-card {
        margin-top: 0;
    }

    .payment-single-card {
        padding: 18px;
    }

    .payment-single-card__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .payment-single-card__amount {
        text-align: left;
    }
}

.seo-hidden-text {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
@media (max-width: 767px) {
    :root {
        --radius-md: 14px;
    }

    body {
        padding-top: 58px;
        font-size: 14px;
        line-height: 1.55;
    }

    .container {
        width: min(var(--container-width), calc(100% - 24px));
    }

    .site-header {
        background: rgba(255, 255, 255, 0.97);
    }

    .site-header__inner {
        min-height: 58px;
        gap: 10px;
        padding: 8px 0;
        flex-wrap: nowrap;
    }

    .brand__icon,
    .brand img {
        width: auto;
        height: auto;
        min-width: 0;
        max-width: none;
        object-fit: contain;
        flex-shrink: 0;
    }

    .brand-logo {
        height: 50px;
        max-height: 50px;
        max-width: 140px;
        margin-top: 8px;
    }

    .site-nav,
    .header-cta {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
    }

    .button {
        min-height: 42px;
        padding: 0 16px;
        border-radius: 6px;
        font-size: 13px;
    }

    .hero {
        padding: 14px 0 16px;
    }

    .hero__box {
        padding: 18px 14px;
        border-radius: 18px;
    }

    .hero__title,
    .hero h1 {
        font-size: 26px;
        line-height: 1.06;
        margin: 10px 0 8px;
    }

    .hero__description,
    .hero p {
        font-size: 14px;
        line-height: 1.55;
        max-width: 100%;
    }

    .hero__actions {
        margin-top: 16px;
        gap: 8px;
    }

    .hero-rating {
        margin-top: 12px;
        padding: 8px 12px;
        border-radius: 14px;
    }

    .hero-rating__stars {
        font-size: 14px;
    }

    .hero-rating__text {
        font-size: 11px;
    }

    .section {
        padding: 16px 0;
    }

    .section__header {
        margin-bottom: 12px;
    }

    .section__eyebrow {
        font-size: 11px;
        letter-spacing: 0.06em;
    }

    .section__title {
        font-size: 22px;
        line-height: 1.1;
        margin-top: 6px;
    }

    .section__intro {
        font-size: 14px;
        line-height: 1.6;
    }

    .feature-grid,
    .section-stack,
    .info-list {
        gap: 12px;
    }

    .feature-card,
    .info-card,
    .rich-content-card,
    .booking-card,
    .offer-card {
        padding: 14px;
        border-radius: 16px;
    }

    .feature-grid--soft {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .feature-card--soft {
        align-items: center;
        gap: 10px;
        padding: 13px 12px;
        border-radius: 16px;
    }

    .feature-card__icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        min-height: 42px;
        border-radius: 12px;
    }

    .feature-card--soft h3 {
        font-size: 13px;
        margin-bottom: 3px;
        line-height: 1.2;
    }

    .feature-card--soft p {
        font-size: 11px;
        line-height: 1.35;
    }

    .activity-layout {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .price-box {
        margin-bottom: 14px;
        padding-bottom: 12px;
    }

    .price-box__label {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .price-box__value {
        font-size: 28px;
    }

    .price-box__currency {
        font-size: 16px;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-group label {
        margin-bottom: 5px;
        font-size: 12px;
    }

    .form-control {
        min-height: 46px;
        padding: 9px 12px;
        border-radius: 12px;
        font-size: 16px;
    }

    .form-group-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .slot-select-grid,
    .date-pill-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .slot-select-card,
    .date-pill {
        min-height: 42px;
        border-radius: 12px;
        font-size: 13px;
    }

    .slot-select-card__text {
        gap: 6px;
        font-size: 13px;
    }

    .date-pill__day {
        font-size: 16px;
    }

    .date-pill__month {
        font-size: 11px;
    }

    .booking-summary {
        margin-top: 14px;
        padding-top: 12px;
    }

    .booking-summary__row {
        margin-bottom: 6px;
        font-size: 13px;
        line-height: 1.45;
    }

    .booking-summary__total {
        font-size: 16px;
    }

    .booking-step-actions {
        flex-direction: column;
    }

    .payment-page-section {
        padding-top: 8px;
    }

    .payment-single-card {
        padding: 12px;
        border-radius: 16px;
    }

    .payment-single-card__header {
        padding-bottom: 10px;
        gap: 10px;
    }

    .payment-single-card__title {
        font-size: 22px;
        line-height: 1.08;
    }

    .payment-single-card__intro {
        margin-top: 8px;
        font-size: 13px;
        line-height: 1.5;
    }

    .payment-summary-compact {
        padding: 14px;
        border-radius: 14px;
    }

    .payment-summary-compact__row {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .payment-summary-compact__row--total {
        font-size: 16px;
    }

    .payment-embed-inner {
        padding: 8px;
        border-radius: 14px;
    }

    .payment-embed-inner--full {
        max-width: 100%;
    }

    .iyzico-embed-wrapper {
        width: 100%;
        overflow: visible;
    }

    .iyzico-embed-wrapper iframe {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 720px !important;
        border: 0 !important;
        border-radius: 16px !important;
    }

    .mobile-booking-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;

        z-index: 300;

        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;

        padding: 8px;
        border-radius: 18px 18px 0 0;
    }

    .mobile-booking-bar__label {
        font-size: 11px;
    }

    .mobile-booking-bar__price strong {
        font-size: 20px;
    }

    .mobile-booking-bar__button {
        min-height: 46px;
        padding: 0 16px;
        font-size: 14px;
        border-radius: 14px;
    }

    .site-footer {
        margin-top: 28px;
        padding: 20px 0 96px;
    }

    .site-footer p {
        font-size: 12px;
    }

    .drawer-logo {
        height: 70px;
        width: auto;
        object-fit: contain;
    }

    .process-accordion {
        padding-left: 0;
        gap: 10px;
        margin-top: 14px;
    }

    .process-accordion::before {
        left: 4px;
    }

    .process-item {
        border-radius: 16px;
    }

    .process-item__summary {
        grid-template-columns: 10px 40px 1fr 16px;
        gap: 10px;
        padding: 14px;
    }

    .process-item__marker {
        width: 8px;
        height: 8px;
    }

    .process-item__icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .process-item__icon svg {
        width: 18px;
        height: 18px;
    }

    .process-item__text strong {
        font-size: 14px;
    }

    .process-item__text small {
        font-size: 12px;
    }

    .process-item__content {
        padding: 0 14px 14px 50px;
        font-size: 12px;
        line-height: 1.6;
    }

    .hero.hero--cover {
        padding: 0;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .hero.hero--cover .container {
        width: 100vw;
        max-width: 100vw;
        padding: 0;
        margin: 0;
    }

    .hero__box--cover {
        width: 100vw;
        min-height: 75vh;
        max-height: 650px;
        border-radius: 0;
        padding: 28px 16px 24px;
        background-position: center center;
    }

    .hero__box--cover .hero__eyebrow {
        min-height: 28px;
        padding: 0 16px;
        font-size: 11px;
    }

    .hero__box--cover .hero__title {
        font-size: 34px;
        line-height: 1.08;
        margin: 38px auto 50px;
    }

    .hero__box--cover .hero__description {
        font-size: 15px;
        line-height: 1.3;
    }

    .hero__box--cover .hero__actions {
        margin-top: 68px;
        gap: 8px;
    }

    .hero__glass {
        padding: 18px 16px;
        border-radius: 14px;
    }

    .promo-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .promo-banner {
        border-radius: 18px;
    }

    .promo-banner__content {
        left: 12px;
        right: 12px;
        bottom: 12px;
        gap: 10px;
    }

    .promo-banner__content h3 {
        font-size: 18px;
    }

    .promo-banner__content p {
        font-size: 12px;
    }

    .promo-banner__cta {
        min-height: 38px;
        padding: 0 14px;
        font-size: 12px;
    }

    .hero-micro-badge {
        font-size: 12px;
        padding: 7px 12px;
    }
}

/* =========================
ACTIVITY LIST CARDS
========================= */

/* ACTIVITY LIST HEADER */
.activity-list-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.activity-list-header__link {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
    transition: color 0.2s ease;
}

.activity-list-header__link:hover {
    color: var(--color-primary);
}

/* ACTIVITY LIST GRID */
.activity-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 340px);
    gap: 24px;
    justify-content: center;
}

.tour-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 26, 68, 0.12);
}

.tour-card__link {
    display: block;
    height: 100%;
}

/* IMAGE */
.tour-card__image-wrap {
    position: relative;
    height: 275px;
    overflow: hidden;
    background: linear-gradient(180deg, #edf2fb, #dfe7f5);
}

.tour-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.tour-card:hover .tour-card__image-wrap img {
    transform: scale(1.04);
}

/* BADGES */
.tour-card__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tour-card__badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 8px 14px 14px 8px;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    width: fit-content;
    box-shadow: 0 8px 18px rgba(15, 26, 68, 0.14);
    letter-spacing: -0.01em;
}

.tour-card__badge--featured {
    background: linear-gradient(135deg, #ffb24d, #ff7a3d);
}

.tour-card__badge--discount {
    background: linear-gradient(135deg, #ff6f61, #ff3b2f);
}

/* IMAGE OVERLAY */
.tour-card__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 18px 16px 14px;
    background: linear-gradient(
        180deg,
        rgba(10, 18, 38, 0.02) 0%,
        rgba(10, 18, 38, 0.34) 55%,
        rgba(10, 18, 38, 0.86) 100%
    );
}

.tour-card__title {
    margin: 0 0 0px;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 700;
    color: #fff;
}

.tour-card__location {
    font-size: 13px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.92);
}

/* BODY */
.tour-card__body {
    padding: 16px 16px 20px;
    min-height: 165px;
    display: flex;
    flex-direction: column;
}

.tour-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--color-text-soft);
}

.tour-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.tour-card__features span {
    font-size: 12px;
    line-height: 1;
    padding: 8px 10px;
    border-radius: 999px;
    background: #eef3ff;
    color: #2f4dd0;
    font-weight: 700;
}

/* FOOTER */

.tour-card__footer {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    padding: 0;
}
.tour-card__price-ribbon {
    position: relative;
    min-width: 138px;
    max-width: 152px;
    padding: 12px 18px 12px 16px;
    background: linear-gradient(
        135deg,
        var(--color-dark) 0%,
        #1d3472 45%,
        var(--color-primary) 100%
    );
    color: #fff;
    clip-path: polygon(0 0, 84% 0, 100% 100%, 0 100%);
    display: flex;
    align-items: baseline;
    gap: 4px;
    box-shadow: 0 10px 22px rgba(15, 26, 68, 0.18);

    margin-left: -16px;
    margin-bottom: -20px;
    border-bottom-left-radius: 18px;
}

.tour-card__price-ribbon strong{
    font-size:18px;
    font-weight:700;
}

.tour-card__price-ribbon span{
    font-size:13px;
    opacity:.85;
}



.tour-card__cta {
    flex: 0 0 124px;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-dark);
    font-size: 13px;
    font-weight: 800;
    transition: all 0.22s ease;
    margin-bottom: -10px;
}

.tour-card:hover .tour-card__cta {
    border-color: rgba(255, 59, 47, 0.24);
    color: var(--color-primary);
    background: rgba(255, 59, 47, 0.03);
    box-shadow: 0 8px 18px rgba(15, 26, 68, 0.06);
}

.activity-slider-dots {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
    .activity-list-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .activity-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .activity-list-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .activity-list-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        padding: 4px 2px 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
    }

    .activity-list-grid::-webkit-scrollbar {
        display: none;
    }

    .tour-card {
        flex: 0 0 94%;
        scroll-snap-align: start;
        border-radius: 18px;
    }

    .tour-card__image-wrap {
        height: 300px;
    }

    .tour-card__overlay {
        padding: 22px 16px 16px;
    }

    .tour-card__title {
        font-size: 22px;
        line-height: 1.12;
    }

    .tour-card__location {
        font-size: 13px;
    }

    .tour-card__body {
        padding: 18px 18px 22px;
        min-height: 175px;
        display: flex;
        flex-direction: column;
    }

    .tour-card__meta {
        font-size: 15px;
        gap: 10px;
        margin-bottom: 12px;
    }

    .tour-card__features {
        margin-bottom: 14px;
    }

    .tour-card__features span {
        font-size: 12px;
        padding: 5px 10px;
    }

    .tour-card__footer {
        gap: 8px;
        align-items: flex-end;
    }

    .tour-card__price-ribbon {
        margin-left: -18px;
        margin-bottom: -22px;
        min-width: 132px;
        max-width: 145px;
        padding: 11px 16px 11px 14px;
        border-bottom-left-radius: 18px;
    }

    .tour-card__price-ribbon strong {
        font-size: 18px;
    }

    .tour-card__cta {
        flex: 0 0 118px;
        min-height: 40px;
        font-size: 12px;
        margin-bottom: -14px;
    }

    .activity-slider-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 14px;
    }

    .activity-slider-dots__dot {
        width: 9px;
        height: 9px;
        border-radius: 999px;
        border: none;
        background: rgba(15, 26, 68, 0.18);
        cursor: pointer;
        padding: 0;
        transition: all 0.22s ease;
    }

    .activity-slider-dots__dot.is-active {
        width: 22px;
        background: var(--color-primary);
    }
}

/* =========================
   ACTIVITY LIST PAGE
========================= */

.activity-list-page .container {
    max-width: 1200px;
}

.activity-list-page__hero {
    margin-bottom: 28px;
}

.activity-list-page__hero-inner {
    padding: 28px 0 10px;
}

.activity-list-page__hero-meta {
    margin-top: 14px;
    color: var(--color-text-soft);
    font-size: 14px;
}

.activity-list-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.activity-list-sidebar {
    position: sticky;
    top: 96px;
}

.activity-filter-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(15, 26, 68, 0.06);
    overflow: hidden;
}

.activity-filter-card__toggle {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    cursor: pointer;
}

.activity-filter-card__icon {
    font-size: 18px;
    opacity: 0.8;
}

.activity-filter-card__body {
    padding: 0 20px 20px;
}

.activity-filter-card__section h3 {
    margin: 0 0 14px;
    font-size: 15px;
    color: var(--color-dark);
}

.activity-filter-list {
    display: grid;
    gap: 10px;
}

.activity-filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #f8f9fd;
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.2s ease;
    font-size: 14px;
    color: var(--color-text);
}

.activity-filter-item:hover {
    border-color: rgba(255, 59, 47, 0.18);
    background: #fff;
}

.activity-filter-item input {
    width: 16px;
    height: 16px;
    accent-color: var(--color-primary);
    flex-shrink: 0;
}

.activity-filter-card__actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.activity-filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: 0.2s ease;
    border: 1px solid transparent;
}

.activity-filter-btn--primary {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.activity-filter-btn--primary:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
}

.activity-filter-btn--ghost {
    background: #fff;
    color: var(--color-dark);
    border-color: var(--color-border);
}

.activity-filter-btn--ghost:hover {
    border-color: rgba(15, 26, 68, 0.2);
}

.activity-filter-card__empty {
    margin: 0;
    font-size: 14px;
    color: var(--color-text-soft);
}

.activity-list-content__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.activity-list-content__title {
    margin: 0;
    font-size: 22px;
    color: var(--color-dark);
}

/* Buradaki asıl düzeltme: slider değil grid */
.activity-list-grid--page {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    overflow: visible !important;
    white-space: normal !important;
}

/* Kartlar yana akmasın */
.activity-list-grid--page > * {
    min-width: 0 !important;
    width: 100% !important;
}

/* Eğer kartın içinde slider sayfasına özel width varsa ez */
.activity-list-grid--page .tour-card,
.activity-list-grid--page .activity-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
}

.activity-empty-state {
    grid-column: 1 / -1;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 42px 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 26, 68, 0.05);
}

.activity-empty-state h3 {
    margin: 0 0 8px;
    color: var(--color-dark);
}

.activity-empty-state p {
    margin: 0;
    color: var(--color-text-soft);
}

#activityResults {
    transition: opacity 0.2s ease;
}

@media (max-width: 1199px) {
    .activity-list-grid--page {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .activity-list-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .activity-list-sidebar {
        position: static;
    }

    .activity-filter-card__body {
        display: none;
    }

    .activity-filter-card__body.is-open,
    .activity-filter-card__body.active,
    .activity-filter-card__body.open {
        display: block;
    }

    #filterBox.is-open {
        display: block;
    }
}

@media (max-width: 767px) {
    .activity-list-page__hero-inner {
        padding-top: 10px;
    }

    .activity-list-grid--page {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .activity-filter-card {
        border-radius: 18px;
    }

    .activity-filter-card__toggle {
        padding: 16px 16px;
    }

    .activity-filter-card__body {
        padding: 0 16px 16px;
    }

    .activity-filter-card__actions {
        flex-direction: column;
    }

    .activity-filter-btn {
        width: 100%;
    }
}

/* =========================
ACTIVITY DETAIL PAGE
========================= */

.activity-detail-page {
    padding: 10px 0 32px;
}

.activity-detail-shell {
    width: min(var(--container-width), calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}

.activity-detail-main,
.activity-detail-sidebar {
    min-width: 0;
}

/* HERO */
.activity-hero{
    width:min(var(--container-width), calc(100% - 32px));
    margin:0 auto 18px;
}

.activity-hero__slider {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #dfe7f5;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.activity-hero__main {
    position: relative;
    min-height: 560px;
    background: linear-gradient(180deg, #edf2fb, #dfe7f5);
}

.activity-hero__main--empty {
    min-height: 560px;
}

.activity-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.activity-hero__slide.is-active {
    opacity: 1;
    position: relative;
}

.activity-hero__slide img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
}

.activity-hero__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 36px 28px 26px;
    background: linear-gradient(
        180deg,
        rgba(10, 18, 38, 0.02) 0%,
        rgba(10, 18, 38, 0.28) 52%,
        rgba(10, 18, 38, 0.86) 100%
    );
}

.activity-hero__title {
    margin: 0;
    color: #fff;
    font-size: 40px;
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.20);
}

.activity-hero__thumbs {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 3;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-top: 88px;
    scrollbar-width: none;
}

.activity-hero__thumbs::-webkit-scrollbar {
    display: none;
}

.activity-hero__thumb {
    width: 78px;
    height: 58px;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
    background: #fff;
    cursor: pointer;
    flex: 0 0 auto;
    box-shadow: 0 10px 20px rgba(15, 26, 68, 0.14);
}

.activity-hero__thumb.is-active {
    border-color: rgba(255, 255, 255, 0.95);
}

.activity-hero__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SECTIONS */
.activity-section {
    margin-bottom: 18px;
}

.activity-section:last-child {
    margin-bottom: 0;
}

.section-heading {
    margin-bottom: 12px;
}

.section-heading h2 {
    margin: 0;
    font-size: 26px;
    line-height: 1.15;
    color: var(--color-dark);
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* INTRO */
.activity-intro {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    padding: 22px 22px;
    box-shadow: var(--shadow-sm);
}

.activity-intro p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-text-soft);
}

/* GENERAL INFO */
.activity-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.activity-info-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow-sm);
}

.activity-info-card__icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #f7f9fd, #edf3fb);
    color: var(--color-primary);
    font-size: 20px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}

.activity-info-card__content h3 {
    margin: 0 0 4px;
    font-size: 15px;
    line-height: 1.2;
    color: var(--color-dark);
    font-weight: 800;
}

.activity-info-card__content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--color-text-soft);
}

/* HIGHLIGHTS */
.activity-highlight-box {
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border: 1px solid var(--color-border);
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--shadow-sm);
}

.activity-highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.activity-highlight-list li {
    position: relative;
    padding-left: 28px;
    color: var(--color-dark);
    font-size: 15px;
    line-height: 1.65;
    font-weight: 600;
}

.activity-highlight-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(24, 182, 178, 0.10);
    color: var(--color-turquoise);
    font-size: 12px;
    font-weight: 800;
}

/* INCLUDE / EXCLUDE */
.activity-includes-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.activity-check-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--shadow-sm);
}

.activity-check-card h2 {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.15;
    color: var(--color-dark);
    font-weight: 800;
}

.activity-check-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.activity-check-card li {
    position: relative;
    padding-left: 26px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-soft);
}

.activity-check-card--include li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    color: #1da851;
    font-weight: 800;
}

.activity-check-card--exclude li::before {
    content: "–";
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--color-primary);
    font-weight: 800;
}

/* TIMELINE */
.activity-timeline {
    position: relative;
    display: grid;
    gap: 14px;
    padding-left: 8px;
}

.activity-timeline::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: linear-gradient(
        to bottom,
        rgba(255, 59, 47, 0),
        rgba(255, 59, 47, 0.18),
        rgba(255, 59, 47, 0)
    );
}

.activity-timeline__item {
    position: relative;
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 14px;
    align-items: start;
}

.activity-timeline__dot {
    width: 12px;
    height: 12px;
    margin-top: 10px;
    margin-left: 12px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 0 6px rgba(255, 59, 47, 0.10);
}

.activity-timeline__content {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 18px 18px;
    box-shadow: var(--shadow-sm);
}

.activity-timeline__content h3 {
    margin: 0 0 6px;
    font-size: 17px;
    line-height: 1.2;
    color: var(--color-dark);
    font-weight: 800;
}

.activity-timeline__content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-soft);
}

/* WARNING BOX */
.activity-warning-box {
    background: linear-gradient(180deg, #fffaf9, #ffffff);
    border: 1px solid rgba(255, 59, 47, 0.14);
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--shadow-sm);
}

.activity-warning-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.activity-warning-box li {
    position: relative;
    padding-left: 24px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-soft);
}

.activity-warning-box li::before {
    content: "!";
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--color-primary);
    font-weight: 800;
}

/* IMPORTANT INFO */
.activity-important-grid {
    display: grid;
    gap: 14px;
}

.activity-important-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.activity-important-card h3 {
    margin: 0 0 12px;
    font-size: 17px;
    line-height: 1.2;
    color: var(--color-dark);
    font-weight: 800;
}

.activity-important-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.activity-important-card li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--color-text-soft);
}

.activity-important-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-size: 18px;
    line-height: 1;
}

.activity-important-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-soft);
}

.activity-important-card--green {
    background: linear-gradient(180deg, #ffffff, #fbfffd);
}

.activity-important-card--gray {
    background: linear-gradient(180deg, #ffffff, #fbfcfe);
}

.activity-important-card--blue {
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.activity-important-card--soft {
    background: linear-gradient(180deg, #ffffff, #fffaf9);
}

/* FAQ */
/* FAQ */
.activity-faq{
    display:grid;
    gap:14px;
}

.activity-faq__item{
    background:#fff;
    border:1px solid var(--color-border);
    border-radius:18px;
    box-shadow:var(--shadow-sm);
    overflow:hidden;
}

.activity-faq__item summary{
    list-style:none;
    cursor:pointer;
    position:relative;
    padding:18px 56px 18px 18px;
}

.activity-faq__item summary::-webkit-details-marker{
    display:none;
}

.activity-faq__question{
    margin:0;
    font-size:16px;
    line-height:1.4;
    font-weight:700;
    color:var(--color-dark);
}

.activity-faq__item summary::before{
    content:"";
    position:absolute;
    left:0;
    top:14px;
    bottom:14px;
    width:4px;
    border-radius:999px;
    background:linear-gradient(180deg, #ff7a3d, var(--color-primary));
}

.activity-faq__item summary::after{
    content:"+";
    position:absolute;
    right:18px;
    top:50%;
    transform:translateY(-50%);
    width:28px;
    height:28px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,59,47,.08);
    color:var(--color-primary);
    font-size:18px;
    font-weight:800;
    line-height:1;
}

.activity-faq__item[open] summary::after{
    content:"–";
}

.activity-faq__content{
    padding:0 18px 18px 18px;
}

.activity-faq__content p{
    margin:0;
    font-size:14px;
    line-height:1.75;
    color:var(--color-text-soft);
}
/* LONG TEXT */
.activity-longtext {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--shadow-sm);
}

.activity-longtext__inner {
    font-size: 15px;
    line-height: 1.85;
    color: var(--color-text-soft);
    position: relative;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.activity-longtext__inner.is-collapsed {
    max-height: 180px;
}

.activity-longtext__inner.is-collapsed::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 72px;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0),
        rgba(255,255,255,0.95),
        rgba(255,255,255,1)
    );
}

.activity-longtext__toggle {
    margin-top: 14px;
    border: none;
    background: transparent;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    padding: 0;
}

/* SIDEBAR WRAPPER ONLY - DO NOT TOUCH EXISTING BOOKING CARD DESIGN */
.activity-booking-card {
    position: sticky;
    top: 96px;
}

/* FORM WRAPPER INSIDE SIDEBAR */
.activity-booking-form__submit {
    width: 100%;
    min-height: 48px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--color-primary), #ff6a3d);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(255, 59, 47, 0.16);
}

.activity-booking-form__submit:hover {
    transform: translateY(-1px);
}

.booking-form__group {
    margin-bottom: 14px;
}

.booking-form__group label {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
}

.booking-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.booking-form__extras {
    margin: 16px 0 18px;
}

.booking-form__extras h3 {
    margin: 0 0 10px;
    font-size: 15px;
    color: var(--color-dark);
}

.booking-extra-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: #fff;
    margin-bottom: 10px;
}

.booking-extra-item span {
    flex: 1;
    font-size: 14px;
    color: var(--color-dark);
    font-weight: 600;
}

.booking-extra-item strong {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 800;
}

.activity-booking-card__price {
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}

.activity-booking-card__price span {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    color: var(--color-text-soft);
}

.activity-booking-card__price strong {
    display: block;
    font-size: 32px;
    line-height: 1;
    color: var(--color-primary);
    font-weight: 800;
}

/* RESPONSIVE */
@media (max-width: 1023px) {
    .activity-detail-shell {
        grid-template-columns: 1fr;
        gap: 16px;
        width: min(var(--container-width), calc(100% - 24px));
    }

    .activity-booking-card {
        position: static;
    }
}

@media (max-width: 767px) {
    .activity-detail-page {
        padding: 6px 0 20px;
    }

    .activity-hero__slider {
        border-radius: 18px;
    }

    .activity-hero__main,
    .activity-hero__main--empty,
    .activity-hero__slide img {
        min-height: 360px;
    }

    .activity-hero__overlay {
        padding: 22px 16px 18px;
    }

    .activity-hero__title {
        font-size: 40px;
        line-height: 1.08;
    }

    .activity-hero__thumbs {
        left: 12px;
        right: 12px;
        bottom: 12px;
        gap: 8px;
        padding-top: 72px;
    }

    .activity-hero__thumb {
        width: 62px;
        height: 46px;
        border-radius: 10px;
    }

    .section-heading h2 {
        font-size: 22px;
    }

    .activity-intro,
    .activity-highlight-box,
    .activity-check-card,
    .activity-warning-box,
    .activity-important-card,
    .activity-longtext {
        padding: 16px;
        border-radius: 18px;
    }

    .activity-intro p,
    .activity-longtext__inner {
        font-size: 14px;
        line-height: 1.75;
    }

    .activity-info-grid,
    .activity-includes-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .activity-info-card {
        padding: 14px;
        border-radius: 16px;
        gap: 12px;
    }

    .activity-info-card__icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: 12px;
        font-size: 18px;
    }

    .activity-info-card__content h3 {
        font-size: 14px;
    }

    .activity-info-card__content p,
    .activity-highlight-list li,
    .activity-check-card li,
    .activity-warning-box li,
    .activity-important-card li,
    .activity-important-card p,
    .activity-faq__content p {
        font-size: 14px;
    }

    .activity-check-card h2 {
        font-size: 19px;
    }

    .activity-timeline {
        gap: 12px;
        padding-left: 0;
    }

    .activity-timeline::before {
        left: 14px;
    }

    .activity-timeline__item {
        grid-template-columns: 28px 1fr;
        gap: 10px;
    }

    .activity-timeline__dot {
        width: 10px;
        height: 10px;
        margin-top: 10px;
        margin-left: 9px;
    }

    .activity-timeline__content {
        padding: 14px;
        border-radius: 16px;
    }

    .activity-timeline__content h3 {
        font-size: 15px;
    }

    .activity-faq__item {
        border-radius: 16px;
    }

    .activity-faq__item summary {
        padding:16px 52px 16px 16px;
    }

    .activity-faq__question{
        font-size:15px;
     }

    .activity-faq__content {
        padding: 0 16px 16px;
    }

    .booking-form__grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .activity-booking-card__price strong {
        font-size: 28px;
    }

    .activity-booking-form__submit {
        min-height: 46px;
        font-size: 14px;
    }
}

.activity-page * {
    box-sizing: border-box;
}

.activity-page .activity-section {
    margin-bottom: 28px;
}

.activity-page .activity-detail-shell {
    display: grid;
    grid-template-columns: minmax(0,1fr) 360px;
    gap: 28px;
}

.activity-page .activity-intro,
.activity-page .activity-highlight-box,
.activity-page .activity-check-card,
.activity-page .activity-warning-box,
.activity-page .activity-important-card,
.activity-page .activity-longtext {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 1023px) {
    .activity-detail-shell {
        display: block;
    }

    .activity-detail-main {
        width: 100%;
    }

    .activity-detail-sidebar {
        width: 100%;
        margin-top: 18px;
    }

    .activity-detail-sidebar .booking-card,
    .activity-detail-sidebar .booking-card--sticky {
        position: static !important;
        top: auto !important;
        width: 100%;
    }

    .activity-detail-page {
        padding-bottom: 20px;
    }
}

@media (max-width:1023px){
    .activity-layout{
        grid-template-columns:1fr;
    }

    .booking-sidebar{
        order:2;
        margin-top:24px;
    }

    .booking-card--sticky{
        position:static;
    }
}

.calendar-box{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:12px;
    padding:14px;
}

.calendar-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
    font-weight:600;
}

.calendar-header button{
    border:none;
    background:#f3f3f3;
    width:28px;
    height:28px;
    border-radius:6px;
    cursor:pointer;
}

.calendar-week{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    font-size:12px;
    color:#999;
    margin-bottom:6px;
}



/* TAKVİM GRID */
.calendar-grid{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:6px;
}

.calendar-day{
    height:34px;
    width:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:13px;
    cursor:pointer;
    transition:all .15s ease;
    color:#3b4256;
    -webkit-tap-highlight-color: transparent;
}

.calendar-day.available{
    background:#f2f6ff;
    color:#4a6cf7;
    font-weight:600;
}

.calendar-day.available:hover{
    background:#e6edff;
    transform:scale(1.05);
}

.calendar-day.available.active,
.calendar-day.available.selected,
.calendar-day.active,
.calendar-day.selected{
    background:#ff6b2c !important;
    color:#fff !important;
    font-weight:700;
    box-shadow:0 4px 10px rgba(255,107,44,.25);
    transform:none;
}

.calendar-day.available.active:hover,
.calendar-day.available.selected:hover,
.calendar-day.active:hover,
.calendar-day.selected:hover{
    background:#ff6b2c !important;
    color:#fff !important;
}

.calendar-day.disabled{
    opacity:.25;
    pointer-events:none;
}


.extra-option--qty {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 16px;
    align-items: center;
}

.extra-option--qty .extra-option__main {
    min-width: 0;
}

.extra-option--qty .extra-option__main label {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    font-weight: 700;
    color: var(--color-dark);
}

.extra-option--qty .extra-option__main span {
    line-height: 1.35;
}

.extra-option--qty .extra-option__price {
    white-space: nowrap;
    text-align: right;
    font-weight: 800;
}

.extra-option--qty .extra-qty-wrap {
    grid-column: 1 / -1;
    margin-top: 0 !important;
}

.extra-option--qty .extra-qty-wrap > div {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
}

.extra-option--qty .extra-qty-input {
    width: 60px;
    min-width: 60px;
    max-width: 60px;
    padding-left: 10px;
    padding-right: 10px;
}

.extra-option--qty .extra-minus,
.extra-option--qty .extra-plus {
    width: 42px;
    min-width: 42px;
    height: 42px;
    padding: 0 !important;
    border-radius: 12px;
}

@media (min-width: 1024px) {
    .extra-option--qty {
        padding: 14px 16px;
    }

    .extra-option--qty .extra-option__main span {
        font-size: 15px;
    }

    .extra-option--qty .extra-option__price {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .extra-option--qty {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .extra-option--qty .extra-option__price {
        text-align: left;
    }

    .extra-option--qty .extra-qty-wrap > div {
        width: 100%;
    }

    .extra-option--qty .extra-qty-input {
        flex: 1;
        max-width: none;
        width: 100%;
    }
}

.hotel-transfer-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.hotel-transfer-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: #fff;
    color: var(--color-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hotel-transfer-option:hover {
    border-color: rgba(255, 59, 47, 0.28);
}

.hotel-transfer-option input {
    margin: 0;
}

.hotel-transfer-option:has(input:checked) {
    border-color: var(--color-primary);
    background: rgba(255, 59, 47, 0.06);
    color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 59, 47, 0.06);
}

@media (max-width: 767px) {
    .hotel-transfer-group {
        flex-direction: column;
        gap: 8px;
    }

    .hotel-transfer-option {
        width: 100%;
        justify-content: flex-start;
    }
}


/* =========================
ACTIVITY DETAIL LAYOUT FIX
========================= */

.activity-layout{
    display:grid;
    grid-template-columns: minmax(0,1fr) 360px;
    gap:28px;
    align-items:start;
}

.activity-main{
    min-width:0;
}

.booking-sidebar{
    position:relative;
}

.booking-card--sticky{
    position:sticky;
    top:110px;
}

/* DETAIL PAGE SHELL */


.activity-detail-shell{
    width:min(var(--container-width), calc(100% - 32px));
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(0, 1fr) 360px;
    gap:24px;
    align-items:start;
}

.activity-detail-main,
.activity-detail-sidebar{
    min-width:0;
}

/* SIDEBAR BOOKING */

.booking-card--sticky{
    position:sticky;
    top:96px;
}

/* MOBILE */

@media (max-width:1023px){

.activity-layout{
    grid-template-columns:1fr;
}

.activity-detail-shell{
    grid-template-columns:1fr;
}

.booking-sidebar,
.activity-detail-sidebar{
    order:2;
    margin-top:24px;
}

.booking-card--sticky,
.activity-booking-card{
    position:static;
}

.activity-info-grid{
    grid-template-columns:1fr;
}

.activity-includes-grid{
    grid-template-columns:1fr;
}

}
@media (max-width: 1023px){
    .activity-hero{
        width:min(var(--container-width), calc(100% - 24px));
    }

    .activity-detail-shell{
        width:min(var(--container-width), calc(100% - 24px));
        grid-template-columns:1fr;
        gap:16px;
    }

    .booking-card--sticky{
        position:static;
        top:auto;
    }
}
.mobile-booking-bar{
    transition: transform .25s ease, opacity .25s ease !important;
}

.mobile-booking-bar.is-hidden{
    transform: translateY(140%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
}


/* GALERİ LAYOUT */

.activity-gallery-layout{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:12px;
    margin-bottom:24px;
}

/* ANA FOTO */

.activity-gallery-main{
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    min-height: unset;
    height: auto;
}

.activity-gallery-main img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* THUMB GRID */

.activity-gallery-thumbs{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-content: start;
}

.activity-gallery-thumb,
.activity-gallery-more{
    position: relative;
    border: none;
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #eef2f8;
    cursor: pointer;
}


.activity-gallery-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* ACTIVE */

.activity-gallery-thumb.is-active{
    outline:3px solid #ff6b2c;
}

/* + FOTO KUTUSU */

.activity-gallery-more{
    display:flex;
    align-items:center;
    justify-content:center;
    background:#000;
    color:#fff;
    font-weight:600;
    border-radius:12px;
    font-size:18px;
}

/* HERO OVERLAY */

.activity-hero__overlay{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 24px 22px;
    background: linear-gradient(
        180deg,
        rgba(10, 18, 38, 0) 0%,
        rgba(10, 18, 38, 0.18) 40%,
        rgba(10, 18, 38, 0.78) 100%
    );
    z-index: 2;
}

.activity-hero__title{
    margin: 0;
    color: #fff;
    font-size: 35px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 18px rgba(0,0,0,0.22);
}


/* MOBİL */

@media (max-width: 767px){

    .activity-detail-page{
        padding-top: 10px;
    }

    .activity-hero{
        margin-top: 8px;
        margin-bottom: 16px;
    }

    .activity-gallery-layout{
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .activity-gallery-main{
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 10;
        border-radius: 18px;
        overflow: hidden;
    }

    .activity-gallery-main img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .activity-gallery-thumbs{
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 8px !important;
        width: 100%;
    }

    .activity-gallery-thumb,
    .activity-gallery-more{
        width: 100%;
        aspect-ratio: 1 / 1;
        border-radius: 12px;
        overflow: hidden;
        min-height: unset !important;
    }

    .activity-gallery-thumb img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .activity-gallery-more{
        display: flex;
        align-items: center;
        justify-content: center;
        background: #000;
        color: #fff;
        font-size: 28px;
        font-weight: 800;
        border: none;
        padding: 0;
    }

    .activity-gallery-main .activity-hero__overlay{
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        top: auto !important;
        padding: 18px 16px 14px !important;
        background: linear-gradient(
            180deg,
            rgba(10,18,38,0) 0%,
            rgba(10,18,38,0.18) 45%,
            rgba(10,18,38,0.78) 100%
        ) !important;
        z-index: 2;
    }

    .activity-gallery-main .activity-hero__title{
        margin: 0 !important;
        font-size: 18px !important;
        line-height: 1.1 !important;
        color: #fff !important;
        font-weight: 800 !important;
    }

}

/* LIGHTBOX */
.activity-lightbox{
    position: fixed;
    inset: 0;
    background: rgba(10, 18, 38, 0.92);
    z-index: 4000;
    display: none;
    flex-direction: column;
    padding: 18px 16px 16px;
}

.activity-lightbox.is-open{
    display: flex;
}

.activity-lightbox__close{
    align-self: flex-end;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

.activity-lightbox__stage{
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3 / 2;
    margin: 0 auto 12px;
    overflow: hidden;
    border-radius: 16px;
}

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

.activity-lightbox__nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 999px;
    background: rgba(15, 26, 68, 0.82);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    cursor: pointer;
}

.activity-lightbox__nav--prev{
    left: 10px;
}

.activity-lightbox__nav--next{
    right: 10px;
}

.activity-lightbox__thumbs{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.activity-lightbox__thumb{
    border: none;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: transparent;
    opacity: .75;
}

.activity-lightbox__thumb.is-active{
    outline: 2px solid #ff6b2c;
    opacity: 1;
}

.activity-lightbox__thumb img{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.activity-gallery-more{
    border: none;
    cursor: pointer;
}


.activity-lightbox__nav:hover{
    background: rgba(15, 26, 68, 0.94);
}


.floating-whatsapp{
    display: none;
}


.seo-content{
    padding-top: 24px;
}

.seo-content__wrapper{
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 28px 30px;
    box-shadow: 0 10px 30px rgba(15, 26, 68, 0.06);
    position: relative;
    overflow: hidden;
}

.seo-content__wrapper::before{
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.58) 0%,
        rgba(255,255,255,0) 22%
    );
}

.seo-content__header{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.seo-content__eyebrow{
    display: inline-block;
    margin-bottom: 8px;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.seo-content__main-title{
    margin: 0;
    font-size: 30px;
    line-height: 1.2;
    color: var(--color-dark);
}

.seo-content__all{
    position: relative;
    transition: max-height 0.42s ease;
}

.seo-content__all.is-collapsed{
    max-height: 220px;
    overflow: hidden;
}

.seo-content__all.is-collapsed::before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 96px;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.78) 45%,
        rgba(255, 255, 255, 0.94) 72%,
        #ffffff 100%
    );
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}


.seo-content__item{
    padding: 18px 0;
    border-top: 1px solid var(--color-border);
}

.seo-content__item:first-child{
    border-top: 0;
    padding-top: 14px;
}

.seo-content__title{
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.25;
    color: var(--color-dark);
}

.seo-content__text{
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-soft);
}

.seo-content__text p{
    margin: 0 0 14px;
}

.seo-content__text ul,
.seo-content__text ol{
    margin: 0 0 14px 20px;
    padding: 0;
}

.seo-content__text li{
    margin-bottom: 6px;
}

.seo-content__toggle{
    background: rgba(255, 59, 47, 0.07);
    color: var(--color-primary);
    border: 1px solid rgba(255, 59, 47, 0.16);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.seo-content__toggle:hover{
    background: var(--color-primary);
    color: #fff;

    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255, 59, 47, 0.18);
}

.seo-content__footer{
    margin-top: 14px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.home-faq{
    padding-top: 8px;
}

.home-faq .section__header{
    margin-bottom: 20px;
}

.home-faq .section__title{
    margin-bottom: 8px;
}

.home-faq__accordion{
    display: grid;
    gap: 14px;
}

.home-faq .process-item{
    background: #ffffff;
    border: 1px solid rgba(15, 26, 68, 0.08);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(15, 26, 68, 0.04);
    overflow: hidden;
    transition: box-shadow .22s ease, border-color .22s ease, transform .22s ease;
}

.home-faq .process-item:hover{
    border-color: rgba(15, 26, 68, 0.12);
    box-shadow: 0 12px 28px rgba(15, 26, 68, 0.06);
    transform: translateY(-1px);
}

.home-faq .process-item[open]{
    border-color: rgba(255, 59, 47, 0.16);
    box-shadow: 0 14px 34px rgba(15, 26, 68, 0.07);
}

.home-faq .process-item__summary{
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 74px;
    padding: 0 18px;
    list-style: none;
    cursor: pointer;
    position: relative;
}

.home-faq .process-item__summary::-webkit-details-marker{
    display: none;
}

.home-faq .process-item__marker{
    width: 4px;
    height: 26px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff6a3d 0%, #ff3b2f 100%);
    flex-shrink: 0;
    opacity: .9;
}

.home-faq .process-item__text{
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-right: 56px;
}

.home-faq .process-item__text strong{
    font-size: 18px;
    line-height: 1.35;
    color: var(--color-dark);
    font-weight: 700;
}

.home-faq .process-item__text small{
    font-size: 13px;
    line-height: 1.5;
    color: var(--color-text-soft);
}

.home-faq .process-item__arrow{
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(255, 59, 47, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .22s ease, background-color .22s ease;
}

.home-faq .process-item__arrow::before{
    content: "+";
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    color: var(--color-primary);
    transform: translateY(-1px);
}

.home-faq .process-item[open] .process-item__arrow{
    background: rgba(255, 59, 47, 0.12);
}

.home-faq .process-item[open] .process-item__arrow::before{
    content: "–";
    font-size: 18px;
}

.home-faq .process-item__content{
    padding: 0 18px 18px 36px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-soft);
    border-top: 1px solid rgba(15, 26, 68, 0.06);
    margin-top: 0;
}

.home-faq .process-item__content p{
    margin: 14px 0 0;
}

.home-links__grid{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-links__item{
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f4f7fb;
    border: 1px solid var(--color-border);

    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark);

    transition: all .2s ease;
}

.home-links__item:hover{
    background: #fff;
    border-color: rgba(255, 59, 47, 0.25);
    color: var(--color-primary);
    transform: translateY(-1px);
}

.home-reviews{
    padding: 80px 0;
    background: #f4f7fb;
    position: relative;
    overflow: visible;
}

.home-reviews h2,
.home-reviews .section__title {
    color: #fff;
}

.home-reviews p {
    color: rgba(255,255,255,0.7);
}

.home-reviews .container {
    background: linear-gradient(
        135deg,
        rgba(15, 26, 68, 0.96) 0%,
        rgba(15, 26, 68, 0.92) 45%,
        rgba(24, 182, 178, 0.12) 100%
    );
    position: relative;
    overflow: hidden;

    border-radius: 32px;
    padding: 50px;



    box-shadow: 
        0 20px 60px rgba(15, 26, 68, 0.25),
        inset 0 1px 0 rgba(255,255,255,0.05);
}
.home-reviews .container::before{
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(24,182,178,0.25), transparent 70%);
    filter: blur(50px);
}

.home-reviews .container::after{
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,59,47,0.18), transparent 70%);
    filter: blur(50px);
}

.home-reviews-slider{
    position: relative;
    margin-top: 18px;
    padding: 0 52px;
    overflow: hidden !important;
}

.home-reviews-slider .swiper{
    overflow: visible;
}

.home-reviews-slider::-webkit-scrollbar{
    display: none;
}

.home-reviews-slider .swiper-wrapper{
    overflow: visible;
}

.home-reviews-slider .swiper-slide{
    height: auto;
}

.home-reviews__topbar{
    margin-bottom: 18px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(15, 26, 68, 0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.home-reviews__summary{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--color-dark);
    font-size: 15px;
}

.home-review-card__google{
    width: 20px;
    height: 20px;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


.home-review-summary{
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 14px;
    background: #fff;
}
.home-review-summary__left{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    background: #fff
}
.home-review-summary__logo{
    width: 22px;
    height: 22px;
    display: inline-flex;
}

.home-review-summary__logo svg{
    width: 100%;
    height: 100%;
}

/* stars */
.home-review-summary__stars{
    color: #f5b50a;
    font-size: 14px;
    letter-spacing: 1px;
}

/* score */
.home-review-summary__score{
    font-weight: 700;
    font-size: 15px;
    color: var(--color-dark);
}

.home-reviews-slider__nav{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    z-index: 5;
}


.home-reviews-slider__prev,
.home-reviews-slider__next{
    pointer-events: all;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 999px;
    background: rgba(255,255,255,0.96);
    color: var(--color-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(15, 26, 68, 0.08);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}


.home-reviews-slider__prev:hover,
.home-reviews-slider__next:hover{
    transform: scale(1.04);
    box-shadow: 0 12px 24px rgba(15, 26, 68, 0.12);
    border-color: rgba(255, 59, 47, 0.22);
}


/* text */
.home-review-summary__text{
    font-size: 14px;
    color: var(--color-text-soft);
}
.home-review-card__google svg{
    width: 100%;
    height: 100%;
    display: block;
}

.home-reviews__stars{
    color: #f5b301;
    letter-spacing: 0.04em;
}

.home-reviews__summary strong{
    font-size: 18px;
    line-height: 1;
}

.home-reviews__link{
    flex-shrink: 0;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(19, 140, 87, 0.08);
    border: 1px solid rgba(19, 140, 87, 0.14);
    color: #138c57;
    font-size: 14px;
    font-weight: 700;
    transition: all .2s ease;
}

.home-reviews__link:hover{
    transform: translateY(-1px);
    background: rgba(19, 140, 87, 0.12);
}

.home-reviews__grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.home-review-card{
    height: 100%;
    background: #fff;
    flex: 0 0 300px; /* SABİT GENİŞLİK */
    max-width: 350px;
    border: 1px solid rgba(15, 26, 68, 0.08);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 8px 24px rgba(15, 26, 68, 0.05);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.swiper-slide{
    height: auto;
}
.home-review-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(15, 26, 68, 0.08);
    border-color: rgba(15, 26, 68, 0.12);
}

.home-review-card__header{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.home-review-card__avatar{
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #eff4fb 0%, #e6edf8 100%);
    color: var(--color-dark);
    font-weight: 800;
    font-size: 16px;
}

.home-review-card__meta{
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.home-review-card__meta h3{
    margin: 0;
    font-size: 17px;
    line-height: 1.3;
    color: var(--color-dark);
}

.home-review-card__meta span{
    font-size: 13px;
    color: var(--color-text-soft);
}

.home-review-card__badge{
    margin-left: auto;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f6f8fc;
    color: #4285f4;
    font-weight: 800;
    font-size: 14px;
}

.home-review-card__stars{
    margin-bottom: 10px;
    color: #f5b301;
    letter-spacing: 0.04em;
    font-size: 16px;
}

.home-review-card__stars .is-muted{
    color: #d8dce6;
}

.home-review-card__text{
    font-size: 14px;
    line-height: 1.75;
    color: var(--color-text-soft);
}

.home-review-card__image{
    margin-top: 14px;
}

.home-review-card__image img{
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(15, 26, 68, 0.06);
}

@media (max-width: 1199px){
    .home-reviews__grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 767px){

@media (max-width: 767px){
    .home-reviews{
        padding: 34px 0 26px;
    }

    .home-reviews .container{
        padding: 22px 16px;
        border-radius: 22px;
    }

    .home-reviews .section__header{
        margin-bottom: 14px;
    }

    .home-reviews .section__title{
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .home-reviews .section__intro{
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 0;
    }

    .home-review-summary{
        margin-top: 14px;
        padding: 12px 14px;
        border-radius: 14px;
    }

    .home-review-summary__left{
        gap: 8px;
    }

    .home-review-summary__logo{
        width: 20px;
        height: 20px;
    }

    .home-review-summary__stars{
        font-size: 13px;
        letter-spacing: 0.5px;
    }

    .home-review-summary__score{
        font-size: 14px;
    }

    .home-review-summary__text{
        font-size: 13px;
        line-height: 1.5;
    }

    .home-reviews-slider{
        padding: 0;
    }

    .home-reviews-slider__nav{
        display: none !important;
    }

    .home-review-card{
        padding: 16px;
        border-radius: 18px;
        min-height: auto;
    }

    .home-review-card__header{
        gap: 10px;
        margin-bottom: 10px;
    }

    .home-review-card__avatar{
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 15px;
    }

    .home-review-card__meta h3{
        font-size: 16px;
    }

    .home-review-card__meta span{
        font-size: 12px;
    }

    .home-review-card__stars{
        margin-bottom: 10px;
        font-size: 15px;
    }

    .home-review-card__text{
        font-size: 14px;
        line-height: 1.7;
    }

    .home-review-card__image{
        margin-top: 12px;
    }

    .home-review-card__image img{
        height: 96px;
        border-radius: 12px;
    }
}

    .home-faq__accordion{
        gap: 12px;
    }

    .home-faq .process-item{
        border-radius: 16px;
    }

    .home-faq .process-item__summary{
        min-height: 66px;
        padding: 0 14px;
        gap: 12px;
    }

    .home-faq .process-item__marker{
        height: 22px;
    }

    .home-faq .process-item__text{
        padding-right: 44px;
    }

    .home-faq .process-item__text strong{
        font-size: 16px;
    }

    .home-faq .process-item__text small{
        font-size: 12px;
    }

    .home-faq .process-item__arrow{
        right: 12px;
        width: 28px;
        height: 28px;
    }

    .home-faq .process-item__content{
        padding: 0 14px 16px 26px;
        font-size: 14px;
        line-height: 1.75;
    }
    .seo-content__all.is-collapsed{
        max-height: 180px;
    }

    .seo-content__all.is-collapsed::before{
        height: 82px;
    }

    .seo-content__wrapper{
        padding: 18px;
        border-radius: 18px;
    }

    .seo-content__header{
        flex-direction: column;
        align-items: stretch;
    }

    .seo-content__main-title{
        font-size: 24px;
    }

    .seo-content__title{
        font-size: 20px;
    }

    .seo-content__text{
        font-size: 14px;
        line-height: 1.75;
    }

    .seo-content__toggle{
        width: 40%;
    }

    .activity-lightbox{
        padding: 14px 10px 12px;
        padding-top: 12px;
        width: 100%;
        height: 100%;
        object-fit: cover;
    
    }

    .activity-lightbox__stage{
        aspect-ratio: 1 / 1;
        max-width: 100%;
    }

    .activity-lightbox__stage img{
        max-height: 58vh;
    }

    .activity-lightbox__thumbs{
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }



    .activity-lightbox__nav{
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .activity-lightbox__nav--prev{
        left: 8px;
    }

    .activity-lightbox__nav--next{
        right: 8px;
    }
}

.activity-gallery-more{
    position: relative;
    overflow: hidden;
    border: none;
    padding: 0;
    cursor: pointer;
    background: #0f1a44;
}

.activity-gallery-more__image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.activity-gallery-more__overlay{
    position: absolute;
    inset: 0;
    background: rgba(10, 18, 38, 0.42);
    transition: background 0.25s ease;
}

.activity-gallery-more__count{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 16px rgba(0,0,0,0.25);
    z-index: 2;
}

.activity-gallery-more:hover .activity-gallery-more__overlay{
    background: rgba(10, 18, 38, 0.30);
}


.activity-gallery-more__content{
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    z-index: 2;
    color: #fff;
    text-align: center;
}

.activity-gallery-more__count{
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
}

.activity-gallery-more__text{
    font-size: 12px;
    opacity: .9;
}

@media (max-width: 767px){
    .activity-gallery-more__count{
        font-size: 24px;
    }
}

@media (min-width: 1024px){

                    .activity-gallery-more__text{
                        font-size: 20px;
                        font-weight: 700;
                        letter-spacing: .4px;
                    }

}

.floating-whatsapp{
    display: none;
}

.mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: flex;
    pointer-events: none;
}


.mobile-cta-bar__inner {
    width: calc(100% - 0px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 5px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(
        135deg,
        rgba(15, 26, 68, 0.92) 0%,
        rgba(15, 26, 68, 0.88) 50%,
        rgba(24, 182, 178, 0.18) 100%
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 16px 40px rgba(15, 26, 68, 0.14),
        0 4px 14px rgba(15, 26, 68, 0.08);
    pointer-events: auto;
}



.mobile-cta-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 8px 10px;
    border-radius: 14px 14px 3px 3px;
    text-decoration: none;
    overflow: hidden;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        filter 0.22s ease;
}

.mobile-cta-btn:active {
    transform: scale(0.985);
}

.mobile-cta-btn__icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.18);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.18),
        0 6px 14px rgba(255,255,255,0.08);
}

.mobile-cta-btn__icon svg {
    width: 19px;
    height: 19px;
}

.mobile-cta-btn__text {
    display: flex;
    flex-direction: column;
    line-height: 1.08;
}

.mobile-cta-btn__text strong {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.mobile-cta-btn__text small {
    margin-top: 4px;
    font-size: 8px;
    font-weight: 500;
    opacity: 0.92;
}

/* primary */
.mobile-cta-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, #ff4a3d 0%, #ff6a3d 58%, #ff8b4b 100%);
    box-shadow: 0 12px 28px rgba(255, 74, 61, 0.24);
}

.mobile-cta-btn--primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -58%;
    width: 42%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.16) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-18deg);
    animation: mobileCtaShine 1.8s ease-in-out infinite;
}

.mobile-cta-btn--primary .mobile-cta-btn__icon {
    color: #fff;
}

/* whatsapp */
.mobile-cta-btn--whatsapp {
    color: #fff;
    background: linear-gradient(135deg, #1fc35a 0%, #25d366 58%, #39df78 100%);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.22);
}

.mobile-cta-btn--whatsapp .mobile-cta-btn__icon {
    color: #fff;
}

.mobile-cta-btn:hover {
    transform: translateY(-1px);
    filter: saturate(1.03);
}


.home-gallery {
    margin-top: 10px;
}

.gallery-track-wrap {
    position: relative;
    max-width: 1220px;
    margin: 18px auto 0;
    padding: 0 56px; /* oklar için alan */
}

.gallery-slider {
    display: flex;
    gap: 16px;
    overflow: hidden;
    scroll-behavior: smooth;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
}

.gallery-slider::-webkit-scrollbar {
    display: none;
}

.gallery-slide {
    position: relative;
    flex: 0 0 calc((100% - 64px) / 5); /* 5 kart */
    aspect-ratio: 3 / 4;
    border: none;
    padding: 0;
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: start;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-slide:hover img {
    transform: scale(1.04);
}

.gallery-slide:first-child {
    min-width: 210px;
    width: 210px;
    aspect-ratio: 3 / 4;
}



.gallery-caption {
    margin: 0;
    font-size: 12px;
    line-height: 1.35;
    color: #fff;
    font-weight: 500;
}

.gallery-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 12px 10px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.32) 45%,
        rgba(0, 0, 0, 0) 100%
    );
}


.gallery-slide:hover .gallery-overlay {
    opacity: 1;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 999px;
    background: rgba(15, 26, 68, 0.92);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(15, 26, 68, 0.18);
}

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

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

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(7, 12, 30, 0.92);
    padding: 30px;
}

.gallery-lightbox.is-open {
    display: flex;
}

.gallery-lightbox__content {
    width: min(92vw, 600px);
    max-height: 88vh;
    text-align: center;
}

.gallery-lightbox__content img {
    width: 100%;
    aspect-ratio: 3 / 4;
    max-height: 80vh;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.gallery-lightbox__caption {
    margin-top: 12px;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
    position: absolute;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.gallery-lightbox__close {
    top: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    font-size: 28px;
}

.gallery-lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    font-size: 34px;
}

.gallery-lightbox__nav--prev {
    left: 24px;
}

.gallery-lightbox__nav--next {
    right: 24px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}

.gallery-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(15, 26, 68, 0.25);
    transition: all 0.25s ease;
}

.gallery-dot.is-active {
    width: 18px;
    background: linear-gradient(135deg, var(--color-primary), #ff5a36);
    box-shadow: 0 2px 6px rgba(255, 90, 54, 0.35);
}

/* CONTAINER genişlet */
.home-blog-preview .container {
    max-width: 1440px;
}

/* HEADER */
.home-blog-preview .section__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 20px;
}

/* GRID → 4 kolon FIX */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
}

/* CARD */
.blog-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 6px 18px rgba(15, 26, 68, 0.05);
    transition: all 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(15, 26, 68, 0.10);
}

/* IMAGE */
.blog-card__image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #eef3f9;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

/* CONTENT */
.blog-card__content {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* TITLE */
.blog-card__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
}

.blog-card__title a {
    color: var(--color-dark);
    text-decoration: none;
}

.blog-card:hover .blog-card__title a {
    color: var(--color-primary);
}

/* EXCERPT */
.blog-card__excerpt {
    font-size: 13px;
    color: var(--color-text-soft);
    line-height: 1.5;
}

/* LINK */
.blog-card__link {
    margin-top: auto;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
}

@media (max-width: 1199px) {
    .gallery-track-wrap {
        max-width: 980px;
    }

    .gallery-slide {
        flex: 0 0 calc((100% - 48px) / 4);
    }

    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* küçük tablet */
@media (max-width: 991px) {
    .gallery-track-wrap {
        max-width: 760px;
    }

    .gallery-slide {
        flex: 0 0 calc((100% - 32px) / 3);
    }
}


@media (max-width: 767px){

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

    .blog-card__excerpt {
        display: none;
    }

    .gallery-track-wrap {
        max-width: 100%;
        padding: 0;
    }


    .gallery-slider {
        overflow-x: auto;
        gap: 10px;
        padding: 0 2px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }


    .gallery-slider::-webkit-scrollbar {
        display: none;
    }

    .gallery-slide {
        flex: 0 0 160px;
        aspect-ratio: 3 / 4;
        scroll-snap-align: start;
        border-radius: 14px;
    }


    .gallery-slide:first-child {
        min-width: 160px;
        width: 160px;
        aspect-ratio: 3 / 4;
    }

    .gallery-nav {
        display: none;
    }

    .gallery-lightbox {
        padding: 18px;
    }

    .gallery-lightbox__close {
        top: 12px;
        right: 12px;
    }

    .gallery-lightbox__nav {
        width: 44px;
        height: 44px;
        font-size: 28px;
    }

    .gallery-lightbox__nav--prev {
        left: 10px;
    }

    .gallery-lightbox__nav--next {
        right: 10px;
    }


    .floating-whatsapp{
        position: fixed;
        right: 16px;
        bottom: 112px;
        z-index: 999;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(180deg, #25D366 0%, #1ebe5d 100%);
        color: #ffffff;
        text-decoration: none;
        box-shadow:
            0 12px 28px rgba(37, 211, 102, 0.24),
            0 0 0 6px rgba(37, 211, 102, 0.08);
        transition: transform .22s ease, box-shadow .22s ease, opacity .22s ease;
    }

    .floating-whatsapp:hover{
        transform: translateY(-6px) scale(1.0);
    
        box-shadow:
            0 22px 50px rgba(37, 211, 102, 0.38),
            0 0 0 10px rgba(37, 211, 102, 0.12);

        filter: brightness(1.08);
    }

    .floating-whatsapp__icon{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .floating-whatsapp__icon svg{
        width: 28px;
        height: 28px;
        display: block;
    }
}

        .floating-whatsapp{
            display: none !important;
        }

        .floating-whatsapp{
            animation: whatsappPulse 2s infinite;
        }
    }

    @keyframes whatsappPulse{
        0%{
            box-shadow:
                0 12px 28px rgba(37, 211, 102, 0.26),
            0 0 0 0 rgba(37, 211, 102, 0.18);
        }
        60%{
            box-shadow:
                0 12px 28px rgba(37, 211, 102, 0.26),
                0 0 0 12px rgba(37, 211, 102, 0);
        }
        100%{
            box-shadow:
                0 12px 28px rgba(37, 211, 102, 0.26),
                0 0 0 0 rgba(37, 211, 102, 0);
        }


    }

    .mobile-cta-bar {
        display: block !important;
    }

    body {
        padding-bottom: 96px;
    }

    .floating-whatsapp,
    .whatsapp-float,
    .floating-whatsapp-button,
    .floating-whatsapp-widget {
        display: none !important;
    }
}

@media (max-width: 420px) {
    .mobile-cta-bar {
        bottom: 0;
    }

    .mobile-cta-bar__inner {
        width: calc(100% - 4px);
        gap: 6px;
        padding: 5px;
        border-radius: 16px 16px 0 0;
    }

    .mobile-cta-btn {
        min-height: 50px;
        padding: 9px 10px;
        border-radius: 12px;
        gap: 8px;
    }

    .mobile-cta-btn__icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
        border-radius: 10px;
    }

    .mobile-cta-btn__text strong {
        font-size: 12px;
    }

    .mobile-cta-btn__text small {
        font-size: 9px;
        margin-top: 2px;
    }
}

@keyframes mobileCtaShine {
    0% { left: -58%; }
    55% { left: 120%; }
    100% { left: 120%; }
}

.mobile-cta-bar {
    display: none !important;
}

@media only screen and (max-width: 768px) {
    .mobile-cta-bar {
        display: block !important;
    }
}
