:root {
    --primary: #D00068;
    --primary-light: #FFE5F0;
    --primary-dark: #A80054;
    --dark: #2C2C2C;
    --light: #FFF5FA;
    --white: #FFFFFF;
    --muted: #6C6C6C;
    --border: #FFD6E8;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

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

/* NAV */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links a {
    margin-left: 0;
    color: var(--dark);
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 0;
    position: relative;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

.nav-links .btn-primary {
    color: var(--white) !important;
}

.nav-links .btn-primary:hover {
    color: var(--white) !important;
}

/* BUTTONS */
.btn {
    padding: 12px 28px;
    border-radius: 3px;
    font-weight: 600;
    display: inline-block;
    transition: 0.2s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: #A80054;
    border-color: #A80054;
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.btn-dark:hover {
    opacity: 0.9;
}


/* HERO */
.hero {
    min-height: 85vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1596386461350-326bf77c17cd?w=1600') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 8%;
}

.hero__content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin: 10px 0;
}

.hero__content .lead {
    font-size: 1.2rem;
    max-width: 640px;
    margin: 0 auto 20px auto;
}

.hero__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__image {
    margin-top: 28px;
}

.hero__image img {
    display: block;
    width: min(720px, 100%);
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.eyebrow {
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
}

.hero .eyebrow {
    color: rgba(255, 255, 255, 0.85);
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin: 0 0 10px 0;
}

.section-subtitle {
    color: var(--muted);
    margin: 0 auto 30px auto;
    max-width: 760px;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid {
    display: grid;
    gap: 24px;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.feature-card {
    background: var(--white);
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.section-highlight {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.contact-hero {
    background: var(--light);
    border-bottom: 1px solid var(--border);
    text-align: left;
    padding: 48px 0 18px;
}

.contact-hero .section-subtitle {
    margin: 0;
    max-width: 720px;
}

.contact-info {
    padding-top: 20px;
}

.page-contact .section {
    padding: 40px 0;
}

.page-contact .contact-hero {
    padding: 32px 0 10px;
}

.page-contact .contact-info {
    padding-top: 12px;
}

.page-contact .contact-details {
    padding: 18px;
}

.page-contact .contact-map-card iframe {
    height: 320px;
}

.contact-layout {
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.2fr);
}

.contact-details {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.contact-list {
    margin: 0;
    display: grid;
    gap: 16px;
}

.contact-text {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.contact-actions {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-map-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.contact-map-card .section-title {
    margin-top: 0;
    margin-bottom: 16px;
}

.contact-map-card .map-frame {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.contact-directions {
    display: inline-block;
    margin-top: 18px;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

.page-contact .contact-actions .btn.btn-dark,
.page-contact .contact-directions.btn.btn-dark {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.page-contact .contact-actions .btn.btn-dark:hover,
.page-contact .contact-directions.btn.btn-dark:hover {
    background: #A80054;
    border-color: #A80054;
    color: var(--white);
}


.split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: center;
}

.cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.link {
    color: var(--primary);
    font-weight: 600;
    transition: color 0.2s ease;
}

.link:hover {
    color: var(--primary-dark);
}

.highlight-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.highlight-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-card li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.highlight-card li:last-child {
    border-bottom: none;
}

.model-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.model-card__img {
    width: 100%;
    padding-top: 65%;
    background-size: cover;
    background-position: center;
}

.model-card__body {
    padding: 20px;
}

.center {
    text-align: center;
    margin-top: 24px;
}

.section-cta {
    background: linear-gradient(135deg, var(--primary-light), var(--light));
    border-top: 2px solid var(--border);
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer {
    text-align: center;
    padding: 40px;
    background: var(--dark);
    color: var(--white);
}

/* FORM */
input,
select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: var(--white);
}

.form-wrapper {
    background: #f6f4f1;
    padding: 60px 16px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.form-copy {
    max-width: 720px;
    text-align: center;
    line-height: 1.7;
    color: var(--dark);
}

.form-copy h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin: 10px 0 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.form-copy p {
    margin: 6px auto;
    line-height: 1.25;
}

.kvkk-link {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: underline;
}

.intro-note {
    font-weight: 600;
    color: var(--primary);
}

.subtext {
    font-size: 0.95rem;
    color: var(--muted);
}

.form-card {
    background: #fff;
    padding: 32px 36px 30px;
    border-radius: 14px;
    width: 100%;
    max-width: 640px;
    position: relative;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
    border: 1px solid #f2e6dc;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.form-header {
    text-align: left;
    margin-bottom: 24px;
}

.form-header h2 {
    margin: 0;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark);
}

.form-header p {
    margin: 8px 0 0 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.randevu-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #3f2c25;
}

.hint-text {
    font-size: 0.85rem;
    color: #6c6c6c;
    margin: 6px 0 0;
}

.hint-text.kvkk-hint {
    margin-top: 10px;
}

.form-group input,
.form-group select {
    border-radius: 6px;
    border: 1px solid #d7d7d7;
    padding: 12px 14px;
    font-size: 0.95rem;
    background: #faf9f8;
}

.kvkk-row {
    border-radius: 10px;
    border: 1px solid rgba(208, 0, 104, 0.35);
    padding: 18px;
    background: #fff6f9;
}

.kvkk-label {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kvkk-label input {
    width: 22px;
    height: 22px;
}

.kvkk-text {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.kvkk-text strong {
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-block;
}


.form-submit {
    width: 100%;
    margin-top: 6px;
    font-size: 1rem;
    padding: 14px;
    background: var(--dark);
    color: #fff;
    border-radius: 8px;
    border: none;
    letter-spacing: 1px;
}

.form-card h1 {
    font-size: 1.7rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 6px;
}

.form-card .eyebrow {
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 8px;
}

@media (max-width: 700px) {
    .form-card {
        padding: 28px;
    }

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

    .form-copy h1 {
        white-space: normal;
        overflow: visible;
        text-overflow: initial;
        font-size: 1.8rem;
        line-height: 1.25;
    }

    .form-header h2 {
        font-size: 1.4rem;
    }

    .form-copy {
        text-align: left;
    }

    .kvkk-label {
        align-items: flex-start;
    }

    .kvkk-label input {
        margin-top: 3px;
    }
}

.kvkk-panel {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1200;
}

.kvkk-panel-collapsed {
    display: none;
}

.kvkk-panel-box {
    background: #fff;
    width: min(900px, 100%);
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow: hidden;
}

.kvkk-panel-header {
    padding: 20px 28px 12px;
    border-bottom: 1px solid #f0e4d7;
}

.kvkk-panel-header h3 {
    margin: 0;
    font-size: 1.4rem;
}

.kvkk-scroll-note {
    margin: 8px 0 0;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.kvkk-panel-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px 28px;
    line-height: 1.6;
    color: var(--dark);
}

.kvkk-panel-content h4 {
    margin-bottom: 6px;
    margin-top: 16px;
    font-size: 1rem;
}

.kvkk-panel-content ul {
    margin-left: 20px;
}

.kvkk-panel-actions {
    border-top: 1px solid #f0e4d7;
    background: #f9f7f2;
    padding: 12px 28px;
}

.kvkk-panel-close {
    width: 100%;
    border: none;
    background: var(--dark);
    color: #fff;
    padding: 12px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
}

.kvkk-panel-close:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

body.kvkk-modal-open {
    overflow: hidden;
}

/* GALERİ (Gelinlik Modelleri) */
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.img-box {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.product-card:hover .img-box img {
    transform: scale(1.05);
}

.info-box {
    padding: 25px;
    text-align: center;
}

.whatsapp-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* TABLO */
table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

th,
td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

th {
    background: var(--dark);
    color: #fff;
}

.sil-btn {
    background: #dc3545;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
}

@media (max-width: 900px) {
    nav {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        justify-content: center;
    }

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

    .hero__content h1 {
        font-size: 2.6rem;
    }

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

@media (max-width: 600px) {
    nav {
        padding: 16px;
    }

    .nav-links a {
        margin-left: 0;
        font-size: 0.85rem;
    }

    .hero {
        padding: 0 18px;
        min-height: 75vh;
    }

    .hero__content h1 {
        font-size: 2.2rem;
    }

    .hero__content .lead {
        font-size: 1rem;
    }

    .hero__image {
        margin-top: 22px;
    }

    .hero__image img {
        border-radius: 8px;
    }

    .section {
        padding: 60px 0;
    }

    .container {
        padding: 0 16px;
    }

    .cta-box {
        align-items: flex-start;
    }

    .btn {
        width: auto;
        padding: 12px 22px;
    }

    .form-wrapper {
        padding: 40px 14px 60px;
        gap: 22px;
    }

    .form-card {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .form-group label {
        margin-bottom: 6px;
    }

    .kvkk-row {
        padding: 14px;
    }
}
