:root {
    --yellow: #FBD928;
    --dark: #343434;
    --light-dark: #6C6C6C;
    --gray: #f6f6f6;
    --text: #4b4b4d;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: "Exo", sans-serif;
    color: var(--text);
    margin: 0;
    background: linear-gradient(120deg, #ffffff 35%, #fdf3d9);
}

/* -----------------------------------------------------------
   Harita SayfasÄ±
----------------------------------------------------------- */
.map-page .map-main {
    padding-bottom: 120px;
}

.map-hero {
    padding: 80px 0 0;
}

.map-hero h1 {
    font-size: 2.5rem;
    color: #2f2f30;
    font-weight: 700;
}

.map-hero .eyebrow {
    color: #a8a199;
    letter-spacing: 0.35em;
}

.map-hero .lead {
    color: #4a4a4a;
}

.map-stats {
    gap: 1.5rem;
}

.stat-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.1rem 1.4rem;
    border: 1px solid #f0e8cc;
    box-shadow: 0 25px 60px rgba(50, 50, 71, 0.08);
    min-width: 150px;
}

.stat-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--light-dark);
}

.stat-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.stat-foot {
    display: block;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.7rem;
    color: var(--light-dark);
}

.flag-card {
    background: #fff;
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 35px 80px rgba(50, 50, 71, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.flag-illustration {
    width: 100%;
    max-width: 280px;
    margin-left: auto;
}

.flag-illustration svg {
    width: 100%;
    height: auto;
    display: block;
}

.flag-note h3 {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
}

.flag-note p {
    color: var(--light-dark);
}

.map-grid {
    display: flex;
    gap: 48px;
    align-items: stretch;
    flex-direction: column;
}

.map-heading h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.map-heading p {
    color: var(--light-dark);
    margin: 0;
}

.map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.9rem;
    color: var(--light-dark);
    margin: 1rem 0;
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.legend-active {
    background: var(--yellow);
}

.legend-pending {
    background: #d6d6d6;
}

.turkey-map-wrapper {
    position: relative;
    perspective: 1800px;
    /* enables subtle 3D rotation for the SVG */
}

#svg-turkiye-haritasi {
    width: 100%;
    height: auto;
    transform-origin: center 80%;
    transform: rotateX(25deg);
    filter: drop-shadow(0px 10px 0px #707070);
    transition: transform 0.4s ease, filter 0.4s ease;
}

#svg-turkiye-haritasi g {
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

#svg-turkiye-haritasi path {
    fill: #c5c5c5;
    stroke: #ffffff;
    stroke-width: 1px;
    transition: fill 0.25s ease;
}

#svg-turkiye-haritasi g path:hover {
    fill: var(--yellow);
}

#svg-turkiye-haritasi g.active path {
    fill: var(--yellow);
}

.map-tooltip {
    position: absolute;
    pointer-events: none;
    background: var(--dark);
    color: #fff;
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    opacity: 0;
    transform: translate(-50%, -140%);
    transition: opacity 0.15s ease;
    z-index: 5;
}

.map-tooltip.visible {
    opacity: 0.95;
}

.map-source {
    font-size: 0.75rem;
    color: var(--light-dark);
    text-align: right;
    margin-top: 1rem;
}

.map-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 50px;
}

.map-panel {
    padding: 2rem;
}

.map-page .map-sidebar {
    gap: 1.5rem;
}

.map-page .selection-panel,
.map-page .branch-results {
    padding: 0 0 1.5rem;
}

.map-page .selection-panel {
    flex-wrap: wrap;
    gap: 1rem;
    display: flex;
    justify-content: flex-start;
}

.map-page .district-chips {
    margin-bottom: 0.5rem;
}

.map-page .branch-results {
    display: block;
}

.selection-panel,
.branch-results {
    display: flex;
    justify-content: flex-start;
}

.selection-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1rem;
    width: 150px;
}

.selection-field:last-child {
    margin-bottom: 0;
}

.selection-field label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--light-dark);
    width: fit-content;
}

.selection-field .form-select {
    background: var(--text);
    font-size: 0.95rem;
    padding: 0.6rem 0.9rem;
    color: white;
    border: 1px solid var(--yellow);
}

.district-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.district-chip {
    border-radius: 999px;
    border: 1px solid #dcdcdc;
    background: #fff;
    padding: 0.45rem 1.1rem;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    outline: none;
}

.district-chip:hover {
    border-color: var(--yellow);
}

.district-chip.active {
    background: var(--yellow);
    border-color: var(--yellow);
    font-weight: 600;
}

.branch-list {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: flex-start;
    width: 100%;
}

.branch-card {
    border: 1px solid #ededed;
    border-radius: 20px;
    padding: 1.25rem;
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    width: 100%;
    justify-content: flex-start;
}

.branch-card__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
    align-items: center;
}

.branch-card__title {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--dark);
}

.branch-title-link {
    color: inherit;
    text-decoration: none;
}

.branch-title-link:hover,
.branch-title-link:focus {
    text-decoration: underline;
}

.branch-card__address {
    font-size: 0.92rem;
    color: var(--text);
}

.branch-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--light-dark);
}

.branch-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.branch-card__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.branch-card__cta a {
    flex: 1 1 140px;
    text-align: center;
    text-decoration: none;
    border-radius: 18px;
    padding: 0.55rem 1rem;
    font-weight: 600;
    border: 1px solid var(--yellow);
    color: #000;
}

.branch-card__cta a.primary {
    background: var(--yellow);
}

.branch-card__cta a.secondary {
    background: #fff;
}

.branch-empty {
    color: var(--light-dark);
    font-size: 0.95rem;
}

.franchise-page {
    background: #f4f4f4;
}

.fr-hero {
    background: linear-gradient(180deg, #f8f8f8 0%, #ededed 100%);
}

.fr-hero-surface {
    padding: clamp(1.8rem, 4vw, 3rem);
    overflow: hidden;
    position: relative;
}

.fr-hero-title {
    letter-spacing: 0.08em;
    font-weight: 800;
    color: #2f2f30;
}

.fr-hero-visual img {
    width: min(520px, 100%);
    filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.12));
}

.fr-feature-grid {
    margin-top: clamp(1rem, 2vw, 1.75rem);
}

.fr-feature-card {
    background: #fff;
    border: 3px solid #000;
    border-radius: 18px;
    padding: 3rem 1rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.fr-feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--yellow);
}

.fr-feature-card h3 {
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: #3b3b3c;
    margin-bottom: 2rem;
}

.fr-feature-card p {
    font-size: 0.92rem;
    color: #5a5a5a;
}

.fr-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1f1f20;
    margin-bottom: 2rem;
}

.fr-reason {
    margin-top: clamp(1rem, 2vw, 1.5rem);
    padding-top: clamp(1.25rem, 2vw, 1.75rem);
}

.fr-reason .title-line {
    width: 200px;
    height: 8px;
    margin-top: 16px;
}

.fr-reason p {
    color: #4d4d4f;
    line-height: 1.7;
}

.fr-video-section {
    background: #2f2f31;
}

.fr-video-card {
    padding: clamp(1rem, 2vw, 1.5rem);
    max-width: 1100px;
    margin: 0 auto;
}

.fr-video-frame video {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    object-fit: cover;
    background: #0f0f0f;
}

.fr-benefits-section {
    background: #f5f5f5;
}

.fr-benefit-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e2e2e2;
    padding: 1.5rem 1.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 6px solid var(--yellow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fr-benefit-card:hover {
    transform: translateY(-5px);
}

.fr-benefit-card h3 {
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    color: #3c3c3d;
    margin-top: 0.75rem;
}

.fr-benefit-card p {
    position: relative;
    z-index: 1;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.fr-benefit-media {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #fffaf0;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.fr-benefit-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fr-cta-section {
    background: #2f2f31;
    padding-top: 8rem !important;
}

.fr-cta-layout {
    align-items: stretch;
}

.fr-cta-header {
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fr-cta-title {
    letter-spacing: 0.12em;
    font-weight: 800;
}

.fr-cta-visual {
    width: 100%;
}

.fr-cta-card {
    background: linear-gradient(180deg, #3a3a3c 0%, #1e1e20 100%);
    border-radius: 26px;
    padding: clamp(1.75rem, 3vw, 2.6rem);
    border: 1px solid #4c4c4d;
    color: #f5f5f5;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.fr-cta-card h3 {
    letter-spacing: 0.08em;
    font-weight: 700;
}

.fr-cta-form .form-slot {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 0.7rem 0.9rem;
    gap: 0.35rem;
}

.fr-cta-form .form-slot span {
    color: #a6a6a6;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    text-align: left;
}

.fr-cta-form .form-control,
.fr-cta-form .form-select {
    text-align: left;
    padding: 0;
    background: transparent;
    color: #fff;
    width: 100%;
}

.application-form .form-control::placeholder {
    color: white;
}

.application-form .form-control:focus {
    background-color: #6c6c6c;
    color: white;
    box-shadow: none;
}

.fr-cta-form .form-control::placeholder {
    color: #e3e3e3;
}

.fr-cta-form .form-select {
    padding-right: 1.25rem;
}

.fr-announcement {
    background: var(--yellow);
    color: #2d2d2e;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 800;
}

.fr-announcement p {
    margin: 0;
    font-size: 1rem;
}

.report-hero {
    position: relative;
}

.report-card {
    background: #fff;
    border: 2px solid #1f1f20;
    border-radius: 26px;
    padding: clamp(1.5rem, 3vw, 2rem);
}

.report-title {
    letter-spacing: 0.08em;
    font-weight: 800;
    color: #2f2f31;
}

.report-subtitle {
    color: #4b4b4d;
    max-width: 660px;
}

.report-filters {
    margin-top: 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: end;
}

.filter-field {
    background: linear-gradient(180deg, #f9f9fc 0%, #f2f3f6 100%);
    border: 2px solid #d7d9df;
    border-radius: 16px;
    padding: 0.85rem 1rem;
    display: flex;
    flex-direction: row;
    gap: 0.4rem;
    justify-content: center;
}

.filter-field span {
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #737376;
}

.filter-field .form-control,
.filter-field .form-select {
    border: none;
    padding: 0;
    background: transparent;
    color: #1f1f20;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    width: 65%;
}

.filter-field .form-control:focus,
.filter-field .form-select:focus {
    box-shadow: none;
    border: none;
}

.report-filters .filter-field .form-control::placeholder {
    color: #1f1f20;
}

.input-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2f2f31;
}

.input-icon i {
    font-size: 1.05rem;
}

.filter-chip {
    border: 2px dashed #c5c6cb;
    background: #fff;
    padding: 0.55rem 1.6rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #4a4a4d;
    transition: all 0.2s ease;
}

.filter-chip.active {
    background: var(--yellow);
    border-color: #1f1f20;
    color: #0f0f10;
    box-shadow: 0 10px 0 #0f0f10;
}

.filter-actions {
    min-width: 180px;
    justify-self: end;
}

.filter-hint {
    background: #fff;
    border: 1px dashed #c5c6cb;
    border-radius: 12px;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    color: #5d5d5f;
}

.btn-ink {
    background: var(--yellow);
    color: #0f0f10;
    border: 2px solid #0f0f10;
    border-radius: 14px;
    padding: 0.85rem 1.25rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.btn-ink:hover {
    color: var(--yellow);
    border: 2px solid var(--yellow);
    background: #0f0f10;
}

.report-table-wrapper {
    border: 2px solid #d7d9df;
    border-radius: 20px;
    padding: 1rem;
    background: linear-gradient(180deg, #fdfdfd 0%, #f8f8fb 100%);
}

.report-table {
    border-collapse: separate;
    border-spacing: 0 0.75rem;
}

.report-table thead th {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    color: #6b6b6f;
    border: none;
    padding-bottom: 0.3rem;
}

.report-table tbody td {
    border: none;
    padding: 0.95rem 1rem;
    color: #2f2f30;
    font-weight: 600;
}

.report-table tbody td:first-child {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.report-table tbody td:last-child {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}

.btn-view {
    text-decoration: none;
    font-size: 0.8rem;
}

.table-footer {
    border-top: 1px dashed #c5c6cb;
    margin-top: 0.5rem;
}

.table-caption {
    font-weight: 700;
    color: #4a4a4d;
    letter-spacing: 0.05em;
}

.report-pagination .page {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid #c7c7c9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #3a3a3c;
    background: #fff;
    font-weight: 700;
    transition: all 0.2s ease;
}

.report-pagination .page.active,
.report-pagination .page:hover {
    background: var(--yellow);
    color: #000;
    border-color: #111;
}

.reservation-surface {
    border-radius: 26px;
    padding: clamp(1.6rem, 3vw, 2.4rem);
    border: 2px solid #0f0f10;
    position: relative;
    overflow: hidden;
}

.reservation-surface::after {
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 30% 30%, rgba(251, 217, 40, 0.25), rgba(251, 217, 40, 0));
    top: -180px;
    right: -140px;
    transform: rotate(18deg);
}

.reservation-head {
    position: relative;
    z-index: 1;
}

.reservation-badge {
    background: var(--yellow);
    width: 160px;
    height: 160px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    text-align: center;
    color: #1b1b1d;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.reservation-badge strong {
    font-size: 1.3rem;
}

.reservation-body {
    position: relative;
    z-index: 1;
    margin-top: 1.5rem;
}

.step-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.35rem;
}

.step-tabs .step {
    border: 1px solid #3d424b;
    background: #2a2f37;
    color: #c7c9ce;
    padding: 0.65rem 1rem;
    border-radius: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.step-tabs .step.active {
    background: var(--yellow);
    color: #0f0f10;
    border-color: #0f0f10;
    box-shadow: 0 12px 0 #0b0b0c;
}

.bay-card {
    background: #f6f7fb;
    border: 2px solid #111;
    border-radius: 18px;
    padding: 1.25rem;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.bay-carousel {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pill-btn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 2px solid #111;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 10px 0 #b9b9bb;
}

.bay-pill {
    flex: 1 1 260px;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: #fff;
    border: 2px solid #d9dae0;
    border-radius: 18px;
    padding: 0.85rem 1rem;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.bay-pill i {
    font-size: 1.4rem;
    color: #1f1f20;
}

.bay-pill__title {
    font-weight: 800;
    color: #1f1f20;
}

.bay-pill__meta {
    color: #5b5b5f;
    font-size: 0.92rem;
}

.bay-controls {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.mini-stepper {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem;
    background: #fff;
    border: 2px solid #111;
    border-radius: 12px;
    box-shadow: 0 10px 0 #b9b9bb;
    font-weight: 700;
}

.mini-stepper button {
    border: none;
    background: transparent;
    font-weight: 900;
    font-size: 1.05rem;
    color: #1f1f20;
}

.ghost-select {
    background: #fff;
    border: 2px solid #111;
    border-radius: 12px;
    padding: 0.55rem 0.85rem;
    min-width: 170px;
    font-weight: 700;
}

.ghost-select:focus {
    box-shadow: 0 8px 0 #111;
}

.btn-gold {
    background: var(--yellow);
    border: 2px solid #111;
    color: #111;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.75rem 1.4rem;
    border-radius: 14px;
    text-transform: uppercase;
}

.btn-gold:hover {
    color: #000;
}

.bay-description {
    margin-top: 1rem;
    background: #fff;
    border: 2px dashed #c7c7c9;
    border-radius: 14px;
    padding: 0.95rem 1.05rem;
    color: #3b3b3d;
    line-height: 1.6;
}

.wizard-surface {
    background: #1f232a;
    border-radius: 26px;
    padding: clamp(1.5rem, 3vw, 2.4rem);
    border: 2px solid #0f0f10;
}

.wizard-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.wizard-tab {
    border: 1px solid #3d424b;
    background: #fff;
    color: #2f2f31;
    padding: 0.65rem 1rem;
    border-radius: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.wizard-tab.active {
    background: var(--yellow);
    color: #0f0f10;
    border-color: #0f0f10;
}

.wizard-panels {
    background: #262a32;
    border: 1px solid #2f3239;
    border-radius: 20px;
    padding: 1.2rem 1rem 1rem;
    color: #fff;
}

.wizard-title {
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.wizard-subtext {
    color: #c7cad1;
    margin-bottom: 1rem;
}

.wizard-filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.wizard-branch {
    background: var(--yellow);
    border: 2px solid #111;
    border-radius: 18px;
    padding: 1.1rem 1rem;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
    color: #1b1b1d;
}

.wizard-branch__top {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0.35rem;
}

.wizard-branch__title {
    font-weight: 800;
}

.wizard-branch__meta {
    font-weight: 700;
}

.wizard-branch__chip {
    padding: 0.35rem 0.8rem;
    background: #111;
    color: var(--yellow);
    border-radius: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.wizard-branch__body {
    color: #1f1f20;
    line-height: 1.5;
}

.pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.pkg-grid-wrapper {
    position: relative;
}

.pkg-card {
    background: #f7f7fb;
    border: 2px solid #111;
    border-radius: 14px;
    padding: 0.85rem 0.95rem;
    cursor: pointer;
    text-align: left;
    width: 100%;
}

.pkg-card .pkg-name {
    font-weight: 800;
    color: #1e1e21;
}

.pkg-card .pkg-price {
    font-weight: 700;
    color: #4a4a4d;
}

.pkg-card .pkg-chip {
    display: inline-block;
    margin-top: 0.4rem;
    padding: 0.3rem 0.8rem;
    background: #fff;
    border: 1px dashed #111;
    border-radius: 12px;
    font-weight: 700;
    color: #1e1e21;
}

.pkg-card.active {
    background: var(--yellow);
}

.pkg-card.muted {
    background: #ececf2;
    color: #8a8a90;
}

.pkg-bubble {
    position: absolute;
    min-width: 240px;
    max-width: 320px;
    background: #fff;
    border: 2px solid #111;
    border-radius: 14px;
    padding: 0.9rem 1rem;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
    color: #1b1b1d;
    transform: translate(-50%, 0);
    z-index: 3;
    border-top-left-radius: 4px;
}

.pkg-bubble::before {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-bottom-color: #111;
}

.pkg-bubble::after {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-bottom-color: #fff;
}

.pkg-detail-title {
    font-weight: 800;
    font-size: 1.05rem;
}

.pkg-detail-price {
    font-weight: 700;
    color: #4a4a4d;
}

.pkg-detail-body {
    color: #2f2f31;
    line-height: 1.5;
    margin-top: 0.35rem;
}

.time-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.time-slot {
    border: 2px solid #111;
    background: #fff;
    color: #111;
    padding: 0.55rem 0.95rem;
    border-radius: 12px;
    font-weight: 800;
}

.time-slot.active {
    background: var(--yellow);
    box-shadow: 0 10px 0 #111;
}

.time-slot.disabled {
    opacity: 0.4;
    box-shadow: none;
}

.wizard-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.wizard-input {
    width: 100%;
    border: 2px solid #111;
    border-radius: 10px;
    padding: 0.7rem 0.85rem;
    font-weight: 700;
}

.wizard-note {
    color: #d7d9de;
    font-size: 0.95rem;
}

.wizard-summary {
    background: #fff;
    color: #1f1f20;
    border: 2px solid #111;
    border-radius: 12px;
    padding: 1rem 1.1rem;
    margin-bottom: 1rem;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.pay-options {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.pay-card {
    background: #fff;
    border: 2px solid #111;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    min-width: 180px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.pay-card.active {
    background: var(--yellow);
}

.pay-title {
    font-weight: 800;
    color: #1b1b1d;
}

.pay-desc {
    color: #4b4b4d;
    font-weight: 600;
}

.wizard-actions {
    margin-top: 1.25rem;
}

.wizard-surface.is-final-step .wizard-progress-actions {
    display: none !important;
}

.topbar {
    background-color: var(--dark);
    color: #fff;
    padding: 30px 0 30px;
    position: relative;
    z-index: 1200;
}

.topbar-meta {
    transition: transform 0.3s ease;
}

.mobile-overlay {
    display: none;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    padding: 0;
    transition: all 0.2s ease;
}

.nav-toggle:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.nav-toggle .line {
    width: 22px;
    height: 2px;
    background: currentColor;
    display: block;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle .line:nth-child(2) {
    width: 16px;
}

.nav-toggle.active .line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active .line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-close {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 12px;
    border: 2px solid #c7c7c7;
    color: #c7c7c7;
    font-size: 1.5rem;
    font-weight: 700;
    position: absolute;
    top: 28px;
    right: 24px;
    line-height: 1;
    padding: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.brand img {
    width: 250px;
}

.brand-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: var(--yellow);
    color: #1f1e1f;
    font-size: 1.05rem;
}

.brand-text .title {
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
}

.brand-text .subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    color: var(--yellow);
}

.info-links {
    font-size: 0.9rem;
    color: #dedede;
}

.info-links .search-box {
    color: #b9b9b9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2px;
}

.info-links .text-highlight {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 600;
}

.info-links .phone {
    font-weight: 600;
    letter-spacing: 0.05em;
}

.navigation .nav-link {
    color: #c7c7c7;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    padding: 0;
}

.navigation .nav-link.active,
.navigation .nav-link:hover {
    color: #fff;
    text-decoration: none;
}

.hero-section {
    background: url('../img/hero.png');
    background-repeat: no-repeat;
    background-position: bottom;
    height: 88vh;
    padding-top: 250px;
    background-size: 100% 100%;
}

.eyebrow {
    font-size: 0.95rem;
    letter-spacing: 0.4em;
    color: #343434;
}

.heroDoor,
.heroPin {
    position: absolute;
}

.heroDoor {
    width: 395px;
    height: 305px;
    right: 260px;
    top: 261px;
    transform: rotateZ(360deg);
}

.heroPin {
    width: 950px;
    right: 100px;
    top: 300px;
}

.hero-section h1 {
    color: #2f2f30;
    font-weight: 500 !important;
    font-size: 2rem;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.highlight-text {
    position: relative;
    display: inline-block;
    font-weight: 800;
    letter-spacing: 3px;
    z-index: 1;
    padding: 0 10px;
}

.highlight-text:nth-of-type(2)::after {
    content: "";
    position: absolute;
    inset: auto 0px 5px 0;
    height: 25px;
    background: var(--yellow);
    opacity: 1;
    z-index: -1;
    border-radius: 999px;
    margin: 0 auto;
}

.application-card {
    overflow: hidden;
    padding: 0;
    bottom: 40px;
    position: absolute;
    width: 65%;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}

.application-tabs {
    border-radius: 24px;
    border-top-left-radius: 0;
    width: 58%;
}

.application-tabs .tab {
    border: none;
    background: transparent;
    padding: 1rem 1.5rem;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: #6b6a6a;
    border: 1px solid var(--light-dark);
    border-radius: 24px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
	text-decoration: none;
	text-align:center;
}

.application-tabs .tab.active {
    background: linear-gradient(0deg, var(--light-dark) 10%, #000 230%);
    color: var(--yellow);
}

.application-form {
    gap: 0;
    border-top: 1px solid var(--yellow);
    background: transparent;
    border-radius: 15px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    width: 100%;
}

.application-card .tab-panel {
    display: none !important;
}

.application-card .tab-panel.active {
    display: flex !important;
}

.form-slot {
    display: flex;
    gap: 0.35rem;
    border-right: 1px solid var(--yellow);
    border-bottom: 1px solid var(--yellow);
}

.form-slot:last-child,
.form-slot:nth-last-child(2) {
    border-right: none;
}

.form-slot span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #8c8b8b;
}

.form-control,
.form-select {
    border: none;
    border-radius: 0;
    padding: 0.25rem;
    background: #6C6C6C;
    font-weight: 400;
    color: white;
    width: 100%;
    font-size: 0.9rem;
    letter-spacing: 1.1px;
}

.submit-slot {
    flex: 0 0 139px;
    border-radius: 15px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.btn-gradient {
    background: linear-gradient(180deg, var(--yellow), #fff);
    color: #1d1c1d;
    font-weight: 600;
    border: none;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    border-radius: 15px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.btn-gradient:hover {
    color: #000;
    opacity: 0.9;
}

.why-section {
    background: #eaeaea;
    position: relative;
}

.why-surface {
    padding: clamp(1.5rem, 4vw, 3rem);
    overflow: hidden;
    position: relative;
    background-image: linear-gradient(#fbd928f0), url(../img/about.png);
    background-position: 0% 70%;
    background-repeat: no-repeat;
    border-bottom: 10px solid #6C6C6C;
    justify-content: center;
    mix-blend-mode: multiply;
}

.why-visual {
    position: absolute;
    bottom: -3vw;
    width: 578px;
    left: 10vw;
}

.why-visual::after {
    content: "";
    position: absolute;
    inset: 8% 5%;
    border-radius: 140px 140px 0 0;
    background: rgba(255, 255, 255, 0.18);
    z-index: 1;
}

.letter-ak {
    position: absolute;
    font-size: clamp(6rem, 18vw, 14rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    left: 5%;
    top: 0;
    z-index: 0;
    letter-spacing: -0.05em;
}

.why-img {
    position: absolute;
    bottom: -3rem;
    left: -1rem;
    width: min(420px, 90%);
    border-radius: 50% 50% 0 50%;
    object-fit: cover;
    z-index: 2;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.25));
}

.why-content {
    color: #fff;
    position: relative;
    z-index: 2;
    width: 35vw;
    margin-left: 10vw;
}

.why-content h2 {
    letter-spacing: 0.12em;
    color: #343434;
    position: relative;
    z-index: 1;
}

.why-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #343434;
}

.btn-why {
    border-radius: 999px;
    padding: 0.75rem 2.5rem;
    letter-spacing: 0.2em;
    background: linear-gradient(0deg, var(--light-dark) 10%, #000 230%);
    color: var(--yellow);
    border: 1px solid white;
}

.btn-why:hover {
    background: #fff;
    color: var(--dark);
}

.packages-section {
    background: #f1f1f1;
}

.packages-page {
    background: #f5f5f5;
}

.packages-hero {
    padding: clamp(2.5rem, 5vw, 4.5rem) 0;
    background: url('../img/hero.png') center top/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.packages-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(241, 241, 241, 0.9));
    z-index: 1;
}

.packages-hero .container,
.packages-hero .row,
.packages-hero .col-lg-6 {
    position: relative;
    z-index: 2;
}

.packages-hero h1 {
    color: #2f2f30;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.packages-hero .lead {
    max-width: 640px;
    line-height: 1.7;
    color: #4b4b4d;
}

.packages-hero-visual img {
    width: min(520px, 100%);
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.15));
}

.packages-catalog {
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
}

.package-card-v2 {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #dedede;
    box-shadow: 0 25px 60px rgba(50, 50, 71, 0.07);
    padding: 1.35rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.package-card-v2 header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #393939;
    letter-spacing: 0.04em;
}

.package-card-v2 p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4f4f4f;
}

.package-price {
    margin-top: auto;
    font-weight: 800;
    color: #f79c21;
    letter-spacing: 0.08em;
    font-size: 1.15rem;
}

.package-card-v2 .package-addon {
    margin-top: 0.25rem;
    align-self: flex-start;
    padding: 0.4rem 0.9rem;
    border-radius: 12px;
    background: #7edb93;
    color: #0f5b1c;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.package-card-v2 .package-addon.soft {
    background: #dff7c8;
    color: #3d7b28;
}

.package-card-v2.accent {
    border-color: #d9d9d9;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

.package-card-v2.plus {
    position: relative;
}

.package-card-v2.plus::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 1px dashed rgba(126, 219, 147, 0.8);
    pointer-events: none;
}

.package-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 80px rgba(50, 50, 71, 0.12);
}

.section-heading h2 {
    letter-spacing: 0.1em;
    font-size: 2.3rem;
    color: #494949;
    margin-bottom: 0.4rem;
    font-weight: 700;
    width: fit-content;
    padding: 0 20px;
}

.blog-heading {
    position: absolute;
    right: 0;
    top: -30px;
}

.heading-underline {
    width: 140px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--yellow), transparent 80%);
}

.slide-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #414141;
    font-size: 1.4rem;
    position: absolute;
    background: linear-gradient(0deg, var(--yellow), #fff);
}

.slide-btn-left {
    left: 10%;
}

.slide-btn-right {
    right: 10%;
}

.package-card {
    border-radius: 28px;
    overflow: hidden;
    background: #2b2b2d;
    color: #f8f8f8;
    position: relative;
}

.package-card .card-head {
    background-image: linear-gradient(#fbd928eb), url(../img/package.png);
    background-position: 0% 70%;
    background-repeat: no-repeat;
    padding: 1.6rem 2rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-weight: 600;
    color: #3c3c3c;
    position: relative;
    mix-blend-mode: hard-light;
}

.package-card.premium .card-head .tag {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: #3e3e3e;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
}

.package-card.premium .card-head .bi-star-fill {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: #f5bb00;
    font-size: 1.4rem;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--yellow);
}

.card-footer {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
}

.price {
    font-size: 1.8rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    color: var(--yellow);
}

.btn-card {
    border-radius: 999px;
    color: #414141;
    font-weight: 700;
    letter-spacing: 0.35em;
    border: none;
    padding: 0.75rem;
    background: linear-gradient(0deg, var(--yellow), #fff);
    width: 200px;
    position: relative;
    top: -20px;
}

.btn-card:hover {
    color: #000;
}

.navigation .nav-rez {
    border-radius: 999px;
    color: #414141;
    font-weight: 700;
    letter-spacing: 0.35em;
    border: none;
    padding: 0.4rem;
    background: linear-gradient(0deg, var(--yellow), #fff);
}

.navigation .nav-rez:hover {
    color: #000;
}

.package-card img {
    position: absolute;
    right: 0;
    top: 40px;
}

.dealers-section {
    background: #f6f6f6;
}

.dealers-heading h2 {
    letter-spacing: 0.1em;
    color: #414141;
    font-size: 1.5rem;
    z-index: 1;
    font-weight: 800;
    position: relative;
    right: -200px;
}

.dealers-heading .title-line {
    height: 15px;
    background: var(--yellow);
    border-radius: 999px;
    margin-right: 1.5rem;
    width: 400px;
    position: absolute;
    left: 0;
    margin-top: 25px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.why-section .title-line {
    height: 15px;
    background: white;
    border-radius: 999px;
    margin-right: 1.5rem;
    width: 360px;
    position: absolute;
    left: -10px;
    margin-top: -15px;
}

.dealers-card {
    padding-bottom: 2rem;
    overflow: visible;
}

.dealers-handshake {
    position: relative;
    overflow: hidden;
    border-radius: 32px 32px 0 0;
}

.dealers-handshake::after {
    content: "";
    position: absolute;
    inset: 60% 0 0 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.5) 80%);
}

.dealers-handshake img {
    width: 100%;
    display: block;
    object-fit: cover;
    min-height: 280px;
}

.dealers-map {
    width: 120%;
    margin-top: -30rem;
}

.turkey-map {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.25));
}

.turkey-map .map-base {
    fill: #d8d8d8;
    stroke: #b9b9b9;
    stroke-width: 2;
    stroke-linejoin: round;
}

.turkey-map .map-highlight path {
    fill: var(--yellow);
    stroke: #e5b400;
    stroke-width: 2;
    stroke-linejoin: round;
}

.dealer-details {
    width: 100%;
}

.dealer-filter {
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.filter-item {
    min-width: 160px;
}

.filter-item .form-label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: #7f7f7f;
}

.filter-item .form-select {
    border-radius: 0;
    border: none;
    border-bottom: 2px solid #c6c6c6;
    padding-left: 0;
    background: transparent;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #3d3d3d;
}

.filter-item .form-select:focus {
    box-shadow: none;
    border-bottom-color: var(--yellow);
}

.dealer-info h3 {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    margin-bottom: 0.75rem;
}

.dealer-info p {
    margin-bottom: 0.35rem;
    color: #4f4f4f;
}

.info-actions .action-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    letter-spacing: 0.2em;
    position: static;
}

.anniversary-section {
    background: #f9d42e;
    position: relative;
    overflow: hidden;
}

.anniversary-card {
    position: relative;
    padding: clamp(3rem, 6vw, 5rem) 1rem;
    color: #343434;
}

.anniversary-card img {
    position: absolute;
    top: -50px;
    width: 45%;
}

.anniversary-card .anniversary-number {
    font-size: clamp(10rem, 30vw, 22rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.35);
    line-height: 0.8;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    letter-spacing: -0.05em;
}

.anniversary-card h2,
.anniversary-card p,
.anniversary-card .anniversary-line {
    position: relative;
    z-index: 1;
}

.anniversary-card h2 {
    font-size: clamp(1.8rem, 4vw, 2.1rem);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-weight: 900;
}

.anniversary-card .eyebrow {
    letter-spacing: 0.35em;
    color: #555;
}

.anniversary-line {
    width: min(200px, 60%);
    height: 3px;
    background: #3d3d3d;
    opacity: 0.6;
}

.anniversary-card .subtitle {
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    text-transform: capitalize;
    color: #343434;
    font-weight: 500;
}

.anniversary-design {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 60%;
}

.campaign-section {
    background: #f4f4f4;
}

.campaign-card {
    background: #2f2f31;
    color: #f6f6f6;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.campaign-card .campaign-content {
    padding: 2rem;
    flex: 1 1 55%;
}

.campaign-card h3 {
    letter-spacing: 0.15em;
    text-transform: capitalize;
}

.campaign-card .discount {
    text-transform: uppercase;
    color: #69d0ff;
    letter-spacing: 0.3em;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.campaign-card.campaign-dealer .discount {
    color: #ff7a7a;
}

.campaign-card p {
    line-height: 1.6;
    font-size: 0.95rem;
    width: 80%;
}

.campaign-card .campaign-media {
    flex: 1 1 0%;
    align-self: stretch;
    background: #60C2E3;
}

.campaign-card img {
    width: 250px;
    position: absolute;
    bottom: 0;
    z-index: 1;
    right: 0px;
}

.campaign-card.campaign-dealer .campaign-media {
    background: #EB595E;
}

.campaign-btn {
    width: auto;
    padding-inline: 2.5rem;
    font-size: 0.7rem;
    left: 0px;
    top: unset;
    bottom: -30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.campaign-btn:hover {
    color: #1f1f1f;
}

.blog-section {
    background: #ededed;
}

.blog-heading h2 {
    letter-spacing: 0.2em;
    color: #3f3f3f;
    font-size: 1.7rem;
    z-index: 1;
    position: relative;
    right: 280px;
    font-weight: 800;
}

.blog-section .title-line {
    height: 15px;
    background: var(--yellow);
    border-radius: 999px;
    margin-left: 1.5rem;
    width: 400px;
    position: absolute;
    right: 0;
    margin-top: 25px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.blog-card {
    background: linear-gradient(180deg, #fefefe 0%, #252525 30%, #1c1c1d 100%);
    border-radius: 28px;
    overflow: hidden;
    color: #f3f3f3;
}

.blog-media {
    position: relative;
}

.blog-media img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: saturate(1.2);
}

.blog-content {
    padding: 1.75rem;
}

.blog-content .eyebrow {
    color: var(--yellow);
    letter-spacing: 0.3em;
    font-weight: 700;
    font-size: 1.1rem;
}

.blog-content h3 {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.blog-content p {
    color: #e1e1e1;
    line-height: 1.6;
}

.blog-btn {
    width: auto;
    padding-inline: 2rem;
}

.site-footer {
    background: #fff;
    border-top: 1px solid #e1e1e1;
    color: #3b3b3b;
}

.site-footer h4 {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
    font-weight: 600;
    line-height: 2;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    letter-spacing: 0.05em;
}

.footer-links a:hover {
    color: var(--yellow);
}

.socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1e1e1f;
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.footer-copy {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: #6b6b6b;
}

.lead {
    font-size: 1.2rem;
    position: relative;
}

.package-card .tag {
    width: 100%;
    background-color: white;
    color: black;
    border-bottom: 2px solid #fbd928f2;
    padding: 5px 30px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.blog-media::before {
    content: '';
    display: block;
    background-color: #fbd92857;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.text-before-line {
    position: relative;
    margin: 0 auto;
    z-index: 0;
    --before-line-width: 70%;
}

.text-before-line::before {
    content: '';
    position: absolute;
    top: 30px;
    background-color: var(--yellow);
    width: 100%;
    height: 15px;
    border-radius: 10px;
    left: -10px;
    z-index: -1;
    right: 0;
    margin: 0 auto;
}

.dealers-heading {
    position: absolute;
    left: 0;
    top: -30px;
    display: flex !important;
    justify-content: flex-start;
}

.blog-wrap {
    width: 70%;
    margin: 0 auto;
}

.blog-wrap,
.packages-wrap {
    position: relative;
}

.blog-wrap .slide-btn,
.packages-wrap .slide-btn {
    display: none;
}

.heroCol {
    position: absolute;
    top: 350px;
    right: 0vh;
    scale: 1;
    width: 690px;
    height: 0vh;
}

.heroDoorr {
    width: 370px;
    right: 19.5vh;
    top: 11px;
    transform: rotateZ(0.1deg);
    z-index: 1;
    position: absolute;
    height: 305px;
}

.heroGarage {
    position: relative;
    right: 150px;
    top: -100px;
}

.heroPinn {
    width: 850px;
    position: relative;
    right: 200px;
    top: -350px;
}

.fr-feature-icon i {
    font-size: 5rem;
}

.fr-video-section h2,
.fr-video-section p {
    color: white;
}

.fr-cta-section .application-card {
    position: relative;
    width: 80%;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    bottom: 0px;
}

.fr-cta-section .application-tabs {
    width: 30%;
}

.fr-cta-section .application-form {
    width: 100%;
}

.fr-cta-section .application-tabs .tab {
    color: #fff;
    border: 1px solid var(--yellow);
}

.blog-page {
    background: linear-gradient(180deg, #f3f4f7 0%, #eef1f4 100%);
}

.blog-hero-surface {
    border-radius: 28px;
    padding: clamp(1.6rem, 3vw, 2.75rem);
    max-width: 1200px;
    margin: 0 auto;
}

.blog-hero-copy h1 {
    letter-spacing: 0.08em;
    color: #2f2f30;
    font-weight: 700;
}

.blog-hero-copy .lead {
    color: #4d4d4f;
    max-width: 640px;
}

.blog-hero-note {
    color: #7b7b7b;
    letter-spacing: 0.05em;
    font-size: 0.95rem;
}

.blog-hero-visual img {
    width: min(420px, 100%);
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.15));
    display: block;
}

.blog-feed-section {
    margin-top: -0.5rem;
}

.blog-feed-surface {
    border-radius: 28px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    max-width: 1200px;
    margin: 0 auto;
}

.blog-tile {
    background: #fff;
    border: 1px solid #e3e7ed;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.blog-thumb img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.blog-tile-body {
    padding: 1rem 1.15rem 1.35rem;
    gap: 0.5rem;
}

.blog-tile-body h3 {
    font-size: 1.02rem;
    color: #2f2f30;
    letter-spacing: 0.02em;
    margin-bottom: 0.35rem;
}

.blog-excerpt {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.blog-meta {
    font-size: 0.9rem;
    color: #6c6c6c;
}

.blog-link {
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #1f1f20;
    text-decoration: none;
}

.blog-link:hover {
    color: #000;
    text-decoration: underline;
}

.blog-detail-card {
    padding: clamp(1.6rem, 3vw, 3rem);
    position: relative;
    overflow: hidden;
}

.blog-detail-card::before {
    position: absolute;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle at 30% 30%, rgba(251, 217, 40, 0.28), rgba(251, 217, 40, 0));
    top: -70px;
    left: -30px;
    transform: rotate(18deg);
}

.blog-detail-card::after {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
    right: -70px;
    bottom: -90px;
    transform: rotate(-10deg);
}

.blog-article h1 {
    letter-spacing: 0.06em;
    color: #313235;
    font-weight: 700;
    font-size: clamp(1.9rem, 3vw, 2.3rem);
}

.blog-article h3 {
    font-size: 1.05rem;
    color: #3d3e42;
    letter-spacing: 0.04em;
    margin-top: 1.35rem;
    margin-bottom: 0.55rem;
}

.blog-article p {
    color: #4c5059;
    line-height: 1.7;
}

.blog-article .article-lead {
    color: #454850;
}

.blog-detail-media {
    padding: 0.85rem;
}

.blog-detail-media img {
    width: 100%;
    display: block;
}

.detail-meta {
    margin-top: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #6d717a;
    letter-spacing: 0.05em;
    font-size: 0.95rem;
}

.detail-meta .dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    display: inline-block;
    background: var(--yellow);
}

.blog-latest-section {
    margin-top: clamp(2.5rem, 5vw, 4rem);
    background: #2f3136;
}

.blog-latest-surface {
    padding: 3rem 20rem;
    color: #f9fafc;
}

.blog-latest-surface h2 {
    letter-spacing: 0.08em;
    font-size: 1.35rem;
    font-weight: 700;
}

.latest-underline {
    width: 160px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, #fbd928, rgba(255, 255, 255, 0));
    margin-left: auto;
}

.latest-card {
    background: #fff;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 450px !important;
}

.latest-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.16);
}

.latest-card .card-media img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.latest-card-body {
    padding: 0.95rem 1rem 1.1rem;
    gap: 0.55rem;
}

.latest-card-body h4 {
    font-size: 0.98rem;
    color: #303236;
    margin-bottom: 0.25rem;
    letter-spacing: 0.02em;
}

.latest-card-body p {
    color: #555a63;
    font-size: 0.93rem;
    line-height: 1.5;
    margin-bottom: 0.6rem;
}

.latest-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
}

.latest-tag {
    background: #eef2f8;
    color: #2f2f30;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
}

.latest-link {
    text-decoration: none;
    color: #1f1f20;
    padding: 0.45rem 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border: 1px solid #d5ad28;
}

.latest-link:hover {
    color: #000;
}

.dealer-detail-page {
    background: linear-gradient(180deg, #fdfdfd 0%, #f4f1e8 100%);
    padding: clamp(2rem, 4vw, 3.5rem) 0 4.5rem;
}

.dealer-detail-hero {
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.dealer-surface {
    padding: clamp(1.25rem, 3vw, 2rem);
    position: relative;
    overflow: hidden;
}

.dealer-surface::before {
    position: absolute;
    width: 210px;
    height: 210px;
    background: radial-gradient(circle at 30% 30%, rgba(251, 217, 40, 0.18), rgba(251, 217, 40, 0));
    top: -80px;
    left: -70px;
    transform: rotate(8deg);
}

.dealer-surface::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle at 70% 50%, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0));
    right: -110px;
    bottom: -120px;
    transform: rotate(-10deg);
}

.dealer-meta {
    position: relative;
    z-index: 1;
}

.dealer-code {
    background: #1f1f20;
    color: var(--yellow);
    font-weight: 800;
    letter-spacing: 0.3em;
    padding: 0.5rem 0.9rem;
    border-radius: 12px;
    border: 1px solid #1b1b1c;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.dealer-rating .score {
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #2f2f30;
}

.dealer-stars i {
    color: #f7c52b;
    font-size: 0.95rem;
}

.dealer-title {
    letter-spacing: 0.03em;
    color: #2f2f30;
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 1.9rem);
}

.dealer-status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.95rem;
    background: #eef5ec;
    color: #2b8c59;
    border: 1px solid #cbe2d1;
    border-radius: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2b8c59;
    box-shadow: 0 0 0 4px rgba(43, 140, 89, 0.15);
    display: inline-block;
}

.dealer-info-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.dealer-info-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.info-icon {
    width: 44px;
    height: 44px;
    color: #3b3b3c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.info-label {
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: #797979;
    margin-bottom: 0.2rem;
}

.dealer-actions {
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
}

.dealer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.6rem;
    border-radius: 14px;
    border: 1px solid #111;
    background: var(--yellow);
    color: #1f1f20;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.dealer-btn:hover {
    transform: translateY(-1px);
    color: #0f0f10;
}

.dealer-btn.outline {
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.dealer-gallery-section {
    padding: 0 0 clamp(2.5rem, 4vw, 3.5rem);
}

.dealer-section-head {
    margin-bottom: 0.75rem;
}

.dealer-section-head h2 {
    letter-spacing: 0.12em;
    color: #2f3136;
    text-transform: uppercase;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    margin-bottom: 0.3rem;
}

.section-lead {
    color: #6c6c6c;
}

.dealer-slider {
    position: relative;
    background: #2f3136;
    padding: 3rem 15rem;
    overflow: hidden;
}

.dealer-slider-window {
    overflow: hidden;
}

.dealer-slider-track {
    display: flex;
    transition: transform 0.45s ease;
}

.dealer-slide {
    min-width: 100%;
    user-select: none;
}

.dealer-slide img {
    width: 100%;
    height: clamp(220px, 50vw, 420px);
    object-fit: cover;
}

.dealer-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #d3c7a4;
    background: #fbd928;
    color: #1f1f20;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 2;
}

.dealer-nav:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.dealer-nav.prev {
    left: 166px;
}

.dealer-nav.next {
    right: 166px;
}

.dealer-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dealer-dot {
    width: 12px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: #b8b8b8;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.dealer-dot.active {
    background: var(--yellow);
    opacity: 1;
    border-color: #f0d02a;
}

.dealer-map-section {
    padding-top: clamp(2.5rem, 4vw, 3.5rem);
}

.dealer-map-card {
    padding: clamp(0.75rem, 2vw, 1.1rem);
}

.map-frame {
    border-radius: 16px;
    overflow: hidden;
    background: #dfe2e8;
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: none;
}

.filter-field .form-control::placeholder,
.filter-field .form-select::placeholder {
    color: #fff;
}

.about-page {
    background: linear-gradient(180deg, #fdfdfd 0%, #f6f4ea 100%);
}

.about-hero-surface {
    background: #fff;
    border: 1px solid #e5e0d0;
    border-radius: 28px;
    padding: clamp(1.8rem, 3vw, 3rem);
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(50, 50, 71, 0.08);
}

.about-hero-surface::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle at 30% 30%, rgba(251, 217, 40, 0.25), rgba(251, 217, 40, 0));
    top: -120px;
    left: -80px;
}

.about-hero-surface::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle at 60% 80%, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0));
    bottom: -160px;
    right: -120px;
}

.about-hero-title {
    letter-spacing: 0.08em;
    color: #2f2f30;
    font-weight: 800;
}

.about-hero-lead {
    color: #4d4d4f;
    max-width: 640px;
}

.about-ghost-btn {
    border: 2px solid #111;
    border-radius: 14px;
    padding: 0.75rem 1.35rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: #fff;
    color: #1f1f20;
}

.about-ghost-btn:hover {
    background: #111;
    color: #fbd928;
}

.about-badges {
    gap: 1rem;
}

.about-badge {
    background: #2f2f31;
    color: #fbd928;
    border-radius: 16px;
    padding: 0.85rem 1.1rem;
    min-width: 150px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.about-badge strong {
    display: block;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
}

.about-badge small {
    display: block;
    color: #f1f1f1;
}

.about-badge .label {
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.about-hero-visual {
    position: relative;
    max-width: 480px;
    margin-left: auto;
}

.about-photo {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid #e2d9b8;
    background: linear-gradient(180deg, #fff8da 0%, #f2e8c2 100%);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.15);
}

.about-photo img {
    width: 100%;
    display: block;
}

.about-floating-card {
    position: absolute;
    bottom: -15px;
    right: 10px;
    background: #fff;
    border-radius: 18px;
    padding: 0.9rem 1.1rem;
    border: 1px solid #dcd6c1;
    max-width: 260px;
}

.about-floating-card .mini-label {
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    color: #8b8a8a;
}

.about-floating-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2f2f30;
}

.about-stamp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid #cfc7af;
    letter-spacing: 0.14em;
    font-weight: 700;
    color: #5c5647;
}

.about-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(180deg, #fbd928, #f3c700);
    box-shadow: 0 0 0 6px rgba(251, 217, 40, 0.3);
}

.story-card {
    background: #fff;
    border: 1px solid #e8e3d4;
    border-radius: 18px;
    padding: 1.3rem 1.2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.story-card h3 {
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    color: #2f2f30;
}

.story-card p {
    color: #4d4d4f;
    margin-bottom: 0;
}

.story-card .icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #fef6ce;
    color: #111;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
}

.story-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: #f1ebd8;
    color: #524c3c;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-size: 0.85rem;
}

.about-metrics {
    background: #fff;
}

.metric-card {
    background: linear-gradient(180deg, #fdfdfd 0%, #f3f0e7 100%);
    border-radius: 18px;
    border: 1px solid #e3dcc7;
    padding: 1.25rem 1.1rem;
    text-align: center;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.metric-label {
    letter-spacing: 0.14em;
    color: #7e7866;
    font-size: 0.82rem;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1f1f20;
    letter-spacing: 0.04em;
}

.about-values {
    background: #f7f5ef;
}

.values-head h2 {
    letter-spacing: 0.08em;
    color: #2f2f30;
    font-weight: 800;
}

.values-head p {
    color: #4f4f51;
}

.value-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e3dcc7;
    padding: 1.25rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 1.05rem;
    color: #2f2f30;
    margin-top: 0.6rem;
    letter-spacing: 0.04em;
}

.value-card p {
    color: #4b4b4d;
    margin-bottom: 0;
    line-height: 1.6;
}

.value-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: #fef6ce;
    color: #111;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
}

.about-process {
    background: #fff;
}

.process-rail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.process-step {
    background: #1f1f20;
    color: #fbd928;
    border-radius: 16px;
    padding: 1.2rem 1rem;
    border: 1px solid #f0d02a;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.process-step h3 {
    color: #fff;
    font-size: 1.02rem;
    letter-spacing: 0.04em;
}

.process-step p {
    color: #f7f7f7;
    margin-bottom: 0.6rem;
}

.step-number {
    letter-spacing: 0.16em;
    font-weight: 800;
    font-size: 0.9rem;
}

.step-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: #fff;
    color: #1f1f20;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
}

.about-cta {
    background: #f7f5ef;
}

.about-cta-surface {
    background: linear-gradient(180deg, #2f2f31 0%, #1b1b1c 100%);
    border-radius: 22px;
    padding: clamp(1.5rem, 3vw, 2.4rem);
    border: 1px solid #3c3c3d;
    color: #f8f8f8;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.about-cta-surface h2 {
    letter-spacing: 0.08em;
    font-weight: 800;
}

.about-cta-surface p {
    color: #d7d7d7;
}

.homeHealth {
    position: absolute;
    bottom: 0;
    right: -8px;
}

.homeGallery {
    position: absolute;
    bottom: 0;
    right: 12px;
}

.contact-page {
    background: linear-gradient(180deg, #fdfdfd 0%, #f3efe3 100%);
}

.contact-title {
    letter-spacing: 0.08em;
    color: #2f2f30;
    font-weight: 800;
    font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.contact-lead {
    color: #4b4b4d;
    max-width: 640px;
}

.contact-chips {
    gap: 0.85rem;
}

.contact-chip {
    border-radius: 16px;
    padding: 0.85rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
}

.chip-icon {
    width: 44px;
    height: 44px;
    color: #111;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
}

.contact-chip small {
    display: block;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7b715c;
    font-size: 0.78rem;
}

.contact-chip strong {
    display: block;
    color: #2f2f30;
    font-size: 1.05rem;
}

.contact-hero-card {
    border-radius: 26px;
    padding: 36px 0;
    position: relative;
    overflow: hidden;
}

.contact-hero-card::before {
    position: absolute;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle at 25% 25%, rgba(251, 217, 40, 0.25), rgba(251, 217, 40, 0));
    top: -120px;
    left: -80px;
}

.contact-hero-card::after {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle at 70% 70%, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0));
    right: -90px;
    bottom: -120px;
}

.contact-hero-card h3 {
    color: #2f2f30;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.contact-hero-text {
    color: #4d4d4f;
}

.contact-mini-label {
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: #8b846b;
}

.status-pill {
    background: #fbd928;
    color: #0f0f10;
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    border: 1px solid #111;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.divider {
    position: relative;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0), #d6cdb0, rgba(0, 0, 0, 0));
}

.meta-block p {
    color: #4b4b4d;
    margin-bottom: 0.25rem;
}

.ghost-btn {
    border: 2px solid #111;
    border-radius: 14px;
    padding: 0.75rem 1.35rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: #fff;
    color: #1f1f20;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.ghost-btn:hover {
    background: #111;
    color: #fbd928;
}

.contact-cards {
    background: #f7f5ef;
}

.contact-card {
    background: #fff;
    border: 1px solid #e8e0c6;
    border-radius: 18px;
    padding: 1.3rem 1.2rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-card h3 {
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    color: #2f2f30;
    font-weight: 700;
}

.contact-card p {
    color: #4d4d4f;
    margin-bottom: 0.35rem;
}

.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #fef6ce;
    color: #111;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
}

.contact-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    color: #5e5a52;
    font-weight: 600;
}

.contact-meta i {
    color: #2f2f30;
}

.contact-link {
    text-decoration: none;
    color: #1f1f20;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-form-card {
    background: #fff;
    border: 1px solid #e5ddc6;
    border-radius: 22px;
    padding: clamp(1.5rem, 3vw, 2.3rem);
    box-shadow: 0 22px 50px rgba(50, 50, 71, 0.08);
}

.contact-form-card label {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #7b715c;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    background: #f9f5e6;
    border: 1px solid #e5ddc6;
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
    color: #2f2f30;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    box-shadow: 0 0 0 3px rgba(251, 217, 40, 0.35);
    border-color: #f1c933;
}

.response-chip {
    background: #2f2f31;
    color: #fbd928;
    border-radius: 12px;
    padding: 0.45rem 0.85rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-size: 0.9rem;
}

.contact-privacy {
    color: #6c6c6c;
    font-size: 0.92rem;
}

.contact-map-card {
    padding: clamp(1.3rem, 3vw, 2rem);
    color: #f5f5f5;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-map-card .map-frame {
    border-radius: 14px;
    border: 1px solid #3c3c3d;
    background: #1f1f20;
}

.contact-map-card .map-frame iframe {
    height: 340px;
}

.map-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-meta p {
    color: #d8d8da;
}

.map-actions {
    gap: 0.5rem;
}

.ghost-btn.ghost-light {
    background: rgba(255, 255, 255, 0.08);
    border-color: #fbd928;
    color: #fbd928;
}

.ghost-btn.ghost-light:hover {
    background: #fbd928;
    color: #0f0f10;
}

.application-form-report {
    border-bottom-left-radius: 24px;
    border-top-right-radius: 0;
    width: 170px;
    position: relative;
    left: 380px;
    justify-content: center;
}

.application-form-reservation {
    border-bottom-left-radius: 24px;
    border-top-right-radius: 0;
    width: 210px;
    position: relative;
    left: 175px;
    justify-content: center;
}

.dealers-card {
    width: 70%;
    margin: 0 auto;
}

.application-tabs .tab:hover {
    background: linear-gradient(0deg, var(--light-dark) 10%, #000 230%);
    color: var(--yellow);
}

.navigation .nav-rez.active {
    color: #414141;
}