:root {
    --bordo: #7d1827;
    --koyu-bordo: #55101a;
    --acik-bordo: #a45a65;
    --krem: #fff9f3;
    --acik-krem: #fffdf9;
    --bej: #f2dfd2;
    --beyaz: #ffffff;
    --metin: #332829;
    --gri-metin: #746568;
    --kenarlik: rgba(125, 24, 39, 0.12);
    --golge: 0 24px 55px rgba(85, 16, 26, 0.13);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background-color: var(--acik-krem);
    color: var(--metin);
    font-family: Arial, Helvetica, sans-serif;
}

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

a {
    color: inherit;
}

/* ÜST MENÜ */

.site-header {
    position: relative;
    z-index: 100;
    min-height: 95px;
    padding: 12px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    background-color: var(--beyaz);
    border-bottom: 1px solid var(--kenarlik);
}

.logo-link {
    display: block;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-image {
    width: 80px;
    height: 72px;
    object-fit: contain;
}

.main-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.main-menu a {
    position: relative;
    padding: 12px 0;
    color: var(--metin);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.main-menu a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 2px;
    border-radius: 10px;
    background-color: var(--bordo);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.main-menu a:hover {
    color: var(--bordo);
}

.main-menu a:hover::after {
    transform: scaleX(1);
}

.header-button {
    padding: 16px 22px;
    border-radius: 10px;
    background-color: var(--bordo);
    color: var(--beyaz);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.header-button:hover {
    background-color: var(--koyu-bordo);
    transform: translateY(-2px);
}

/* ANA EKRAN */

.hero {
    position: relative;
    min-height: 720px;
    padding: 78px 6%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(460px, 0.95fr);
    align-items: center;
    gap: 65px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 88% 20%,
            rgba(125, 24, 39, 0.1),
            transparent 28%
        ),
        linear-gradient(
            125deg,
            #fffdf9 0%,
            #fbf1e9 55%,
            #f1dbcd 100%
        );
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 680px;
}

.hero-label {
    margin-bottom: 20px;
    color: var(--bordo);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.5px;
    line-height: 1.5;
    text-transform: uppercase;
}

.hero h1 {
    margin-bottom: 28px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(52px, 5vw, 76px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -2px;
}

.hero h1 span {
    display: block;
    color: var(--bordo);
}

.hero-description {
    max-width: 600px;
    margin-bottom: 36px;
    color: var(--gri-metin);
    font-size: 18px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.button {
    min-height: 56px;
    padding: 16px 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.primary-button {
    background-color: var(--bordo);
    color: var(--beyaz);
    box-shadow: 0 12px 28px rgba(125, 24, 39, 0.22);
}

.primary-button:hover {
    background-color: var(--koyu-bordo);
}

.secondary-button {
    border: 1px solid var(--bordo);
    background-color: rgba(255, 255, 255, 0.42);
    color: var(--bordo);
}

.secondary-button:hover {
    background-color: var(--beyaz);
}

/* TELEFON GÖRSELLERİ */

.hero-visual {
    position: relative;
    min-height: 535px;
}

.visual-circle {
    position: absolute;
    top: 45px;
    right: 5px;
    width: 465px;
    height: 465px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.48);
    box-shadow: 0 35px 80px rgba(85, 16, 26, 0.1);
}

.phone-box {
    position: absolute;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--kenarlik);
    background-color: rgba(255, 255, 255, 0.92);
    box-shadow: var(--golge);
}

.phone-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-type {
    position: absolute;
    top: 17px;
    left: 17px;
    z-index: 3;
    padding: 9px 15px;
    border-radius: 30px;
    background-color: var(--bordo);
    color: var(--beyaz);
    font-size: 13px;
    font-weight: 700;
}

.video-phone-box {
    top: 10px;
    right: 0;
    width: 345px;
    height: 355px;
    padding: 30px;
    border-radius: 36px;
    transform: rotate(2deg);
}

.video-phone-box img {
    object-fit: cover;
}

.audio-phone-box {
    right: 230px;
    bottom: 5px;
    width: 290px;
    height: 300px;
    padding: 28px;
    border-radius: 34px;
    transform: rotate(-3deg);
}

.audio-phone-box img {
    object-fit: cover;
}

/* TELEFONLAR BAŞLANGIÇ BÖLÜMÜ */

.phone-intro {
    padding: 100px 8%;
    background-color: var(--beyaz);
    text-align: center;
}

.section-label {
    margin-bottom: 16px;
    color: var(--bordo);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.phone-intro h2,
.placeholder-section h2 {
    margin-bottom: 20px;
    color: var(--koyu-bordo);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 50px);
    font-weight: 400;
}

.section-description {
    max-width: 720px;
    margin: 0 auto;
    color: var(--gri-metin);
    font-size: 18px;
    line-height: 1.75;
}

/* GEÇİCİ ALT BÖLÜMLER */

.placeholder-section {
    min-height: 420px;
    padding: 100px 8%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--krem);
    text-align: center;
}

.placeholder-section > p:last-child {
    max-width: 680px;
    color: var(--gri-metin);
    font-size: 17px;
    line-height: 1.7;
}

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

/* ALT BİLGİ */

.site-footer {
    padding: 45px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background-color: var(--koyu-bordo);
    color: var(--beyaz);
}

.site-footer strong {
    display: block;
    margin-bottom: 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.6;
}

/* TABLET */

@media (max-width: 1100px) {
    .main-menu {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-description {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
        max-width: 620px;
        margin: 0 auto;
    }
}

/* TELEFON EKRANI */

@media (max-width: 650px) {
    .site-header {
        min-height: 80px;
        padding: 8px 5%;
    }

    .logo-image {
        width: 65px;
        height: 60px;
    }

    .header-button {
        padding: 12px 14px;
        font-size: 12px;
    }

    .hero {
        min-height: auto;
        padding: 55px 6% 70px;
    }

    .hero h1 {
        font-size: 43px;
        letter-spacing: -1px;
    }

    .hero h1 span {
        display: inline;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-visual {
        min-height: 475px;
    }

    .visual-circle {
        top: 45px;
        right: 0;
        width: 315px;
        height: 315px;
    }

    .video-phone-box {
        top: 15px;
        right: 0;
        width: 255px;
        height: 265px;
        padding: 20px;
    }

    .audio-phone-box {
        right: auto;
        bottom: 10px;
        left: 0;
        width: 225px;
        height: 235px;
        padding: 18px;
    }

    .phone-intro,
    .placeholder-section {
        padding: 75px 6%;
    }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* NASIL ÇALIŞIR BÖLÜMÜ */

.how-it-works {
    padding: 100px 8%;
    background-color: var(--krem);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 18px;
    color: var(--koyu-bordo);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 50px);
    font-weight: 400;
}

.section-heading > p:last-child {
    color: var(--gri-metin);
    font-size: 17px;
    line-height: 1.7;
}

.steps {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.step-card {
    position: relative;
    min-height: 315px;
    padding: 48px 30px 35px;
    border: 1px solid var(--kenarlik);
    border-radius: 24px;
    background-color: var(--beyaz);
    box-shadow: 0 18px 45px rgba(85, 16, 26, 0.08);
    text-align: center;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.step-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 55px rgba(85, 16, 26, 0.13);
}

.step-number {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--bordo);
    color: var(--beyaz);
    font-size: 14px;
    font-weight: 800;
}

.step-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(125, 24, 39, 0.16);
    border-radius: 50%;
    background-color: var(--acik-krem);
    color: var(--bordo);
    font-size: 34px;
}

.step-card h3 {
    margin-bottom: 15px;
    color: var(--koyu-bordo);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
}

.step-card p {
    color: var(--gri-metin);
    font-size: 15px;
    line-height: 1.7;
}

/* NASIL ÇALIŞIR - TABLET */

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

    .step-card {
        min-height: auto;
    }
}

/* NASIL ÇALIŞIR - TELEFON */

@media (max-width: 650px) {
    .how-it-works {
        padding: 75px 6%;
    }

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

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

    .step-card {
        padding: 45px 24px 30px;
    }
}
/* TELEFONLARIMIZ BÖLÜMÜ */

.phones-section {
    padding: 100px 7%;
    background-color: var(--beyaz);
}

.phones-heading {
    max-width: 750px;
    margin: 0 auto 55px;
    text-align: center;
}

.phones-heading h2 {
    margin-bottom: 18px;
    color: var(--koyu-bordo);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 50px);
    font-weight: 400;
}

.phones-heading > p:last-child {
    color: var(--gri-metin);
    font-size: 17px;
    line-height: 1.7;
}

.phone-products {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}

.phone-product-card {
    overflow: hidden;
    border: 1px solid var(--kenarlik);
    border-radius: 28px;
    background-color: var(--acik-krem);
    box-shadow: 0 18px 45px rgba(85, 16, 26, 0.08);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.phone-product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 58px rgba(85, 16, 26, 0.14);
}

.phone-product-image {
    position: relative;
    height: 390px;
    padding: 20px;
    overflow: hidden;
    background-color: var(--bej);
}

.phone-product-image img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    object-fit: cover;
}

.product-label {
    position: absolute;
    top: 36px;
    left: 36px;
    z-index: 2;
    padding: 9px 16px;
    border-radius: 30px;
    background-color: var(--bordo);
    color: var(--beyaz);
    font-size: 13px;
    font-weight: 700;
}

.phone-product-content {
    padding: 34px;
}

.product-small-title {
    margin-bottom: 10px;
    color: var(--bordo);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.phone-product-content h3 {
    margin-bottom: 17px;
    color: var(--koyu-bordo);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    font-weight: 400;
}

.product-description {
    margin-bottom: 24px;
    color: var(--gri-metin);
    font-size: 15px;
    line-height: 1.75;
}

.product-features {
    margin-bottom: 28px;
    list-style: none;
}

.product-features li {
    position: relative;
    margin-bottom: 13px;
    padding-left: 27px;
    color: var(--metin);
    font-size: 14px;
    line-height: 1.5;
}

.product-features li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--bordo);
    font-weight: 800;
}

.product-button {
    min-height: 49px;
    padding: 14px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: var(--bordo);
    color: var(--beyaz);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.product-button:hover {
    background-color: var(--koyu-bordo);
    transform: translateY(-2px);
}

/* TELEFONLARIMIZ - TABLET */

@media (max-width: 900px) {
    .phone-products {
        max-width: 650px;
        grid-template-columns: 1fr;
    }

    .phone-product-image {
        height: 440px;
    }
}

/* TELEFONLARIMIZ - TELEFON */

@media (max-width: 650px) {
    .phones-section {
        padding: 75px 6%;
    }

    .phones-heading {
        margin-bottom: 40px;
    }

    .phones-heading h2 {
        font-size: 35px;
    }

    .phone-product-image {
        height: 300px;
        padding: 14px;
    }

    .product-label {
        top: 27px;
        left: 27px;
    }

    .phone-product-content {
        padding: 27px 23px;
    }

    .phone-product-content h3 {
        font-size: 27px;
    }

    .product-button {
        width: 100%;
    }
}
/* KULLANIM ALANLARI BÖLÜMÜ */

.use-cases-section {
    padding: 100px 7%;
    background:
        linear-gradient(
            135deg,
            var(--krem) 0%,
            #f7e9df 100%
        );
}

.use-cases-heading {
    max-width: 760px;
    margin: 0 auto 58px;
    text-align: center;
}

.use-cases-heading h2 {
    margin-bottom: 18px;
    color: var(--koyu-bordo);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 50px);
    font-weight: 400;
}

.use-cases-heading > p:last-child {
    color: var(--gri-metin);
    font-size: 17px;
    line-height: 1.75;
}

.use-cases-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.use-case-card {
    min-height: 290px;
    padding: 34px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--kenarlik);
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.88);
    box-shadow: 0 16px 38px rgba(85, 16, 26, 0.07);
    text-align: center;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.use-case-card:hover {
    transform: translateY(-7px);
    background-color: var(--beyaz);
    box-shadow: 0 24px 50px rgba(85, 16, 26, 0.13);
}

.use-case-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(125, 24, 39, 0.15);
    border-radius: 50%;
    background-color: var(--acik-krem);
    color: var(--bordo);
    font-size: 30px;
}

.use-case-card h3 {
    margin-bottom: 14px;
    color: var(--koyu-bordo);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.25;
}

.use-case-card p {
    color: var(--gri-metin);
    font-size: 14px;
    line-height: 1.7;
}

/* KULLANIM ALANLARI - KÜÇÜK BİLGİSAYAR */

@media (max-width: 1150px) {
    .use-cases-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* KULLANIM ALANLARI - TABLET */

@media (max-width: 800px) {
    .use-cases-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* KULLANIM ALANLARI - TELEFON */

@media (max-width: 550px) {
    .use-cases-section {
        padding: 75px 6%;
    }

    .use-cases-heading {
        margin-bottom: 40px;
    }

    .use-cases-heading h2 {
        font-size: 35px;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .use-case-card {
        min-height: auto;
        padding: 30px 24px;
    }
}
/* GALERİ BÖLÜMÜ */

.gallery-section {
    padding: 100px 7%;
    background-color: var(--beyaz);
}

.gallery-heading {
    max-width: 760px;
    margin: 0 auto 58px;
    text-align: center;
}

.gallery-heading h2 {
    margin-bottom: 18px;
    color: var(--koyu-bordo);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 50px);
    font-weight: 400;
}

.gallery-heading > p:last-child {
    color: var(--gri-metin);
    font-size: 17px;
    line-height: 1.75;
}

.gallery-grid {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 300px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--kenarlik);
    border-radius: 22px;
    background-color: var(--bej);
    box-shadow: 0 16px 38px rgba(85, 16, 26, 0.08);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-large {
    grid-column: span 2;
}

.gallery-item figcaption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    padding: 14px 17px;
    border-radius: 12px;
    background-color: rgba(85, 16, 26, 0.82);
    color: var(--beyaz);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    line-height: 1.4;
    backdrop-filter: blur(6px);
}

.gallery-video {
    background-color: var(--koyu-bordo);
}

.gallery-video video {
    background-color: #16070a;
}

.video-label {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    padding: 9px 15px;
    border-radius: 30px;
    background-color: var(--bordo);
    color: var(--beyaz);
    font-size: 12px;
    font-weight: 700;
    pointer-events: none;
}

/* GALERİ - TABLET */

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 290px;
    }

    .gallery-large {
        grid-column: span 2;
    }
}

/* GALERİ - TELEFON */

@media (max-width: 600px) {
    .gallery-section {
        padding: 75px 6%;
    }

    .gallery-heading {
        margin-bottom: 40px;
    }

    .gallery-heading h2 {
        font-size: 35px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 285px;
        gap: 16px;
    }

    .gallery-large {
        grid-column: span 1;
    }

    .gallery-item figcaption {
        right: 12px;
        bottom: 12px;
        left: 12px;
        font-size: 15px;
    }
}
/* KİRALAMA VE TARİH UYGUNLUĞU FORMU */

.booking-section {
    padding: 105px 7%;
    background:
        linear-gradient(
            135deg,
            #f8eae0 0%,
            var(--krem) 55%,
            #f2ddd0 100%
        );
}

.booking-wrapper {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(500px, 1.2fr);
    align-items: start;
    gap: 65px;
}

.booking-info {
    padding-top: 22px;
}

.booking-info h2 {
    margin-bottom: 24px;
    color: var(--koyu-bordo);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 4vw, 54px);
    font-weight: 400;
    line-height: 1.1;
}

.booking-description {
    margin-bottom: 38px;
    color: var(--gri-metin);
    font-size: 17px;
    line-height: 1.8;
}

.booking-benefits {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.booking-benefit {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    align-items: start;
}

.booking-benefit > span {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--bordo);
    color: var(--beyaz);
    font-size: 16px;
    font-weight: 800;
}

.booking-benefit strong {
    display: block;
    margin-bottom: 6px;
    color: var(--koyu-bordo);
    font-size: 16px;
}

.booking-benefit p {
    color: var(--gri-metin);
    font-size: 14px;
    line-height: 1.65;
}

/* FORM KUTUSU */

.booking-form {
    padding: 42px;
    border: 1px solid var(--kenarlik);
    border-radius: 28px;
    background-color: rgba(255, 255, 255, 0.94);
    box-shadow:
        0 25px 65px
        rgba(85, 16, 26, 0.12);
}

.form-heading {
    margin-bottom: 32px;
}

.form-heading h3 {
    margin-bottom: 8px;
    color: var(--koyu-bordo);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    font-weight: 400;
}

.form-heading p {
    color: var(--gri-metin);
    font-size: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 21px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.form-group label {
    color: var(--metin);
    font-size: 13px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid
        rgba(125, 24, 39, 0.16);
    border-radius: 10px;
    outline: none;
    background-color: var(--acik-krem);
    color: var(--metin);
    font: inherit;
    font-size: 14px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.form-group input,
.form-group select {
    height: 51px;
    padding: 0 15px;
}

.form-group textarea {
    min-height: 125px;
    padding: 15px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aa9c9e;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--bordo);
    background-color: var(--beyaz);
    box-shadow:
        0 0 0 4px
        rgba(125, 24, 39, 0.08);
}

.full-width {
    grid-column: 1 / -1;
}

.consent-area {
    margin-top: 24px;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: var(--gri-metin);
    font-size: 12px;
    line-height: 1.55;
    cursor: pointer;
}

.consent-area input {
    width: 17px;
    height: 17px;
    margin-top: 1px;
    accent-color: var(--bordo);
}

.booking-submit {
    width: 100%;
    min-height: 54px;
    margin-top: 25px;
    border: 0;
    border-radius: 10px;
    background-color: var(--bordo);
    color: var(--beyaz);
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.booking-submit:hover {
    background-color: var(--koyu-bordo);
    box-shadow:
        0 12px 26px
        rgba(85, 16, 26, 0.2);
    transform: translateY(-2px);
}

.form-note {
    margin-top: 13px;
    color: var(--gri-metin);
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
}

/* KİRALAMA FORMU - TABLET */

@media (max-width: 1000px) {
    .booking-wrapper {
        max-width: 720px;
        grid-template-columns: 1fr;
    }

    .booking-info {
        text-align: center;
    }

    .booking-benefits {
        max-width: 580px;
        margin: 0 auto;
        text-align: left;
    }
}

/* KİRALAMA FORMU - TELEFON */

@media (max-width: 650px) {
    .booking-section {
        padding: 75px 6%;
    }

    .booking-wrapper {
        gap: 45px;
    }

    .booking-info h2 {
        font-size: 38px;
    }

    .booking-form {
        padding: 28px 20px;
        border-radius: 22px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: auto;
    }

    .form-heading h3 {
        font-size: 27px;
    }
}
/* FORM BAŞARI VE HATA MESAJLARI */

.form-alert {
    margin-bottom: 25px;
    padding: 17px 19px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.form-alert-success {
    border: 1px solid #a9d5b4;
    background-color: #effaf2;
    color: #226232;
}

.form-alert-error {
    border: 1px solid #e1a9af;
    background-color: #fff0f1;
    color: #7d1827;
}

.form-alert-error strong {
    display: block;
    margin-bottom: 9px;
}

.form-alert-error ul {
    margin: 0;
    padding-left: 20px;
}

.form-alert-error li {
    margin-bottom: 4px;
}
/* ======================================================
   İLETİŞİM VE FOOTER
====================================================== */

.contact-footer {
    padding: 75px 7% 25px;
    background-color: var(--koyu-bordo);
    color: var(--beyaz);
}

.footer-main {
    max-width: 1220px;
    margin: 0 auto;
    padding-bottom: 48px;
    display: grid;
    grid-template-columns:
        minmax(280px, 1.4fr)
        minmax(220px, 0.8fr)
        minmax(220px, 0.8fr);
    gap: 60px;
}

.footer-brand-area {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.footer-logo {
    width: 82px;
    height: 82px;
    padding: 6px;
    flex-shrink: 0;
    border-radius: 15px;
    background-color: var(--beyaz);
    object-fit: contain;
}

.footer-brand-area h2 {
    margin: 3px 0 13px;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 29px;
    font-weight: 400;
}

.footer-brand-area p {
    max-width: 410px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.75;
}

.footer-column h3 {
    margin: 0 0 21px;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 20px;
    font-weight: 400;
}

.footer-link {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
    word-break: break-word;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-link span {
    width: 31px;
    height: 31px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: var(--beyaz);
    font-size: 13px;
    font-weight: 800;
}

.footer-link:hover {
    color: var(--beyaz);
    transform: translateX(3px);
}

.footer-info-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.footer-info-item span {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--beyaz);
    font-size: 11px;
    font-weight: 800;
}

.footer-info-item p {
    margin: 2px 0 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.55;
}

.footer-bottom {
    max-width: 1220px;
    margin: 0 auto;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--beyaz);
}

/* FOOTER - TABLET */

@media (max-width: 900px) {
    .footer-main {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .footer-brand-area {
        grid-column: 1 / -1;
    }
}

/* FOOTER - TELEFON */

@media (max-width: 600px) {
    .contact-footer {
        padding: 60px 6% 24px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-brand-area {
        grid-column: auto;
        flex-direction: column;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}
/* ======================================================
   MOBİL MENÜ
====================================================== */

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.menu-toggle {
    width: 46px;
    height: 46px;
    padding: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--kenarlik);
    border-radius: 10px;
    background-color: var(--beyaz);
    cursor: pointer;
}

.menu-toggle span {
    width: 21px;
    height: 2px;
    display: block;
    border-radius: 10px;
    background-color: var(--bordo);
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-cta {
    display: none;
}

/* TABLET VE TELEFON MENÜSÜ */

@media (max-width: 1100px) {
    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .header-button {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .main-menu {
        position: absolute;
        top: calc(100% + 1px);
        right: 5%;
        left: 5%;
        padding: 18px;
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 4px;
        border: 1px solid var(--kenarlik);
        border-radius: 0 0 18px 18px;
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: 0 22px 45px rgba(85, 16, 26, 0.14);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px);
        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;
    }

    .main-menu.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .main-menu a {
        width: 100%;
        padding: 14px 15px;
        border-radius: 9px;
        font-size: 14px;
    }

    .main-menu a:hover {
        background-color: var(--krem);
    }

    .main-menu a::after {
        display: none;
    }

    .mobile-menu-cta {
        margin-top: 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: var(--bordo);
        color: var(--beyaz) !important;
        text-align: center;
    }

    .mobile-menu-cta:hover {
        background-color: var(--koyu-bordo) !important;
    }
}

/* KÜÇÜK TELEFON */

@media (max-width: 500px) {
    .site-header {
        padding-right: 5%;
        padding-left: 5%;
    }

    .logo-image {
        width: 64px;
        height: 58px;
    }

    .menu-toggle {
        width: 43px;
        height: 43px;
    }

    .main-menu {
        right: 4%;
        left: 4%;
    }
}
/* FORM BİLGİLENDİRME NOTU */

.form-information-note {
    max-width: 680px;
    margin: 15px auto 0;
    color: var(--gri-metin);
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
}