/* ═══════════════════════════════════════════
   BANNER
═══════════════════════════════════════════ */
.ic-hero {
    position: relative;
    background-image: url('/images/banner.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: #1a1a1a;
    padding: 210px 0 100px;
    overflow: hidden;
}
@media (max-width: 640px) {
    .ic-hero {
        background-image: url('/images/banner-mobile.webp');
        padding: 160px 0 80px;
    }
}
@media (min-width: 1200px) { .ic-hero { padding: 240px 0 100px; } }

.ic-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(20,12,6,0.78) 0%,
        rgba(20,12,6,0.55) 60%,
        rgba(20,12,6,0.72) 100%
    );
}

.ic-hero__body {
    position: relative;
    z-index: 1;
}

.ic-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.ic-hero__tag-line {
    display: block;
    width: 32px;
    height: 2px;
    background: #e20032;
    border-radius: 2px;
}
.ic-hero__tag-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(225,219,200,0.75);
}

.ic-hero__title {
    font-size: 40px;
    font-weight: 700;
    color: #f7f1e6;
    line-height: 1.08;
    margin: 0 0 16px;
}
@media (min-width: 640px)  { .ic-hero__title { font-size: 54px; } }
@media (min-width: 960px)  { .ic-hero__title { font-size: 64px; } }
@media (min-width: 1200px) { .ic-hero__title { font-size: 72px; } }

.ic-hero__sub {
    font-size: 15px;
    color: rgba(247,241,230,0.55);
    font-weight: 300;
    margin: 0 0 32px;
    max-width: 420px;
    line-height: 1.75;
}

.ic-hero__crumb {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: rgba(247,241,230,0.38);
}
.ic-hero__crumb a {
    color: rgba(247,241,230,0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.ic-hero__crumb a:hover { color: #e1dbc8; }
.ic-hero__crumb-dot {
    width: 3px; height: 3px;
    background: rgba(247,241,230,0.3);
    border-radius: 50%;
    display: inline-block;
}

/* ═══════════════════════════════════════════
   QUICK STRIP
═══════════════════════════════════════════ */
.ic-content-bg {
    background: #f5efe4;
    padding-bottom: 90px;
}
@media (max-width: 640px) { .ic-content-bg { padding-bottom: 64px; } }

.ic-strip-wrap {
    position: relative;
    z-index: 20;
    margin-top: -56px;
    padding: 0 0 60px 0;
}

.ic-strip {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.14);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}
@media (max-width: 959px) {
    .ic-strip { grid-template-columns: repeat(2, 1fr); }
    .ic-strip__item { border-bottom: 1px solid #f0ebe0; }
    .ic-strip__item:nth-child(2n) { border-right: none; }
    .ic-strip__item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 639px) {
    .ic-strip { grid-template-columns: 1fr; }
    .ic-strip__item { border-right: none !important; border-bottom: 1px solid #f0ebe0 !important; }
    .ic-strip__item:last-child { border-bottom: none !important; }
}

.ic-strip__item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 32px;
    text-decoration: none;
    color: inherit;
    border-right: 1px solid #f0ebe0;
    transition: background 0.2s;
}
.ic-strip__item:last-child { border-right: none; }
@media (max-width: 767px) {
    .ic-strip__item { border-right: none; border-bottom: 1px solid #f0ebe0; padding: 22px 24px; }
    .ic-strip__item:last-child { border-bottom: none; }
}
.ic-strip__item:hover { background: #faf7f1; }
.ic-strip__item:hover .ic-strip__icon { background: #786c65; color: #fff; }

.ic-strip__icon {
    flex-shrink: 0;
    width: 52px; height: 52px;
    border-radius: 14px;
    background: #f7f1e6;
    color: #786c65;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}
.ic-strip__label {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #a39a90;
    margin-bottom: 5px;
    font-weight: 600;
}
.ic-strip__val {
    font-size: 16px;
    font-weight: 600;
    color: #3d3028;
    line-height: 1.4;
}

/* ═══════════════════════════════════════════
   MAIN CONTENT
═══════════════════════════════════════════ */
.ic-section {
    padding: 0;
    background: transparent;
}

.ic-section-sub {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #a39a90;
    margin: 0 0 10px;
}
.ic-section-title {
    font-size: 26px;
    font-weight: 700;
    color: #3d3028;
    margin: 0 0 28px;
    line-height: 1.2;
}

/* ── FORM + MAP GRID */
.ic-form-panel {
    background: #fff;
    border-radius: 18px;
    padding: 40px 40px;
    box-shadow: 0 4px 32px rgba(80,55,30,0.07);
    height: 100%;
}
@media (max-width: 640px) { .ic-form-panel { padding: 26px 20px; border-radius: 14px; } }

/* map panel */
.ic-map-panel {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(80,55,30,0.09);
    height: 100%;
    min-height: 360px;
}
.ic-map-panel iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
    filter: grayscale(15%) contrast(1.04);
}
@media (max-width: 640px) {
    .ic-map-panel, .ic-map-panel iframe { min-height: 260px; }
}

.ic-form-panel .uk-form-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a39a90;
    font-weight: 700;
    margin-bottom: 6px;
}
.ic-form-panel .uk-textarea,
.ic-form-panel textarea.uk-input { height: 100px; resize: vertical; }

.ic-form-panel .uk-input,
.ic-form-panel .uk-textarea {
    border-radius: 10px;
    border: 1.5px solid #e8e1d4;
    background: #faf7f1;
    color: #3d3028;
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.ic-form-panel .uk-input:focus,
.ic-form-panel .uk-textarea:focus {
    border-color: #786c65;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(120,108,101,0.1);
    outline: none;
}

.ic-submit {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #786c65;
    color: #f7f1e6;
    border: none;
    border-radius: 999px;
    padding: 14px 36px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.22s, transform 0.18s;
}
.ic-submit:hover { background: #3d3028; transform: translateY(-1px); }

.ic-kvkk-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #786c65;
    line-height: 1.5;
}
.ic-kvkk-row input[type="checkbox"] {
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: #786c65;
    width: 16px;
    height: 16px;
    cursor: pointer;
}
.ic-kvkk-row a {
    color: #786c65;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}
.ic-kvkk-row a:hover { color: #e20032; }

/* ═══════════════════════════════════════════
   FORM SONUÇ MODALI
═══════════════════════════════════════════ */
.ic-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20,12,6,0.55);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.ic-modal-overlay.is-open { display: flex; }

.ic-modal-box {
    background: #fff;
    border-radius: 20px;
    padding: 48px 40px 40px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 24px 80px rgba(0,0,0,0.18);
    animation: ic-modal-in 0.28s ease;
}
@keyframes ic-modal-in {
    from { transform: scale(0.92) translateY(16px); opacity: 0; }
    to   { transform: scale(1) translateY(0);       opacity: 1; }
}

.ic-modal-icon {
    width: 68px; height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}
.ic-modal-icon.success { background: #f0faf3; color: #2ecc71; }
.ic-modal-icon.error   { background: #fff0f2; color: #e20032; }

.ic-modal-title {
    font-size: 20px;
    font-weight: 700;
    color: #3d3028;
    margin: 0 0 10px;
}
.ic-modal-desc {
    font-size: 14px;
    color: #a39a90;
    line-height: 1.65;
    margin: 0 0 28px;
}
.ic-modal-close {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #786c65;
    color: #f7f1e6;
    border: none;
    border-radius: 999px;
    padding: 12px 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
}
.ic-modal-close:hover { background: #3d3028; }
.ic-modal-x {
    position: absolute;
    top: 16px; right: 16px;
    width: 32px; height: 32px;
    border-radius: 50%;
    border: none;
    background: #f5efe4;
    color: #786c65;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}
.ic-modal-x:hover { background: #e1dbc8; }
