:root {
    --sea-blue: #062b4f;
    --sea-blue-dark: #031b33;
    --sea-blue-soft: #0b3d6d;
    --sea-orange: #f58220;
    --sea-orange-dark: #d96b12;
    --sea-light: #f5f8fb;
    --sea-white: #ffffff;
    --sea-text: #1d2b3a;
    --sea-muted: #66788a;
    --sea-border: #dbe5ee;
    --sea-shadow: 0 18px 45px rgba(3, 27, 51, 0.12);
    --sea-radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--sea-text);
    background: var(--sea-white);
}

.edirne-page {
    width: 100%;
    overflow-x: hidden;
    font-family: inherit;
}

.edirne-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

/* HERO */

.edirne-hero {
    position: relative;
    padding: 72px 0 56px;
    background:
        radial-gradient(circle at top left, rgba(245, 130, 32, 0.20), transparent 32%),
        linear-gradient(135deg, var(--sea-blue-dark), var(--sea-blue));
    color: var(--sea-white);
}

.edirne-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 70px;
    background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 42px;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.hero-badge,
.section-head span,
.mini-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(245, 130, 32, 0.14);
    color: var(--sea-orange);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.hero-badge {
    color: #ffd2a8;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-content h1 {
    margin: 18px 0 18px;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.04;
    letter-spacing: -1.5px;
    font-weight: 900;
}

.hero-content p {
    margin: 0;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn-primary,
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 22px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    color: var(--sea-white);
    background: var(--sea-orange);
    box-shadow: 0 12px 28px rgba(245, 130, 32, 0.28);
}

.btn-primary:hover {
    background: var(--sea-orange-dark);
    transform: translateY(-2px);
}

.btn-whatsapp {
    color: var(--sea-white);
    background: #25d366;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.22);
}

.btn-whatsapp:hover {
    background: #1ebe5c;
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.hero-stats div {
    min-height: 94px;
    padding: 18px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
}

.hero-stats strong {
    display: block;
    color: var(--sea-white);
    font-size: 24px;
    line-height: 1.1;
    font-weight: 900;
}

.hero-stats span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
}

.hero-image {
    position: relative;
}

.hero-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 640 / 460;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

/* GENERAL SECTIONS */

.edirne-services,
.edirne-area,
.edirne-why,
.edirne-form-section,
.edirne-faq {
    padding: 74px 0;
}

.edirne-services {
    background: var(--sea-white);
}

.edirne-area {
    background: var(--sea-light);
}

.edirne-why {
    background: var(--sea-white);
}

.edirne-form-section {
    background:
        linear-gradient(180deg, rgba(6, 43, 79, 0.04), rgba(245, 130, 32, 0.05)),
        var(--sea-light);
}

.edirne-faq {
    background: var(--sea-white);
}

.section-head {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
}

.section-head h2,
.why-grid h2,
.form-info h2 {
    margin: 16px 0 12px;
    color: var(--sea-blue-dark);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.13;
    letter-spacing: -0.8px;
    font-weight: 900;
}

.section-head p,
.why-grid p,
.form-info p {
    margin: 0;
    color: var(--sea-muted);
    font-size: 17px;
    line-height: 1.75;
}

/* SERVICES */

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.service-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 14px;
    background: var(--sea-white);
    border: 1px solid var(--sea-border);
    border-radius: var(--sea-radius);
    text-decoration: none;
    color: var(--sea-text);
    box-shadow: 0 12px 34px rgba(6, 43, 79, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 130, 32, 0.45);
    box-shadow: var(--sea-shadow);
}

.service-card img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 420 / 280;
    object-fit: cover;
    border-radius: 16px;
    background: #eaf0f6;
}

.service-card h3 {
    margin: 18px 4px 10px;
    color: var(--sea-blue-dark);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 900;
}

.service-card p {
    margin: 0 4px 8px;
    color: var(--sea-muted);
    font-size: 15px;
    line-height: 1.65;
}

/* AREA */

.area-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.area-grid a {
    display: flex;
    align-items: center;
    min-height: 72px;
    padding: 18px 20px;
    color: var(--sea-blue-dark);
    background: var(--sea-white);
    border: 1px solid var(--sea-border);
    border-radius: 18px;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(6, 43, 79, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.area-grid a::before {
    content: "›";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-right: 12px;
    flex: 0 0 28px;
    border-radius: 50%;
    color: var(--sea-white);
    background: var(--sea-orange);
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
}

.area-grid a:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 130, 32, 0.5);
    background: #fffaf4;
}

/* WHY */

.why-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: start;
}

.why-grid ul {
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.why-grid li {
    position: relative;
    padding: 16px 18px 16px 50px;
    border: 1px solid var(--sea-border);
    border-radius: 16px;
    background: var(--sea-white);
    color: var(--sea-text);
    font-weight: 800;
    line-height: 1.55;
    box-shadow: 0 8px 24px rgba(6, 43, 79, 0.05);
}

.why-grid li::before {
    content: "✓";
    position: absolute;
    left: 17px;
    top: 16px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--sea-white);
    background: var(--sea-orange);
    font-size: 15px;
    font-weight: 900;
}

.why-box {
    padding: 30px;
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(245, 130, 32, 0.16), transparent 34%),
        linear-gradient(135deg, var(--sea-blue-dark), var(--sea-blue-soft));
    color: var(--sea-white);
    box-shadow: var(--sea-shadow);
}

.why-box h3 {
    margin: 0 0 22px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 900;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 9px 13px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 14px;
    font-weight: 800;
}

/* FORM */

.form-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 34px;
    align-items: start;
}

.form-info {
    position: sticky;
    top: 20px;
}

.contact-card {
    margin-top: 28px;
    padding: 24px;
    border-radius: 22px;
    background: var(--sea-white);
    border: 1px solid var(--sea-border);
    box-shadow: 0 14px 34px rgba(6, 43, 79, 0.08);
}

.contact-card strong {
    display: block;
    margin-bottom: 14px;
    color: var(--sea-blue-dark);
    font-size: 20px;
    font-weight: 900;
}

.contact-card a {
    display: block;
    margin-top: 8px;
    color: var(--sea-blue);
    text-decoration: none;
    font-weight: 900;
}

.contact-card a:hover {
    color: var(--sea-orange);
}

.edirne-form {
    padding: 28px;
    border-radius: 28px;
    background: var(--sea-white);
    border: 1px solid var(--sea-border);
    box-shadow: var(--sea-shadow);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 14px;
}

.edirne-form input,
.edirne-form select,
.edirne-form textarea {
    width: 100%;
    min-height: 54px;
    padding: 14px 15px;
    border: 1px solid var(--sea-border);
    border-radius: 14px;
    background: #fbfdff;
    color: var(--sea-text);
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.edirne-form textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

.edirne-form input:focus,
.edirne-form select:focus,
.edirne-form textarea:focus {
    border-color: rgba(245, 130, 32, 0.7);
    box-shadow: 0 0 0 4px rgba(245, 130, 32, 0.12);
    background: var(--sea-white);
}

.edirne-form button {
    width: 100%;
    min-height: 56px;
    margin-top: 14px;
    border: 0;
    border-radius: 16px;
    color: var(--sea-white);
    background: var(--sea-orange);
    font-size: 17px;
    font-weight: 900;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(245, 130, 32, 0.25);
    transition: transform 0.2s ease, background 0.2s ease;
}

.edirne-form button:hover {
    background: var(--sea-orange-dark);
    transform: translateY(-2px);
}

.form-note {
    margin: 14px 0 0;
    color: var(--sea-muted);
    font-size: 13px;
    line-height: 1.55;
    text-align: center;
}

/* FAQ */

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-list details {
    border: 1px solid var(--sea-border);
    border-radius: 18px;
    background: var(--sea-white);
    box-shadow: 0 10px 26px rgba(6, 43, 79, 0.06);
    overflow: hidden;
}

.faq-list summary {
    min-height: 62px;
    padding: 20px 56px 20px 22px;
    color: var(--sea-blue-dark);
    font-weight: 900;
    cursor: pointer;
    position: relative;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 18px;
    color: var(--sea-orange);
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--sea-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* FLOATING WHATSAPP */

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 118px;
    height: 52px;
    padding: 0 18px;
    border-radius: 999px;
    color: var(--sea-white);
    background: #25d366;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s ease, background 0.2s ease;
}

.floating-whatsapp:hover {
    background: #1ebe5c;
    transform: translateY(-3px);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-grid,
    .why-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-info {
        position: static;
    }

    .hero-image {
        max-width: 720px;
    }
}

@media (max-width: 820px) {
    .edirne-container {
        width: min(100% - 24px, 1180px);
    }

    .edirne-hero {
        padding: 48px 0 42px;
    }

    .edirne-services,
    .edirne-area,
    .edirne-why,
    .edirne-form-section,
    .edirne-faq {
        padding: 54px 0;
    }

    .hero-grid {
        gap: 30px;
    }

    .hero-content h1 {
        letter-spacing: -0.8px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-stats div {
        min-height: auto;
    }

    .area-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .edirne-form {
        padding: 20px;
        border-radius: 22px;
    }

    .why-box {
        padding: 24px;
    }

    .floating-whatsapp {
        right: 12px;
        bottom: 12px;
        min-width: 104px;
        height: 48px;
        font-size: 14px;
    }
}

@media (max-width: 620px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-whatsapp {
        width: 100%;
    }

    .section-head {
        margin-bottom: 26px;
    }

    .section-head h2,
    .why-grid h2,
    .form-info h2 {
        font-size: 28px;
    }

    .service-card h3 {
        font-size: 19px;
    }

    .edirne-form input,
    .edirne-form select,
    .edirne-form textarea {
        font-size: 14px;
    }
}

@media (max-width: 420px) {
    .edirne-container {
        width: min(100% - 18px, 1180px);
    }

    .edirne-hero {
        padding-top: 38px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-badge,
    .section-head span,
    .mini-title {
        font-size: 12px;
        padding: 7px 11px;
    }

    .edirne-form {
        padding: 16px;
    }

    .contact-card {
        padding: 18px;
    }
}