/* =========================================================
   Base + Variables
   ========================================================= */
:root {
    /* dark theme */
    --bg-black: #000;
    --page-bg: #111;
    --text-white: #fff;
    --overlay: rgba(0, 0, 0, .45);
    --muted-overlay: rgba(255, 255, 255, .08);

    /* layout */
    --maxw: 1080px;
    --radius: 24px;
    --radius-full: 88px;

    /* what-is palette */
    --wi-text: #272727;
    --wi-muted: #2A2929;
    --wi-beige-a: #E7DCCE;
    --wi-beige-b: #EEDCCB;
    --wi-dark: #2A2929;
    --wi-blue: #AEBCCB;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

body {
    margin: 0;
    font-family: Geologica, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text-white);
    background: var(--page-bg);
    line-height: 1.4;
}

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

section {
    display: block
}

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 20px
}

/* =========================================================
   HERO
   ========================================================= */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('./images/hero.png') center/cover no-repeat;
    isolation: isolate;
}

#hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--overlay);
    z-index: 0
}

#hero .hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center
}

.brand {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    z-index: 10;
    text-align: center;
}

.title-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px
}

.title-stack .t1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1
}

.title-stack .t2 {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.1
}

.title-stack .t3 {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2
}

.infobar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: rgba(0, 0, 0, .5);
    border-radius: var(--radius-full);
    padding: 16px 32px;
    font-family: Outfit, sans-serif;
    font-size: 21px;
    font-weight: 600;
    backdrop-filter: saturate(120%) blur(2px)
}

.infobar .sep {
    width: 48px;
    height: 1px;
    background: #fff;
    opacity: .5
}

.infobar-subtext {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 4px;
    line-height: 1.2;
    font-family: Outfit, sans-serif;
}

/* hero countdown (anchored bottom) */
.hero-countdown {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2
}

.countdown-note {
    position: absolute;
    bottom: 80px;
    left: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-family: Outfit, sans-serif;
    font-weight: 400;
    z-index: 3;
}

.hero-countdown .bar {
    width: 100%;
    max-width: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(0, 0, 0, .65);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 8px 16px;
    backdrop-filter: saturate(120%) blur(2px)
}

.count-text {
    color: #fff;
    font-size: 19px;
    font-weight: 300;
    line-height: 22.8px
}

.days-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px
}

.days-box {
    width: 60px;
    height: 60px;
    background: var(--muted-overlay);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Outfit, sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #fff
}

.days-label {
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

/* =========================================================
   WHAT IS FETHIYE CYCLING
   ========================================================= */
#what-is {
    background: #fff;
    color: var(--wi-text);
    padding: 72px 0 64px
}

#what-is .wi-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    text-align: center
}

#what-is .wi-title {
    margin: 0;
    font-family: Geologica, sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 66px;
    color: #272727
}

#what-is .wi-subtitle {
    margin: 0;
    max-width: 720px;
    font-family: Spectral, serif;
    font-weight: 500;
    font-size: 27px;
    line-height: 35.1px;
    color: #000
}

/* primary grid: accommodation + photo */
.wi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    margin-bottom: 32px;
    border-radius: var(--radius);
    overflow: hidden
}

.wi-card {
    border-radius: 0;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: linear-gradient(0deg, var(--wi-beige-a) 0%, var(--wi-beige-a) 100%), var(--wi-beige-b);
    color: var(--wi-muted)
}

.wi-card-head {
    display: flex;
    align-items: center;
    gap: 12px
}

.wi-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(42, 41, 41, 0.15)
}

.wi-card-title {
    margin: 0;
    font-family: Geologica, sans-serif;
    font-weight: 700;
    font-size: 37px;
    line-height: 48.1px
}

.wi-card-body p {
    margin: 0 0 8px 0;
    font-family: Spectral, serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 31.2px
}

.wi-list {
    margin: 0;
    padding-left: 20px;
    font-family: Spectral, serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px
}

.wi-list li {
    margin: 6px 0
}

.wi-photo {
    margin: 0;
    display: flex;
    align-items: stretch
}

.wi-photo img {
    border-radius: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

/* gallery */
.wi-gallery {
    margin-top: 16px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.wi-strip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px
}

.wi-strip img {
    flex: 0 0 auto;
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    scroll-snap-align: start;
    user-select: none
}

/* alternating rows: image + card combos */
.wi-blocks {
    margin-top: 40px
}

.wi-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    margin: 40px 0;
    border-radius: var(--radius);
    overflow: hidden
}

.wi-row--reverse {
    direction: ltr
}

.wi-row--reverse> :first-child {
    order: 2
}

.wi-row--reverse> :last-child {
    order: 1
}

/* card variants */
.wi-card--dark {
    background: var(--wi-dark);
    color: #fff
}

.wi-card--blue {
    background: var(--wi-blue);
    color: #1E1E1E
}

.wi-card--beige {
    background: linear-gradient(0deg, var(--wi-beige-a) 0%, var(--wi-beige-a) 100%), var(--wi-beige-b);
    color: #2A2929
}

.wi-card-title--light {
    color: #fff
}

.wi-card-body--light p,
.wi-list--light {
    color: #fff
}

/* curated note */
.wi-note {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px
}

.wi-note-box {
    width: 21px;
    height: 23px;
    outline: 2px currentColor solid;
    outline-offset: -1px;
    display: inline-block
}

.wi-note em {
    font-family: Spectral, serif;
    font-style: italic;
    font-weight: 300;
    font-size: 23px;
    line-height: 29.9px
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
    .title-stack .t1 {
        font-size: 48px
    }

    .title-stack .t2 {
        font-size: 28px
    }

    .title-stack .t3 {
        font-size: 22px
    }

    .infobar {
        gap: 16px;
        font-size: 18px
    }

    .infobar .sep {
        width: 32px
    }

    .days-box {
        width: 50px;
        height: 50px;
        font-size: 24px
    }

    #what-is .wi-title {
        font-size: 44px;
        line-height: 1.1
    }

    #what-is .wi-subtitle {
        font-size: 22px;
        line-height: 1.5
    }

    .wi-grid {
        grid-template-columns: 1fr;
        gap: 0
    }

    .wi-row {
        grid-template-columns: 1fr;
        gap: 0
    }

    .wi-row--reverse> :first-child {
        order: 1
    }

    .wi-row--reverse> :last-child {
        order: 2
    }
}

@media (max-width: 720px) {
    .brand {
        font-size: 28px;
        top: 16px;
        left: 16px;
    }

    .title-stack .t1 {
        font-size: 40px
    }

    .title-stack .t2 {
        font-size: 24px
    }

    .title-stack .t3 {
        font-size: 20px
    }

    .hero-countdown .bar {
        padding: 8px 12px;
    }

    .days-box {
        width: 54px;
        height: 54px;
        font-size: 26px;
    }
}

@media (max-width: 600px) {
    #what-is {
        padding: 56px 0 48px
    }

    .wi-card {
        padding: 28px
    }

    .wi-card-title {
        font-size: 28px
    }

    .wi-card-body p {
        font-size: 20px;
        line-height: 28px
    }

    .wi-list {
        font-size: 18px;
        line-height: 26px
    }

    .wi-strip img {
        width: 240px;
        height: 160px
    }
}

/* ---------- What's cool about Fethiye ---------- */
#whats-cool {
    border-radius: 0;
    background: var(--Ochre, linear-gradient(0deg, #E7DCCE 0%, #E7DCCE 100%), #EEDCCB);
    color: #272727;
    padding: 72px 0 64px;
    overflow: hidden
}

#whats-cool .container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px
}

.wc-head {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
    margin-bottom: 40px
}

.wc-title {
    margin: 0;
    font-family: Geologica, sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 66px;
    color: #272727
}

.wc-intro {
    margin: 0;
    max-width: 900px;
    font-family: Spectral, serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    color: #2A2929
}

.wc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 32px
}

.wc-item {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.wc-photo img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover
}

.wc-card {
    width: 100%;
    padding: 40px 48px;
    background: #F9F9F9;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.wc-card-title {
    margin: 0;
    font-family: Geologica, sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 36.4px;
    color: #272727
}

.wc-card-text {
    margin: 0;
    font-family: Spectral, serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 31.2px;
    color: #272727
}

@media (max-width: 1024px) {
    .wc-title {
        font-size: 48px;
        line-height: 1.1
    }
}

@media (max-width: 900px) {
    .wc-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 600px) {
    #whats-cool {
        padding: 56px 0 48px
    }

    .wc-card {
        padding: 28px
    }

    .wc-card-title {
        font-size: 24px;
        line-height: 32px
    }

    .wc-card-text {
        font-size: 20px;
        line-height: 28px
    }
}

/* ---------- Camp Program ---------- */
#camp-program {
    background: #fff;
    color: #272727;
    padding: 72px 0 64px;
    border-radius: 0;
    overflow: hidden
}

#camp-program .container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px
}

.cp-head {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
    margin-bottom: 32px
}

.cp-title {
    margin: 0;
    font-family: Geologica, sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 66px;
    color: #272727
}

.cp-strip {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin-bottom: 24px
}

.cp-day {
    flex: 0 0 auto;
    width: 520px;
    background: #F9F9F9;
    border-radius: 24px;
    padding: 20px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid rgba(0, 0, 0, .06)
}

.cp-day-title {
    margin: 0;
    font-family: Geologica, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #1E1E1E
}

.cp-map {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    background: #ddd
}

.cp-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.cp-slogan {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    margin: 32px 0 24px
}

.cp-slogan-text {
    margin: 0;
    font-family: Spectral, serif;
    font-size: 26px;
    line-height: 34px;
    font-weight: 500
}

.cp-hashtag {
    margin: 0;
    font-family: Outfit, sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #444
}

.cp-gallery {
    margin-top: 8px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.cp-gallery-strip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px
}

.cp-gallery-strip img {
    flex: 0 0 auto;
    width: 320px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    scroll-snap-align: start;
    user-select: none
}

@media (max-width: 1024px) {
    .cp-title {
        font-size: 48px;
        line-height: 1.1
    }
}

@media (max-width: 720px) {
    .cp-day {
        width: 84vw
    }
}

@media (max-width: 600px) {
    #camp-program {
        padding: 56px 0 48px
    }

    .cp-day {
        padding: 16px
    }

    .cp-day-title {
        font-size: 20px;
        line-height: 28px
    }

    .cp-slogan-text {
        font-size: 22px;
        line-height: 30px
    }

    .cp-hashtag {
        font-size: 20px
    }

    .cp-gallery-strip img {
        width: 260px;
        height: 160px
    }
}

/* ---------- Book Your Adventure ---------- */
#book-adventure {
    background: #fff;
    color: #272727;
    padding: 72px 0 64px;
    border-radius: 0;
    overflow: hidden;
}

#book-adventure .container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    border-radius: var(--radius);
    overflow: hidden;
}

.booking-form {
    display: flex;
    flex-direction: column;
}

.booking-card {
    width: 100%;
    padding: 48px;
    background: linear-gradient(0deg, #E7DCCE 0%, #E7DCCE 100%), #EEDCCB;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.booking-title {
    margin: 0;
    text-align: center;
    color: #272727;
    font-size: 28px;
    font-family: Geologica, sans-serif;
    font-weight: 600;
    line-height: 36.40px;
}

.booking-date {
    width: 100%;
    height: 64px;
    padding: 11px 20px;
    background: white;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.date-text {
    color: #272727;
    font-size: 24px;
    font-family: Geologica, sans-serif;
    font-weight: 500;
    line-height: 36px;
}

.date-icon {
    width: 40px;
    height: 40px;
    position: relative;
}

.date-icon::after {
    content: "";
    position: absolute;
    width: 28px;
    height: 14px;
    left: 6px;
    top: 13px;
    outline: 3px #272727 solid;
    outline-offset: -1.50px;
}

.booking-details {
    height: 135px;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.detail-item {
    flex: 1 1 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.detail-text {
    color: #272727;
    font-size: 28px;
    font-family: Geologica, sans-serif;
    font-weight: 600;
    line-height: 33.60px;
}

.detail-separator {
    width: 59px;
    height: 0px;
    transform: rotate(-90deg);
    transform-origin: top left;
    outline: 1px black solid;
    outline-offset: -0.50px;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-field {
    width: 100%;
}

.form-input {
    width: 100%;
    height: 64px;
    padding: 11px 20px;
    background: white;
    border: none;
    border-radius: 16px;
    color: #272727;
    font-size: 24px;
    font-family: Geologica, sans-serif;
    font-weight: 400;
    line-height: 36px;
    outline: none;
}

.form-input::placeholder {
    color: rgba(38.64, 38.64, 38.64, 0.30);
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.submit-btn {
    width: 100%;
    height: 64px;
    background: #272727;
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 28px;
    font-family: Geologica, sans-serif;
    font-weight: 500;
    line-height: 42px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit-btn:hover {
    background: #1a1a1a;
}

.booking-note {
    margin: 0;
    text-align: center;
    color: black;
    font-size: 18px;
    font-family: Geologica, sans-serif;
    font-weight: 300;
    line-height: 21.60px;
}

.booking-image {
    display: flex;
    align-items: stretch;
}

.booking-image img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 0
    }

    .booking-card {
        padding: 32px
    }
}

@media (max-width: 600px) {
    #book-adventure {
        padding: 56px 0 48px
    }

    .booking-card {
        padding: 24px
    }

    .booking-title {
        font-size: 24px;
        line-height: 32px
    }

    .date-text {
        font-size: 20px;
        line-height: 30px
    }

    .detail-text {
        font-size: 24px;
        line-height: 30px
    }

    .form-input {
        font-size: 20px;
        line-height: 30px
    }

    .submit-btn {
        font-size: 24px;
        line-height: 36px
    }

    .booking-note {
        font-size: 16px;
        line-height: 24px
    }
}

/* ---------- FAQ ---------- */
#faq {
    background: #fff;
    color: #272727;
    padding: 72px 0 64px;
    border-radius: 0;
    overflow: hidden;
}

#faq .container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px
}

.faq-title {
    margin: 0 0 48px 0;
    color: black;
    font-size: 60px;
    font-family: Geologica, sans-serif;
    font-weight: 700;
    line-height: 66px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    width: 100%;
}

.faq-question {
    width: 100%;
    padding: 24px 40px 24px 40px;
    background: #F4F4F4;
    border: none;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background: #E8E8E8;
}

.question-text {
    flex: 1 1 0;
    color: black;
    font-size: 28px;
    font-family: Geologica, sans-serif;
    font-weight: 600;
    line-height: 30.80px;
    text-align: left;
}

.faq-icon {
    width: 48px;
    height: 48px;
    position: relative;
    flex-shrink: 0;
}

.icon-circle {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.icon-horizontal {
    width: 22px;
    height: 0px;
    position: absolute;
    left: 13px;
    top: 26px;
    outline: 4px #2A2929 solid;
    outline-offset: -2px;
    transition: transform 0.3s ease;
}

.icon-vertical {
    width: 22px;
    height: 0px;
    position: absolute;
    left: 22px;
    top: 13px;
    transform: rotate(90deg);
    transform-origin: top left;
    outline: 4px #2A2929 solid;
    outline-offset: -2px;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .icon-vertical {
    transform: rotate(90deg) rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    padding: 24px 40px;
    color: black;
    font-size: 21px;
    font-family: Spectral, serif;
    font-weight: 500;
    line-height: 25.20px;
}

/* Responsive */
@media (max-width: 900px) {
    .faq-title {
        font-size: 48px;
        line-height: 1.1
    }

    .faq-question {
        padding: 20px 24px
    }

    .question-text {
        font-size: 24px;
        line-height: 28px
    }

    .faq-answer p {
        padding: 20px 24px;
        font-size: 19px;
        line-height: 23px
    }
}

@media (max-width: 600px) {
    #faq {
        padding: 56px 0 48px
    }

    .faq-title {
        font-size: 40px;
        line-height: 1.1;
        margin-bottom: 32px
    }

    .faq-question {
        padding: 16px 20px
    }

    .question-text {
        font-size: 20px;
        line-height: 24px
    }

    .faq-icon {
        width: 40px;
        height: 40px
    }

    .icon-circle {
        width: 40px;
        height: 40px
    }

    .icon-horizontal {
        width: 18px;
        left: 11px;
        top: 22px
    }

    .icon-vertical {
        width: 18px;
        left: 18px;
        top: 11px
    }

    .faq-answer p {
        padding: 16px 20px;
        font-size: 18px;
        line-height: 22px
    }
}

/* ---------- Newsletter Subscription ---------- */
#newsletter {
    background: #fff;
    color: #272727;
    padding: 72px 0 64px;
    border-radius: 0;
    overflow: hidden;
}

#newsletter .container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    border-radius: var(--radius);
    overflow: hidden;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.newsletter-card {
    width: 100%;
    height: 100%;
    padding: 47px 48px;
    background: linear-gradient(0deg, #AEBCCB 0%, #AEBCCB 100%), #EEDCCB;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.newsletter-title {
    margin: 0;
    width: 100%;
    height: 47px;
    color: #272727;
    font-size: 28px;
    font-family: Geologica, sans-serif;
    font-weight: 600;
    line-height: 36.40px;
}

.newsletter-description {
    margin: 0;
    width: 100%;
    color: #272727;
    font-size: 21px;
    font-family: Spectral, serif;
    font-weight: 500;
    line-height: 23.10px;
}

.newsletter-form-element {
    width: 100%;
    padding-top: 24px;
}

.newsletter-input-group {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
}

.newsletter-input {
    flex: 1 1 0;
    height: 64px;
    padding: 11px 20px;
    background: white;
    border: none;
    border-radius: 16px;
    color: #272727;
    font-size: 24px;
    font-family: Geologica, sans-serif;
    font-weight: 400;
    line-height: 36px;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(38.64, 38.64, 38.64, 0.30);
}

.newsletter-btn {
    width: 111px;
    height: 64px;
    background: #272727;
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 28px;
    font-family: Geologica, sans-serif;
    font-weight: 500;
    line-height: 42px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.newsletter-btn:hover {
    background: #1a1a1a;
}

.newsletter-image {
    display: flex;
    align-items: stretch;
}

.newsletter-image img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
    .newsletter-grid {
        grid-template-columns: 1fr;
        gap: 0
    }

    .newsletter-card {
        padding: 32px
    }
}

@media (max-width: 600px) {
    #newsletter {
        padding: 56px 0 48px
    }

    .newsletter-card {
        padding: 24px
    }

    .newsletter-title {
        font-size: 24px;
        line-height: 32px;
        height: auto
    }

    .newsletter-description {
        font-size: 19px;
        line-height: 25px
    }

    .newsletter-input {
        font-size: 20px;
        line-height: 30px
    }

    .newsletter-btn {
        font-size: 24px;
        line-height: 36px;
        width: 100px
    }
}

/* ---------- Footer ---------- */
#footer {
    width: 100%;
    position: relative;
    background: #2A2929;
    overflow: hidden;
    min-height: 600px;
}

.footer-content {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.footer-contact {
    position: absolute;
    left: 56px;
    top: 56px;
}

.contact-text {
    margin: 0;
    color: white;
    font-size: 18px;
    font-family: Geologica, sans-serif;
    font-weight: 300;
    line-height: 27px;
}

.footer-copyright {
    position: absolute;
    left: 50%;
    top: 56px;
    transform: translateX(-50%);
    opacity: 0.60;
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    color: white;
    font-size: 18px;
    font-family: Geologica, sans-serif;
    font-weight: 300;
    line-height: 19.80px;
}

.footer-language {
    position: absolute;
    left: 56px;
    bottom: 56px;
}

.footer-language p {
    margin: 0;
    color: white;
    font-size: 20px;
    font-family: Geologica, sans-serif;
    font-weight: 300;
    line-height: 30px;
}

.footer-social {
    position: absolute;
    right: 56px;
    top: 46px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.social-icon:hover {
    opacity: 0.8;
}

.footer-decoration {
    position: absolute;
    right: 0;
    top: 110px;
    width: 772.11px;
    height: 512px;
    transform: rotate(45deg);
    transform-origin: top left;
}

.decoration-circle {
    position: absolute;
    background: white;
}

.decoration-circle--large {
    width: 859.11px;
    height: 859.11px;
    left: 24.79px;
    top: 24.14px;
    opacity: 0.1;
}

.decoration-circle--small {
    width: 492.56px;
    height: 492.56px;
    left: 207.50px;
    top: 207.33px;
    opacity: 0.2;
}

/* Responsive */
@media (max-width: 1200px) {
    .footer-decoration {
        display: none
    }

    .footer-social {
        right: 20px
    }

    .footer-contact {
        left: 20px
    }

    .footer-language {
        left: 20px
    }
}

@media (max-width: 900px) {
    .footer-copyright {
        left: 20px;
        transform: none;
        text-align: left
    }

    .footer-social {
        position: static;
        margin: 20px auto;
        justify-content: center
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        gap: 20px
    }

    .footer-contact,
    .footer-copyright,
    .footer-language {
        position: static
    }
}

@media (max-width: 600px) {
    .contact-text {
        font-size: 16px;
        line-height: 24px
    }

    .footer-copyright p {
        font-size: 16px;
        line-height: 22px
    }

    .footer-language p {
        font-size: 18px;
        line-height: 26px
    }

    .social-icon {
        width: 36px;
        height: 36px
    }
}

/* =========================================================
   COMPREHENSIVE MOBILE RESPONSIVENESS REFACTOR
   ========================================================= */

/* Mobile-first approach for screens 480px and below */
@media (max-width: 480px) {

    /* Global mobile adjustments */
    .container {
        padding: 0 16px;
    }

    /* Hero section mobile optimization */
    #hero {
        min-height: 100vh;
        padding: 20px 0 100px;
    }

    .hero-inner {
        padding: 0 16px;
        gap: 20px;
    }

    .brand {
        position: absolute;
        top: 16px;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 0;
        font-size: 20px;
        line-height: 24px;
        text-align: center;
        z-index: 10;
    }

    .title-stack {
        text-align: center;
        gap: 8px;
    }

    .title-stack .t1 {
        font-size: 36px;
        line-height: 40px;
    }

    .title-stack .t2 {
        font-size: 24px;
        line-height: 28px;
    }

    .title-stack .t3 {
        font-size: 18px;
        line-height: 22px;
    }

    .infobar {
        padding: 12px 20px;
        font-size: 14px;
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
    }

    .infobar .sep {
        width: 1px;
        height: 16px;
        transform: none;
    }

    .infobar-subtext {
        font-size: 12px;
        margin-top: 2px;
    }

    .hero-countdown {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 10;
    }

    .hero-countdown .bar {
        padding: 10px 12px;
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .countdown-note {
        bottom: 60px;
        left: 16px;
        font-size: 10px;
    }

    .count-text {
        font-size: 11px;
        line-height: 13px;
        text-align: center;
    }

    .days-wrap {
        gap: 6px;
    }

    .days-box {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .days-label {
        font-size: 12px;
    }

    /* What is Fethiye Cycling mobile */
    #what-is {
        padding: 40px 0;
    }

    .wi-title {
        font-size: 32px;
        line-height: 36px;
    }

    .wi-subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    .wi-grid {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 24px;
    }

    .wi-card {
        padding: 24px;
        gap: 16px;
    }

    .wi-card-title {
        font-size: 24px;
        line-height: 28px;
    }

    .wi-card-body p {
        font-size: 16px;
        line-height: 24px;
    }

    .wi-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin: 24px 0;
    }

    .wi-gallery {
        margin-top: 12px;
    }

    .wi-strip {
        gap: 6px;
    }

    .wi-strip img {
        width: 200px;
        height: 120px;
    }

    /* What's cool section mobile */
    #whats-cool {
        padding: 40px 0;
    }

    .wc-title {
        font-size: 32px;
        line-height: 36px;
    }

    .wc-intro {
        font-size: 16px;
        line-height: 24px;
    }

    .wc-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .wc-card-title {
        font-size: 20px;
        line-height: 24px;
    }

    .wc-card-text {
        font-size: 14px;
        line-height: 20px;
    }

    /* Camp Program mobile */
    #camp-program {
        padding: 40px 0;
    }

    .cp-title {
        font-size: 32px;
        line-height: 36px;
    }

    .cp-strip {
        gap: 12px;
        padding-bottom: 6px;
    }

    .cp-day {
        width: 280px;
        padding: 16px;
    }

    .cp-day-title {
        font-size: 18px;
        line-height: 22px;
    }

    .cp-map {
        margin-top: 8px;
    }

    .cp-slogan-text {
        font-size: 18px;
        line-height: 24px;
    }

    .cp-hashtag {
        font-size: 16px;
        line-height: 20px;
    }

    .cp-gallery-strip {
        gap: 6px;
    }

    .cp-gallery-strip img {
        width: 200px;
        height: 120px;
    }

    /* Book Adventure mobile */
    #book-adventure {
        padding: 40px 0;
    }

    .booking-card {
        padding: 24px;
        gap: 16px;
    }

    .booking-title {
        font-size: 24px;
        line-height: 28px;
    }

    .booking-date {
        height: 48px;
        padding: 8px 16px;
    }

    .date-text {
        font-size: 18px;
        line-height: 24px;
    }

    .booking-details {
        height: 80px;
        padding: 0 16px;
    }

    .detail-text {
        font-size: 20px;
        line-height: 24px;
    }

    .form-input {
        height: 48px;
        padding: 8px 16px;
        font-size: 16px;
        line-height: 24px;
    }

    .submit-btn {
        height: 48px;
        font-size: 20px;
        line-height: 28px;
    }

    .booking-note {
        font-size: 14px;
        line-height: 20px;
    }

    /* FAQ mobile */
    #faq {
        padding: 40px 0;
    }

    .faq-title {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 24px;
    }

    .faq-question {
        padding: 16px 20px;
    }

    .question-text {
        font-size: 18px;
        line-height: 22px;
    }

    .faq-icon {
        width: 36px;
        height: 36px;
    }

    .icon-circle {
        width: 36px;
        height: 36px;
    }

    .icon-horizontal {
        width: 16px;
        left: 10px;
        top: 20px;
    }

    .icon-vertical {
        width: 16px;
        left: 16px;
        top: 10px;
    }

    .faq-answer p {
        padding: 16px 20px;
        font-size: 16px;
        line-height: 22px;
    }

    /* Newsletter mobile */
    #newsletter {
        padding: 40px 0;
    }

    .newsletter-card {
        padding: 24px;
    }

    .newsletter-title {
        font-size: 24px;
        line-height: 28px;
        height: auto;
    }

    .newsletter-description {
        font-size: 16px;
        line-height: 22px;
    }

    .newsletter-input {
        height: 48px;
        padding: 8px 16px;
        font-size: 16px;
        line-height: 24px;
    }

    .newsletter-btn {
        height: 48px;
        font-size: 18px;
        line-height: 24px;
    }

    /* Footer mobile */
    #footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        padding: 0 16px;
        gap: 24px;
    }

    .contact-text {
        font-size: 14px;
        line-height: 20px;
    }

    .footer-copyright p {
        font-size: 12px;
        line-height: 16px;
    }

    .footer-language p {
        font-size: 16px;
        line-height: 20px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
    }

    .decoration-circle--large {
        width: 200px;
        height: 200px;
    }

    .decoration-circle--small {
        width: 100px;
        height: 100px;
    }
}

/* =========================================================
   MOBILE SCROLLING FIX
   ========================================================= */

/* Ensure mobile scrolling works */
@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        touch-action: pan-y !important;
    }

    section {
        touch-action: pan-y !important;
    }

    /* Prevent countdown from being scrollable */
    .hero-countdown {
        overflow: hidden !important;
        touch-action: none !important;
    }

    .hero-countdown .bar {
        overflow: hidden !important;
        touch-action: none !important;
    }
}