@font-face {
    font-family: "Inter";
    src: url("../fonts/inter/Inter-VariableFont_opsz,wght.ttf") format("truetype");
    font-weight: 100 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter/Inter-Italic-VariableFont_opsz,wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

:root {
    --primary: #cf0e0e;
    --primary-rgb: 207, 14, 14;
    --secondary: #111216;
    --accent: #f39c12;
    --text: #ffffff;
    --text-soft: #bfc7d8;
    --line: rgba(255, 255, 255, 0.09);
    --bg-dark: #111216;
    --bg-darker: #111216;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif, serif;
    background: #ffffff;
    color: #121212;
}

img[data-icon-themed="1"] {
    filter: none !important;
}

body:not(.icons-themed-ready) img[src*="assets/icons/"][src$=".svg"],
body:not(.icons-themed-ready) img[src*="assets/icons/"][src*=".svg?"] {
    opacity: 0;
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

*::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 99px;
}

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

.container {
    width: min(1450px, 92%);
    margin: 0 auto;
}

.site-header {
    color: var(--text);
    background: #ffffff;
    border-bottom: 0;
    position: relative;
    z-index: 20;
    padding-bottom: 84px;
    transition: none;
}

.site-header::after {
    content: none;
}

.topbar,
.navbar-wrap {
    position: relative;
    z-index: 1;
}

.topbar {
    z-index: 22;
}

.navbar-wrap {
    position: fixed;
    left: 0;
    right: 0;
    top: 48px;
    z-index: 21;
    background: #ffffff;
    border-bottom: 0;
    transition: none;
}

.navbar-wrap::before {
    content: none;
}

.navbar-wrap::after {
    content: none;
}

.site-header.is-scrolled .navbar-wrap::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(107, 114, 128, 0.35);
    z-index: 0;
}

.site-header.is-scrolled .navbar-wrap::before {
    opacity: 0;
}

.topbar {
    border-bottom: 1px solid #e5e7eb;
    background: #f6f6f6;
    transition: none;
}

.site-header.is-scrolled .topbar {
    background: #f6f6f6;
}

.site-header.is-scrolled .navbar-wrap,
.site-header.is-scrolled .mobile-header {
    background: #ffffff;
}

.topbar-row {
    height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: 26px;
}

.topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1f2937;
    font-size: 14px;
}

.topbar-link .icon {
    width: 15px;
    height: 15px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(44%) sepia(96%) saturate(2787%) hue-rotate(8deg) brightness(99%) contrast(105%);
    opacity: 0.92;
}

.nav-actions .icon,
.menu .icon {
    width: 15px;
    height: 15px;
    object-fit: contain;
    filter: invert(20%) sepia(9%) saturate(693%) hue-rotate(176deg) brightness(95%) contrast(88%);
    opacity: 0.92;
}

.topbar-link:hover,
.social-link:hover,
.menu > li > a:hover {
    color: #111827;
}

.topbar-social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.social-link {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid #eceff3;
    background: #ffffff;
    color: var(--secondary);
    transition: 0.2s ease;
}

.social-svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor;
    opacity: 0.95;
}

.topbar-social .social-link[aria-label="Facebook"] {
    color: var(--secondary);
}

.topbar-social .social-link[aria-label="Instagram"] {
    color: var(--secondary);
}

.topbar-social .social-link[aria-label="LinkedIn"] {
    color: var(--secondary);
}

.topbar-social .social-link[aria-label="RSS"] {
    color: var(--secondary);
}

.social-link:hover {
    color: var(--secondary);
    opacity: 1;
    transform: translateY(-1px);
    box-shadow: none;
}

.navbar-row {
    min-height: 84px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.logo-link {
    flex: 0 0 auto;
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 84px;
    padding: 0 28px;
    margin-left: -28px;
    background: #ffffff;
    z-index: 1;
}

.logo-link::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    width: 100vw;
    background: #ffffff;
}

.logo-link::after {
    content: "";
    position: absolute;
    left: -100vw;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #ffffff;
    z-index: 2;
}

.logo {
    height: 52px;
    width: auto;
    display: block;
}

.main-nav {
    flex: 1 1 auto;
    margin-left: 0;
    display: flex;
    justify-content: center;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.menu > li {
    position: relative;
}

.menu > li > a {
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    line-height: 1;
    padding: 31px 0;
    white-space: nowrap;
    position: relative;
}

.menu-text {
    position: relative;
    display: inline-block;
}

.menu-text::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -16px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    transform: translateX(-50%) scale(0);
    transition: transform 0.2s ease;
}

.menu-has-children > a::after {
    content: "";
    width: 6px;
    height: 6px;
    margin-left: 2px;
    border-right: 1.5px solid #6b7280;
    border-bottom: 1.5px solid #6b7280;
    transform: rotate(45deg) translateY(-2px);
}

.menu > li:hover .menu-text::after,
.menu > li.is-current .menu-text::after {
    transform: translateX(-50%) scale(1);
}

.sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    min-width: 520px;
    border: 0;
    border-radius: 8px;
    background: var(--secondary);
    box-shadow: 0 12px 24px rgba(2, 8, 23, 0.24);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.2s ease;
    overflow: visible;
}

.mega-menu::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 24px;
    width: 14px;
    height: 14px;
    background: var(--secondary);
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg);
}

.menu-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-menu {
    min-width: 520px;
    left: 0;
}

.mega-menu > li {
    border-right: 1px solid rgba(148, 163, 184, 0.22);
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.mega-menu > li:nth-child(2n) {
    border-right: 0;
}

.mega-menu > li:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.mega-menu > li:nth-child(1) > a {
    border-top-left-radius: 8px;
}

.mega-menu > li:nth-child(2) > a {
    border-top-right-radius: 8px;
}

.mega-menu > li:nth-last-child(2) > a {
    border-bottom-left-radius: 8px;
}

.mega-menu > li:last-child > a {
    border-bottom-right-radius: 8px;
}

.sub-menu a {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    color: #f3f4f6;
    font-size: 14px;
    font-weight: 400;
    background: var(--secondary);
}

.sub-menu .sub-icon {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    object-fit: contain;
    filter: invert(26%) sepia(7%) saturate(647%) hue-rotate(177deg) brightness(89%) contrast(84%);
    opacity: 0.92;
}

.sub-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    align-self: stretch;
}

.icon-btn {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.desktop-search-toggle,
.mobile-search-toggle {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
}

.icon-btn .icon {
    width: 18px;
    height: 18px;
}

.contact-btn {
    --btn-bg: var(--primary);
    display: inline-flex;
    align-items: stretch;
    gap: 0;
    height: 40px;
    padding: 0;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    background: var(--btn-bg);
    overflow: hidden;
}

.contact-btn .icon {
    width: 44px;
    height: 40px;
    padding: 12px;
    background: color-mix(in srgb, var(--btn-bg) 94%, #000 6%);
    object-fit: contain;
    filter: invert(1) brightness(1.35);
}

.contact-btn span {
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
}

.contact-btn,
.hero-btn,
.detail-contact-btn,
.online-offer-submit,
.contact-page-action-btn {
    position: relative;
    isolation: isolate;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.contact-btn::after,
.hero-btn::after,
.detail-contact-btn::after,
.online-offer-submit::after,
.contact-page-action-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 58%;
    height: 100%;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.28) 50%, transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
    pointer-events: none;
    z-index: 1;
}

.contact-btn > *,
.hero-btn > *,
.detail-contact-btn > *,
.online-offer-submit > *,
.contact-page-action-btn > * {
    position: relative;
    z-index: 2;
}

.contact-btn:hover,
.hero-btn:hover,
.detail-contact-btn:hover,
.online-offer-submit:hover,
.contact-page-action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(17, 18, 22, 0.16);
}

.contact-btn:hover::after,
.hero-btn:hover::after,
.detail-contact-btn:hover::after,
.online-offer-submit:hover::after,
.contact-page-action-btn:hover::after {
    left: 150%;
}

.floating-quick-actions {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 140;
}

.floating-quick-btn {
    width: 58px;
    height: 58px;
    border-radius: 100px;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    overflow: visible;
    box-shadow: 0 14px 32px rgba(7, 94, 42, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    pointer-events: auto;
    background: #25d366;
}

.floating-quick-btn::before,
.floating-quick-btn::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    inset: -7px;
    border: 2px solid rgba(37, 211, 102, 0.5);
    animation: floatingQuickPulse 2.2s ease-out infinite;
}

.floating-quick-btn::after {
    inset: -13px;
    opacity: 0.78;
    animation-delay: 0.75s;
}

.floating-quick-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.floating-quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(7, 94, 42, 0.48);
}

.floating-quick-btn-phone {
    left: 14px;
    bottom: 56px;
    background: var(--primary);
}

.floating-quick-btn-phone::before,
.floating-quick-btn-phone::after {
    border-color: rgba(var(--primary-rgb), 0.58);
}

.floating-quick-btn-whatsapp {
    right: 14px;
    bottom: 56px;
    background: #25d366;
}

@keyframes floatingQuickPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.72;
    }
    70% {
        transform: scale(1.16);
        opacity: 0.2;
    }
    100% {
        transform: scale(1.24);
        opacity: 0;
    }
}

.desktop-search-panel {
    position: absolute;
    top: calc(100% - 2px);
    right: 150px;
    width: 240px;
    background: #ffffff;
    border-radius: 0;
    border: 1px solid #e5e7eb;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: 0.2s ease;
    z-index: 30;
}

.desktop-search-panel::before {
    content: "";
    position: absolute;
    top: -8px;
    right: 24px;
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    border-left: 1px solid #e5e7eb;
    transform: rotate(45deg);
}

.desktop-search-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desktop-search-input-wrap {
    min-height: 46px;
    border-bottom: 1px solid #eceff5;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
}

.desktop-search-input {
    width: 100%;
    border: 0;
    outline: 0;
    font-size: 16px;
    color: #111827;
}

.desktop-search-arrow {
    font-size: 22px;
    line-height: 1;
    color: #334155;
}

.desktop-search-results {
    display: none;
    max-height: 250px;
    overflow-y: auto;
}

.desktop-search-results.is-visible {
    display: block;
}

.search-result-item {
    display: block;
    padding: 10px 12px;
    font-size: 14px;
    color: #111827;
    border-bottom: 1px solid #f0f2f6;
    background: #ffffff;
}

.search-result-item:last-child {
    border-bottom: 0;
}

.search-result-item:hover {
    background: #f8fafc;
}

.hero-slider {
    height: 600px;
    position: relative;
    margin-top: 0;
    padding-top: 0;
    overflow: hidden;
    background: #0f121b;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: none;
    background-size: cover;
    background-position: center;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide:nth-child(1) {
    background-image:
        linear-gradient(90deg, rgba(17, 18, 22, 0.87) 0%, rgba(17, 18, 22, 0.62) 50%, rgba(17, 18, 22, 0.72) 100%),
        var(--hero-slide-image-1, url("../images/hero1.png")),
        linear-gradient(130deg, #111216 0%, #141821 50%, #1a2231 100%);
    background-size: cover, cover, cover;
    background-position: center, center, center;
}

.hero-slide:nth-child(2) {
    background-image:
        linear-gradient(90deg, rgba(17, 18, 22, 0.9) 0%, rgba(17, 18, 22, 0.55) 52%, rgba(17, 18, 22, 0.76) 100%),
        var(--hero-slide-image-2, url("../images/hero2.png")),
        linear-gradient(125deg, #0f1726 0%, #182338 55%, #1f2d45 100%);
    background-size: cover, cover, cover;
    background-position: center, center, center;
}

.hero-slide:nth-child(3) {
    background-image:
        linear-gradient(90deg, rgba(17, 18, 22, 0.9) 0%, rgba(17, 18, 22, 0.58) 50%, rgba(17, 18, 22, 0.74) 100%),
        var(--hero-slide-image-3, url("../images/hero3.png")),
        linear-gradient(130deg, #12182a 0%, #19273c 48%, #243651 100%);
    background-size: cover, cover, cover;
    background-position: center, center, center;
}

.hero-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    max-width: none;
    color: #ffffff;
}

.hero-badge {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 600;
}

.hero-content h1,
.hero-content .hero-title {
    margin: 0;
    font-size: 42px;
    line-height: 1.12;
    font-weight: 700;
}

.hero-content p {
    margin: 18px 0 0;
    font-size: 16.5px;
    line-height: 1.65;
    color: #d7dfec;
    max-width: 640px;
}

.hero-actions {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-btn {
    --btn-bg: var(--primary);
    height: 40px;
    padding: 0;
    border-radius: 4px;
    display: inline-flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: var(--btn-bg);
    overflow: hidden;
}

.hero-btn img {
    width: 42px;
    height: 40px;
    padding: 12px;
    background: color-mix(in srgb, var(--btn-bg) 90%, #000 10%);
    object-fit: contain;
    filter: invert(1) brightness(1.2);
}

.hero-btn-phone {
    --btn-bg: var(--primary);
    background: var(--btn-bg);
}

.hero-btn-whatsapp {
    --btn-bg: #178d47;
    background: var(--btn-bg);
}

.hero-btn span {
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(15, 18, 27, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50% !important;
    border: 2px solid rgba(255, 255, 255, 0.92);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.95;
}

.hero-dot.is-active {
    background: #ffffff;
    transform: scale(1.08);
    opacity: 1;
}

.hero-slider-transition-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.hero-slider-tile {
    position: absolute;
    opacity: 1;
    transform: scale(1);
    background-repeat: no-repeat;
    will-change: opacity, transform, filter;
}

.hero-slider-transition-layer.is-animating .hero-slider-tile {
    animation: heroTileExit 720ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
    animation-delay: var(--tile-delay, 0ms);
}

@keyframes heroTileExit {
    0% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
    100% {
        opacity: 0;
        transform: scale(0.78);
        filter: blur(1px);
    }
}

.hero-bottom-cards {
    position: relative;
    margin-top: -92px;
    z-index: 3;
    padding-bottom: 34px;
}

.hero-bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(270px, 320px);
    gap: 14px;
    align-items: stretch;
}

.hero-info-card {
    background: #f2f4f8;
    border: 1px solid rgba(120, 132, 156, 0.28);
    border-radius: 12px;
    padding: 26px 22px 22px;
}

.hero-info-card .icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: invert(21%) sepia(88%) saturate(3362%) hue-rotate(348deg) brightness(83%) contrast(96%);
}

.hero-info-card .hero-info-icon {
    opacity: 0;
}

.hero-info-card .hero-info-icon[data-icon-themed="1"] {
    opacity: 1;
}

.hero-info-card h3 {
    margin: 14px 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: #1c2a44;
    line-height: 1.3;
}

.hero-info-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #4f5d75;
}

.hero-offer-card {
    background: var(--primary);
    color: #ffffff;
    border-radius: 12px;
    padding: 26px 22px 22px;
    display: flex;
    flex-direction: column;
}

.hero-offer-card h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.hero-offer-card p {
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: #ffe3e3;
}

.hero-offer-link {
    margin-top: auto;
    padding-top: 14px;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
}

.hero-offer-link::after {
    content: "  \2192";
}

.about-section {
    padding: 62px 0 72px;
}

.about-grid {
    display: grid;
    grid-template-columns: 2.8fr 2.2fr;
    gap: 16px;
    align-items: start;
}

.about-content-badge {
    display: inline-flex;
    align-items: center;
    gap: 0;
    height: 32px;
    padding: 0 12px;
    border-radius: 4px;
    background: var(--primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.about-content h2 {
    margin: 10px 0 0;
    font-size: 25px;
    color: #1a2233;
    line-height: 1.2;
}

.about-content p {
    margin: 16px 0 0;
    font-size: 15.4px;
    line-height: 1.75;
    color: #4f5d75;
    max-width: 620px;
}

.about-feature-list {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    gap: 10px;
    max-width: 760px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1f2937;
    font-size: 15.2px;
    line-height: 1.5;
}

.about-feature-icon-wrap {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
}

.about-feature-icon {
    width: 13px;
    height: 13px;
    object-fit: contain;
    filter: none;
}

.about-media {
    margin: 0;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 2 / 1;
    background: #f3f6fb;
}

.about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #f3f6fb;
    display: block;
}

.about-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    margin: 0;
    background: var(--primary);
    color: #ffffff;
    height: 40px;
    padding: 0 14px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
}

.about-badge img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    filter: invert(1) brightness(1.2);
}

.services-section {
    padding: 8px 0 56px;
}

.services-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.services-column {
    display: contents;
}

.service-card {
    position: relative;
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    min-height: 410px;
    border: 1px solid #dde4ef;
    background: #0f172a;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
    isolation: isolate;
    transition: none;
}

.service-card::before {
    content: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, color-mix(in srgb, var(--primary) 70%, #ffffff 30%) 100%);
    z-index: 2;
}

.service-card > img {
    width: 100%;
    height: 100%;
    min-height: 410px;
    object-fit: cover;
    display: block;
    transform: none;
    transition: none;
}

.detail-contact-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
}

.detail-contact-btn {
    --btn-bg: var(--primary);
    flex: 1 1 0;
    min-width: 0;
    height: 40px;
    border-radius: 4px;
    border: 1px solid var(--btn-bg);
    background: var(--btn-bg);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow: hidden;
}

.detail-contact-btn img {
    width: 44px;
    height: 40px;
    padding: 12px;
    background: color-mix(in srgb, var(--btn-bg) 90%, #000 10%);
    object-fit: contain;
    filter: brightness(0) invert(1) !important;
    opacity: 1 !important;
}

.detail-contact-btn.is-whatsapp {
    --btn-bg: #16a34a;
    background: var(--btn-bg);
    border-color: var(--btn-bg);
}

.detail-contact-btn span {
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.7) 60%, rgba(15, 23, 42, 0.92) 100%);
}

.service-card-overlay::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(15, 23, 42, 0.24) 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.service-card-overlay > * {
    position: relative;
    z-index: 1;
}

.service-card-link {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.16);
    transition: none;
}

.service-card h3 {
    margin: 0;
    padding: 4px 10px 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.34;
    letter-spacing: 0.1px;
    max-width: calc(100% - 64px);
    text-shadow: 0 2px 8px rgba(2, 6, 23, 0.44);
}

.service-card p {
    margin: 4px 0 0;
    padding: 0 10px 10px;
    color: rgba(248, 250, 252, 0.95);
    font-size: 14.4px;
    line-height: 1.58;
    max-width: none;
    text-shadow: 0 2px 8px rgba(2, 6, 23, 0.44);
}

.service-card:hover {
    transform: none;
    border-color: #dde4ef;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
}

.service-card:hover > img {
    transform: none;
    filter: none;
}

.service-card:hover .service-card-link {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: none;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.16);
}

.yazi-1-section {
    padding: 6px 0 74px;
}

.yazi-1-content {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.yazi-1-content h2 {
    margin: 0;
    font-size: 25px;
    color: #1a2233;
    line-height: 1.25;
}

.yazi-1-content h2 span {
    color: var(--primary);
}

.yazi-1-content p {
    margin: 16px 0 0;
    font-size: 15.4px;
    color: #4f5d75;
    line-height: 1.8;
}

.yazi-2col-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.yazi-2col-grid p {
    margin: 0;
    text-align: center;
}

.yazi-1-section-secondary .yazi-1-content p:last-child {
    margin-bottom: 40px;
}

.yazi-1-section-anadolu .yazi-1-content h2 {
    margin-top: 50px;
}

.yazi-1-section-anadolu .yazi-1-content h2:first-child {
    margin-top: 35px;
}

.yazi-1-section-anadolu .yazi-1-content .yazi-2col-grid + h2 {
    margin-top: 36px;
}

.gallery-item {
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #f3f6fb;
    aspect-ratio: 2 / 1;
    min-height: 0;
    cursor: zoom-in;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    background: #f3f6fb;
    display: block;
}

.photo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(8, 11, 18, 0.86);
}

.photo-lightbox.is-open {
    display: flex;
}

.photo-lightbox-media {
    margin: 0;
    max-width: min(1200px, 92vw);
    max-height: 88vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
}

.photo-lightbox-media img {
    width: 100%;
    height: auto;
    max-height: 88vh;
    display: block;
    object-fit: contain;
    background: #0f1420;
}

.photo-lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.faq-list {
    display: grid;
    gap: 8px;
}

.faq-item {
    border: 1px solid color-mix(in srgb, var(--secondary) 86%, #ffffff 14%);
    background: var(--secondary);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: none;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 13px 14px;
    color: #ffffff;
    background: var(--secondary);
    position: relative;
    padding-right: 46px;
}

.faq-item summary h3 {
    margin: 0;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.4;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: color-mix(in srgb, var(--secondary) 90%, #000000 10%);
    z-index: 2;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-answer {
    border-top: 0;
    padding: 11px 14px 13px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14.5px;
    line-height: 1.75;
    background: color-mix(in srgb, var(--secondary) 94%, #000 6%);
}

.contact-home-section {
    padding: 8px 0 84px;
}

.contact-home-head {
    text-align: center;
    margin-bottom: 24px;
}

.contact-home-head h2 {
    margin: 0;
    font-size: 25px;
    color: #1a2233;
    line-height: 1.2;
}

.contact-home-divider {
    margin: 12px auto 0;
    max-width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-home-divider-line {
    height: 1px;
    background: rgba(26, 34, 51, 0.22);
    flex: 1 1 auto;
}

.contact-home-divider-center {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-home-divider-icon {
    width: 21px;
    height: 21px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(19%) sepia(82%) saturate(5500%) hue-rotate(355deg) brightness(92%) contrast(94%);
}

.contact-home-head p {
    margin: 12px auto 0;
    max-width: 860px;
    color: #4f5d75;
    font-size: 15.4px;
    line-height: 1.75;
}

.contact-home-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: stretch;
}

@media (min-width: 1025px) {
    .contact-home-grid:not(.contact-showcase-grid) {
        align-items: center;
    }

    .contact-home-grid:not(.contact-showcase-grid) .contact-form-card {
        align-self: center;
    }
}

.contact-form-card {
    background: #ffffff;
}

.contact-form-card h3 {
    margin: 0 0 14px;
    font-size: 44px;
    color: #1a2233;
    line-height: 1.2;
}

.contact-form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form-left {
    display: grid;
    gap: 12px;
}

.contact-input-wrap,
.contact-textarea-wrap {
    position: relative;
    display: block;
}

.contact-input-wrap img,
.contact-textarea-wrap img {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-58%);
    width: 14px;
    height: 14px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(39%) sepia(6%) saturate(1133%) hue-rotate(181deg) brightness(93%) contrast(85%);
    opacity: 0.9;
}

.contact-textarea-wrap img {
    top: 16px;
    transform: none;
}

.contact-input-wrap input,
.contact-textarea-wrap textarea {
    width: 100%;
    border: 1px solid #d8dde7;
    border-radius: 10px;
    background: #ffffff;
    color: #2a3449;
    font-family: "Inter", sans-serif, serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    outline: none;
}

.contact-input-wrap input::placeholder,
.contact-textarea-wrap textarea::placeholder {
    color: #6d778c;
    font-family: "Inter", sans-serif, serif;
    font-size: 14px;
    font-weight: 500;
}

.contact-input-wrap input {
    height: 42px;
    padding: 0 12px 0 36px;
}

.contact-textarea-wrap textarea {
    min-height: 150px;
    resize: vertical;
    padding: 12px 12px 12px 36px;
}

.contact-submit-btn {
    margin-top: 12px;
    width: 100%;
    height: 42px;
    border: 0;
    border-radius: 10px;
    background: var(--primary);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.contact-info-card {
    background: var(--secondary);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-info-item {
    min-height: 76px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info-item:last-child {
    border-bottom: 0;
}

.contact-info-item img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    margin-top: 2px;
}

.contact-info-item h4 {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.35;
}

.contact-info-item p {
    margin: 2px 0 0;
    color: #c6d0e4;
    font-size: 14px;
}

.contact-map-wrap {
    margin-top: 22px;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
    border: 1px solid #dbe1ec;
}

.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact-page-main {
    background: #f4f6fa;
}

.photo-gallery-main {
    background: #f4f6fa;
}

.about-page-main {
    background: #f7f7f8;
}

.about-page-main + .partners-section {
    margin: 0;
    padding: 30px 0 34px;
    background: #f4f6fa;
}

.photo-gallery-page-section {
    padding: 28px 0 62px;
}

.photo-gallery-layout {
    display: grid;
    grid-template-columns: calc(75% - 30px) 25%;
    column-gap: 60px;
    row-gap: 30px;
    align-items: start;
}

.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.photo-gallery-grid .gallery-item {
    min-height: 0;
}

.photo-gallery-grid .gallery-item img {
    min-height: 0;
}

.photo-gallery-content,
.photo-gallery-sidebar,
.about-page-content {
    min-width: 0;
}

.about-page-content {
    background: #ffffff;
    border: 1px solid #e7ebf2;
    border-radius: 10px;
    padding: 22px 20px;
}

.about-page-content h2 {
    margin: 0 0 16px;
    color: #111216;
    font-size: 22px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-bottom: 12px;
}

.about-page-content h3 {
    margin: 26px 0 12px;
    color: #111216;
    font-size: 19px;
    line-height: 1.25;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-bottom: 12px;
}

.about-heading-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex: 0 0 16px;
    filter: brightness(0) saturate(100%) invert(15%) sepia(94%) saturate(6210%) hue-rotate(356deg) brightness(86%) contrast(106%);
}

.about-page-content h2::after,
.about-page-content h3::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(17, 18, 22, 0.16);
}

.about-page-content h2::before,
.about-page-content h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 20px;
    height: 2px;
    background: var(--primary);
}

.about-page-content p {
    margin: 0 0 14px;
    color: #4f5d75;
    font-size: 15.4px;
    line-height: 1.75;
}

.about-page-content p:last-child {
    margin-bottom: 0;
}

.service-detail-top-image {
    margin: 0 0 14px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e6eaf1;
}

.service-detail-content {
    overflow-x: hidden;
}

.service-detail-content h2 {
    font-size: 19px;
}

.service-detail-content .service-article-list {
    margin: 0 0 16px 18px;
    padding: 0;
    color: #4f5d75;
}

.service-detail-content .service-article-list li {
    margin: 0 0 7px;
    line-height: 1.65;
}

.service-detail-top-image img {
    width: 100%;
    display: block;
    aspect-ratio: 1200 / 700;
    object-fit: cover;
    object-position: center;
}

.service-detail-content .service-inline-hero-actions {
    margin: 10px 0 16px;
    flex-wrap: wrap;
}

.service-detail-content .service-inline-hero-actions .hero-btn {
    text-decoration: none;
}

.service-detail-content .service-inline-home-link {
    color: var(--primary);
    font-weight: 600;
}

.service-page-reviews {
    margin-top: 8px;
    margin-bottom: 12px;
    padding: 0;
    border-radius: 0;
}

.service-page-reviews .reviews-slider,
.service-page-reviews .reviews-viewport {
    margin: 0;
    padding: 0;
}

.service-detail-content #icerik-musteri-yorumlari {
    margin-bottom: 8px;
}

.service-page-reviews .review-card {
    min-height: 226px;
    padding: 18px 14px 16px;
}

.service-page-reviews .review-card h4 {
    margin-top: 8px;
    font-size: 15px;
}

.service-page-reviews .review-stars {
    margin-top: 6px;
}

.service-page-reviews .review-card p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.online-offer-content > p {
    margin-bottom: 16px;
}

.online-offer-form {
    display: grid;
    gap: 14px;
    font-family: "Inter", sans-serif;
}

.offer-section-box {
    margin: 0;
    padding: 14px;
    border: 1px solid #e7ebf2;
    border-radius: 10px;
    background: #fcfdff;
}

.offer-section-box legend {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 8px;
    margin-left: 6px;
    color: #111216;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.offer-section-box legend img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(15%) sepia(94%) saturate(6210%) hue-rotate(356deg) brightness(86%) contrast(106%);
}

.offer-grid {
    display: grid;
    gap: 10px;
}

.offer-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-location-group {
    border: 1px dashed #d9dee8;
    border-radius: 8px;
    padding: 10px;
}

.online-offer-form h3 {
    margin: 0 0 8px;
    padding: 0;
    display: block;
    color: #111216;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.online-offer-form h3::before,
.online-offer-form h3::after {
    content: none;
}

.offer-field {
    display: grid;
    gap: 6px;
}

.offer-field > span {
    color: #2b3448;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.offer-field input,
.offer-field select,
.offer-field textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #dce2ec;
    background: #ffffff;
    color: #1f2937;
    font-size: 14px;
    line-height: 1.4;
    transition: border-color .2s ease, box-shadow .2s ease;
    font-family: "Inter", sans-serif;
}

.offer-field textarea {
    min-height: 110px;
    resize: vertical;
}

.offer-field input:focus,
.offer-field select:focus,
.offer-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.08);
}

.offer-field select:disabled {
    background: #f4f6fa;
    color: #8a94a6;
    cursor: not-allowed;
}

.offer-field-full {
    grid-column: 1 / -1;
}

.online-offer-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 4px;
    margin-bottom: 40px;
}

.online-offer-help {
    margin: 0;
    color: #4f5d75;
    font-size: 13.5px;
    line-height: 1.6;
}

.online-offer-submit {
    --btn-bg: #16a34a;
    appearance: none;
    border: 0;
    border-radius: 4px;
    background: var(--btn-bg);
    color: #ffffff;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: stretch;
    gap: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: opacity .18s ease;
    font-family: "Inter", sans-serif;
}

.online-offer-submit:hover {
    transform: none;
    box-shadow: none;
}

.online-offer-submit:active {
    transform: none;
    box-shadow: none;
}

.online-offer-submit::after {
    content: none !important;
    display: none !important;
}

.online-offer-submit img {
    width: 44px;
    height: 40px;
    padding: 12px;
    background: color-mix(in srgb, var(--btn-bg) 90%, #000 10%);
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.online-offer-submit span {
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
}

.online-offer-submit:disabled {
    opacity: 0.7;
    cursor: wait;
}

.online-offer-counters {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.online-counter-card {
    min-height: 108px;
    border-radius: 12px;
    border: 1px solid #e7ebf2;
    background: linear-gradient(160deg, #111216 0%, #1e2330 100%);
    padding: 14px 12px;
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
    gap: 6px;
}

.online-counter-card strong {
    color: #ffffff;
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
}

.online-counter-card span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
}

.online-offer-feature-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.online-offer-process {
    margin-top: 26px;
}

.about-page-content .online-offer-section-title {
    margin: 0 0 12px;
    color: #111216;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
    padding: 0;
    position: static;
    display: block;
}

.about-page-content .online-offer-section-title::before,
.about-page-content .online-offer-section-title::after {
    content: none;
}

.about-page-content .online-offer-section-title span {
    color: var(--primary);
}

.online-offer-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.online-process-card {
    border: 1px solid #e7ebf2;
    border-radius: 12px;
    background: #ffffff;
    padding: 14px;
}

.online-process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: color-mix(in srgb, var(--primary) 16%, #ffffff 84%);
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
}

.online-process-card h4 {
    margin: 10px 0 6px;
    color: #111216;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
}

.online-process-card p {
    margin: 0;
    color: #4f5d75;
    font-size: 14.2px;
    line-height: 1.65;
}

.online-feature-card {
    border: 1px solid #e7ebf2;
    border-radius: 12px;
    background: #ffffff;
    padding: 14px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.online-feature-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: #f7ecec;
    display: grid;
    place-items: center;
}

.online-feature-icon-wrap img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(15%) sepia(94%) saturate(6210%) hue-rotate(356deg) brightness(86%) contrast(106%);
}

.online-feature-card h3 {
    margin: 0 0 4px;
    color: #111216;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 700;
    padding: 0;
    display: block;
}

.online-feature-card h3::before,
.online-feature-card h3::after {
    content: none;
}

.online-feature-card p {
    margin: 0;
    color: #2c3a53;
    font-size: 15px;
    line-height: 1.45;
}

.online-offer-articles {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.online-offer-assurance-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.online-offer-assurance-card {
    border: 1px solid #e7ebf2;
    border-radius: 12px;
    background: #ffffff;
    padding: 16px 14px;
}

.online-offer-assurance-card h3 {
    margin: 0 0 10px;
    color: #111216;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    padding: 0;
    position: static;
    display: block;
}

.online-offer-assurance-card h3::before,
.online-offer-assurance-card h3::after {
    content: none;
}

.online-offer-assurance-card ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}

.online-offer-assurance-card li {
    color: #4f5d75;
    font-size: 14.4px;
    line-height: 1.65;
}

.online-article-card {
    border: 1px solid #e7ebf2;
    border-radius: 12px;
    background: #ffffff;
    padding: 14px;
}

.online-article-card h3 {
    margin: 0 0 12px;
    color: #111216;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
    display: block;
}

.online-article-card h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 20px;
    height: 2px;
    background: var(--primary);
}

.online-article-card h3::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(17, 18, 22, 0.16);
}

.online-article-card p {
    margin: 0;
    color: #4f5d75;
    font-size: 14.4px;
    line-height: 1.7;
}

.photo-gallery-box {
    padding: 16px;
}

.hizmetlerimiz-services-section {
    padding: 24px 0 62px;
}

.hizmetlerimiz-page-main {
    background: #ffffff;
}

.hizmetlerimiz-content-box .services-columns {
    margin-top: 12px;
}

.hizmetlerimiz-content-box .service-card h3 {
    color: #ffffff;
}

.hizmetlerimiz-content-box .service-card h3::before,
.hizmetlerimiz-content-box .service-card h3::after {
    content: none !important;
    display: none !important;
}

.hizmetlerimiz-content-box .service-card p {
    color: rgba(255, 255, 255, 0.96);
}

.hizmetlerimiz-services-section .services-columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.privacy-page-content ul {
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
}

.privacy-page-content li {
    margin-bottom: 8px;
    color: #4f5d75;
    font-size: 15.4px;
    line-height: 1.7;
}

.privacy-page-content li:last-child {
    margin-bottom: 0;
}

.privacy-page-content li::before {
    content: "- ";
    color: inherit;
}

.faq-page-list {
    margin-top: 8px;
}

.reference-grid {
    margin-top: 8px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.reference-item {
    min-height: 120px;
    border: 1px solid #e7ebf2;
    border-radius: 10px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.reference-item img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.vehicle-spec-list {
    margin-top: 12px;
    display: grid;
    gap: 18px;
}

.vehicle-spec-item {
    border: 1px solid #d9e1ec;
    border-radius: 4px;
    background: #ffffff;
    overflow: hidden;
}

.vehicle-spec-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    min-height: 320px;
}

.vehicle-spec-media {
    min-height: 320px;
    background: #f6f8fb;
    border-right: 1px solid #d9e1ec;
    display: grid;
    place-items: center;
    padding: 18px;
}

.vehicle-spec-media span {
    color: #6b7890;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.vehicle-spec-media img {
    width: 100%;
    max-width: 100%;
    max-height: 284px;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 0;
}

.vehicle-spec-title {
    margin: 0;
    color: #172337;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
    padding: 0;
}

.vehicle-spec-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
    background: #ffffff;
}

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

.vehicle-spec-cell {
    border: 1px solid #e3e9f1;
    background: #fbfcfe;
    padding: 10px 11px;
    min-height: 62px;
    display: grid;
    align-content: center;
    gap: 5px;
}

.vehicle-spec-label {
    color: #607089;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.vehicle-spec-cell strong {
    color: #16243a;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.vehicle-spec-meta {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #e3e9f1;
}

.vehicle-spec-meta p {
    margin: 0;
    color: #4a566c;
    font-size: 14.5px;
    line-height: 1.6;
}

.vehicle-spec-meta strong {
    color: #111216;
    font-weight: 700;
}

.region-page-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.region-page-card {
    margin: 0;
    min-height: 0;
    border-radius: 14px;
    border: 1px solid #dfe5ef;
    background: #f3f6fb;
    box-shadow: 0 10px 24px rgba(17, 18, 22, 0.06);
    overflow: hidden;
    position: relative;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.region-page-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(17, 18, 22, 0.06);
}

.region-page-link {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 0;
    border-radius: inherit;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
}

.region-page-thumb {
    margin: -1px -1px 0;
    width: calc(100% + 2px);
    aspect-ratio: 2 / 1;
    overflow: hidden;
    border-radius: 0;
    border-bottom: 1px solid #e4e9f2;
    background: #f3f6fb;
}

.region-page-cover {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f3f6fb;
    display: block;
    transition: transform 0.26s ease;
}

.region-page-card:hover .region-page-cover {
    transform: scale(1.05);
}

.region-page-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafd 100%);
    padding: 14px 12px 16px;
    gap: 4px;
}

.region-page-card h4 {
    margin: 0;
    color: #101827;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.38;
    text-align: center;
    letter-spacing: 0.1px;
}

.region-page-content p {
    margin: 0;
    color: #6b7a93;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}

.other-regions-section {
    margin-top: 28px;
}

.other-regions-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 14px;
}

.other-regions-head h3 {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
    padding-bottom: 0;
}

.other-regions-head h3::before,
.other-regions-head h3::after {
    content: none;
}

.other-regions-head::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(17, 18, 22, 0.16);
}

.other-regions-head::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 20px;
    height: 2px;
    background: var(--primary);
}

.other-regions-navs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.other-regions-nav {
    width: 34px;
    height: 34px;
    border: 1px solid #d8deea;
    border-radius: 8px;
    background: #ffffff;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.other-regions-nav span {
    font-size: 20px;
    line-height: 1;
}

.other-regions-nav:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #ffffff;
}

.other-regions-viewport {
    overflow: hidden;
}

.other-regions-track {
    display: flex;
    align-items: stretch;
    gap: 18px;
    transition: transform 0.35s ease;
    will-change: transform;
}

.other-region-slide {
    flex: 0 0 auto;
}

.faq-page-list .faq-item summary h3 {
    padding-bottom: 0;
    display: block;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.5;
}

.faq-page-list .faq-item summary h3::before,
.faq-page-list .faq-item summary h3::after {
    content: none;
}

.photo-gallery-sidebar {
    display: grid;
    gap: 14px;
}

.photo-sidebar-menu {
    background: #ffffff;
    border: 1px solid #e7ebf2;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.photo-sidebar-menu h3 {
    margin: 0;
    padding: 16px 14px;
    background: var(--secondary);
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.15;
    border-radius: 10px 10px 0 0;
}

.photo-sidebar-menu h3.photo-sidebar-toggle-title {
    padding: 0;
}

.photo-sidebar-menu.is-collapsed > ul {
    display: none;
}

.photo-sidebar-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 0;
    margin: 0;
    padding: 16px 14px;
    background: transparent;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.15;
    text-align: left;
    cursor: pointer;
}

.photo-sidebar-toggle-icon {
    width: 9px;
    height: 9px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(45deg);
    transition: transform 0.2s ease, margin 0.2s ease;
    margin-right: 2px;
}

.photo-sidebar-toggle[aria-expanded="true"] .photo-sidebar-toggle-icon {
    transform: rotate(225deg);
    margin-top: 4px;
}

.photo-sidebar-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.photo-sidebar-menu li {
    border-bottom: 1px solid #e6e9ef;
}

.photo-sidebar-menu li:last-child {
    border-bottom: 0;
}

.photo-sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 14px;
    color: #111216;
    font-size: 15px;
    font-weight: 600;
}

.photo-sidebar-menu a img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.photo-sidebar-dropdown summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 14px;
    color: #111216;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.photo-sidebar-dropdown summary::-webkit-details-marker {
    display: none;
}

.photo-sidebar-summary-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.photo-sidebar-summary-label img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.photo-sidebar-dropdown summary::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #7d8798;
    border-bottom: 1.5px solid #7d8798;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    margin-right: 2px;
}

.photo-sidebar-dropdown[open] summary::after {
    transform: rotate(225deg);
    margin-top: 4px;
}

.photo-sidebar-submenu {
    margin: 0;
    padding: 0 0 6px;
    list-style: none;
    border-top: 1px solid #edf1f6;
}

.photo-sidebar-submenu li {
    border-bottom: 0;
}

.photo-sidebar-submenu a {
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 500;
    color: #5a667d;
}

.photo-sidebar-submenu a img {
    width: 14px;
    height: 14px;
}

.photo-sidebar-gallery {
    background: #ffffff;
    border: 1px solid #e6e9ef;
    border-radius: 10px;
    padding: 12px;
}

.photo-sidebar-gallery h3 {
    margin: 0 0 12px;
    color: #111216;
    font-size: 17px;
    line-height: 1.15;
    font-weight: 700;
}

.photo-sidebar-gallery-slider {
    position: relative;
    border: 1px solid #e8ecf3;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f7fb;
    aspect-ratio: 4 / 3;
}

.photo-sidebar-gallery-slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.photo-sidebar-gallery-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.photo-sidebar-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #f3f6fb;
    display: block;
    transition: transform 0.3s ease;
}

.photo-sidebar-gallery-slide:hover img {
    transform: scale(1.05);
}

.photo-sidebar-gallery-nav {
    position: absolute;
    top: 50%;
    width: 34px;
    height: 34px;
    margin-top: -17px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 8px;
    background: rgba(17, 18, 22, 0.45);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: background 0.2s ease;
}

.photo-sidebar-gallery-nav:hover {
    background: rgba(17, 18, 22, 0.62);
}

.photo-sidebar-gallery-nav span {
    font-size: 22px;
    line-height: 1;
}

.photo-sidebar-gallery-nav-prev {
    left: 10px;
}

.photo-sidebar-gallery-nav-next {
    right: 10px;
}

.photo-sidebar-reviews {
    background: #ffffff;
    border: 1px solid #e6e9ef;
    border-radius: 10px;
    padding: 12px;
}

.photo-sidebar-reviews-slider {
    position: relative;
    min-height: 272px;
    border: 1px solid #e8ecf3;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f7fb;
}

.photo-sidebar-review-slide {
    position: absolute;
    inset: 0;
    padding: 18px 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.photo-sidebar-review-slide::before {
    content: "\201C";
    display: block;
    color: var(--primary);
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
}

.photo-sidebar-review-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.photo-sidebar-review-message {
    margin: 0;
    color: #2a3040;
    font-size: 14px;
    line-height: 1.6;
}

.photo-sidebar-review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.photo-sidebar-review-icon {
    width: 34px;
    height: 34px;
    margin: 0;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(17, 18, 22, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    flex: 0 0 34px;
}

.photo-sidebar-review-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.photo-sidebar-review-meta h4 {
    margin: 0;
    color: var(--secondary);
    font-size: 15px;
    line-height: 1.25;
    font-weight: 700;
}

.photo-sidebar-review-meta span {
    display: block;
    margin-top: 3px;
    color: #8b92a2;
    font-size: 12px;
    line-height: 1.35;
}

.photo-sidebar-review-nav {
    position: absolute;
    top: 50%;
    width: 34px;
    height: 34px;
    margin-top: -17px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 8px;
    background: rgba(17, 18, 22, 0.45);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: background 0.2s ease;
}

.photo-sidebar-review-nav:hover {
    background: rgba(17, 18, 22, 0.62);
}

.photo-sidebar-review-nav span {
    font-size: 22px;
    line-height: 1;
}

.photo-sidebar-review-nav-prev {
    left: 10px;
}

.photo-sidebar-review-nav-next {
    right: 10px;
}

.photo-sidebar-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 12px;
    background: #ffffff;
    border: 1px solid #e6e9ef;
    border-left: 3px solid transparent;
}

.photo-sidebar-contact img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    flex: 0 0 34px;
    align-self: center;
}

.photo-sidebar-contact strong {
    display: block;
    font-size: 19px;
    line-height: 1.1;
}

.photo-sidebar-contact span {
    display: block;
    margin-top: 4px;
    color: #4f5d75;
    font-size: 13px;
    line-height: 1.4;
}

.photo-sidebar-contact-phone {
    border-left-color: var(--primary);
}

.photo-sidebar-contact-phone strong {
    color: var(--primary);
}

.photo-sidebar-contact-phone img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(94%) saturate(6210%) hue-rotate(356deg) brightness(86%) contrast(106%);
}

.photo-sidebar-contact-whatsapp {
    border-left-color: #00a651;
}

.photo-sidebar-contact-whatsapp strong {
    color: #00a651;
}

.photo-sidebar-contact-whatsapp img {
    filter: brightness(0) saturate(100%) invert(36%) sepia(86%) saturate(1805%) hue-rotate(118deg) brightness(96%) contrast(102%);
}

.contact-page-hero {
    position: relative;
    overflow: hidden;
    background-color: var(--secondary);
    background-image:
        linear-gradient(0deg, rgba(17, 18, 22, 0.52), rgba(17, 18, 22, 0.52)),
        url("../images/headerbacround.png");
    background-size: 45% auto;
    background-repeat: no-repeat;
    background-position: center top;
    padding: 50px 0 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.inner-page .contact-page-hero {
    margin-top: 0;
    padding-top: 50px;
}

.contact-page-hero-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.contact-page-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 600;
}

.hizmetlerimiz-page-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hizmetlerimiz-page-region {
    font-size: 19px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
}

.contact-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    flex-wrap: nowrap;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.contact-breadcrumb-home {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
}

.contact-breadcrumb-home img {
    width: 14px;
    height: 14px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.contact-breadcrumb-sep {
    opacity: 0.8;
}

.contact-breadcrumb-current {
    color: #ffffff;
}

.contact-page-section {
    padding-bottom: 80px;
}

.contact-showcase-section {
    padding-top: 28px;
    padding-bottom: 0;
}

.contact-showcase-section-duplicate {
    margin: 0 0 25px;
}

.contact-showcase-branch-header {
    background: var(--secondary);
    padding: 24px 0;
    margin: 24px 0 49px;
}

.contact-showcase-branch-header h2 {
    margin: 0;
    text-align: center;
    color: #ffffff;
    font-size: 25px;
    font-weight: 500;
    line-height: 1;
}

.contact-showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
    gap: 24px;
    align-items: stretch;
}

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

.contact-showcase-grid > * {
    min-width: 0;
}

.contact-showcase-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-showcase-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
}

.contact-showcase-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 10px;
    align-items: center;
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.45);
    padding: 6px 0 0;
}

.contact-showcase-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: end;
}

.contact-showcase-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.contact-showcase-text h3 {
    margin: 0;
    font-size: 16.5px;
    color: #1b2435;
    line-height: 1.15;
}

.contact-showcase-text p {
    margin: 4px 0 0;
    font-size: 15px;
    color: #3f4a5e;
    line-height: 1.35;
}

.contact-showcase-map {
    min-height: 310px;
    margin-top: 12px;
    flex: 1 1 auto;
    overflow: hidden;
    border: 1px solid #e6e9ef;
    border-radius: 0;
}

.contact-showcase-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact-showcase-form {
    background: #f4f5f7;
    border: 1px solid #e3e7ee;
    padding: 14px;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
    align-self: stretch;
}

.contact-showcase-input-wrap,
.contact-showcase-textarea-wrap {
    position: relative;
    display: block;
}

.contact-showcase-input-wrap img,
.contact-showcase-textarea-wrap img {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.contact-showcase-textarea-wrap img {
    top: 14px;
    transform: none;
}

.contact-showcase-input-wrap input,
.contact-showcase-textarea-wrap textarea {
    width: 100%;
    border: 1px solid #d8dee8;
    background: #ffffff;
    color: #1f2937;
    font-size: 15px;
    padding-left: 36px;
}

.contact-showcase-input-wrap input {
    height: 54px;
}

.contact-showcase-textarea-wrap textarea {
    min-height: 210px;
    resize: vertical;
    padding-top: 14px;
}

.contact-showcase-submit {
    width: 100%;
    height: 44px;
    border: 0;
    border-radius: 4px;
    background: var(--primary);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-top: auto;
}

.contact-page-map {
    height: 390px;
    overflow: hidden;
}

.contact-page-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact-page-card {
    margin: -58px auto 0;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e3e8f0;
    padding: 20px;
    position: relative;
    z-index: 15;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 18px;
}

.contact-page-form h2 {
    margin: 0;
    color: #1a2233;
    font-size: 26px;
    line-height: 1.2;
}

.contact-page-form > p {
    margin: 8px 0 14px;
    color: #7a8396;
    font-size: 13px;
    line-height: 1.6;
}

.contact-page-form .contact-form-layout {
    gap: 12px;
}

.contact-page-form .contact-input-wrap input {
    height: 40px;
}

.contact-page-form .contact-textarea-wrap textarea {
    min-height: 132px;
}

.contact-page-form .contact-submit-btn {
    width: 100%;
    height: 42px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    justify-content: center;
    border: 0;
    margin-top: 12px;
    cursor: pointer;
}

.contact-page-info {
    background-image:
        linear-gradient(0deg, rgba(7, 11, 20, 0.78), rgba(7, 11, 20, 0.78)),
        url("../images/hero3.png");
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    padding: 18px 14px 14px;
}

.contact-page-info > h3 {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.25;
}

.contact-page-info > p {
    margin: 8px 0 10px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    line-height: 1.6;
}

.contact-page-info .contact-info-item {
    min-height: 42px;
    padding: 8px 0;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-page-info .contact-info-item img {
    width: 14px;
    height: 14px;
}

.contact-page-info .contact-info-item h4 {
    font-size: 12px;
    color: #ffffff;
    margin: 0;
}

.contact-page-info-note {
    margin: 10px 0 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    line-height: 1.6;
}

.contact-page-info-actions {
    display: grid;
    gap: 8px;
}

.contact-page-action-btn {
    height: 40px;
    border-radius: 4px;
    display: inline-flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    overflow: hidden;
}

.contact-page-action-btn-primary {
    --btn-bg: var(--primary);
    background: var(--primary);
}

.contact-page-action-btn-secondary {
    --btn-bg: var(--primary);
    background: var(--primary);
}

.contact-page-action-btn .icon,
.contact-page-form .contact-submit-btn .icon {
    width: 44px;
    height: 40px;
    padding: 13px;
    background: color-mix(in srgb, var(--btn-bg) 90%, #000 10%);
    object-fit: contain;
    filter: invert(1) brightness(1.35);
}

.contact-page-action-btn span {
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
}

.partners-section {
    margin: 30px 0 34px;
}

.partners-box {
    background: #f7f7f8;
    border: 1px solid #eceff3;
    border-radius: 8px;
    padding: 18px 14px 16px;
}

.about-page-main + .partners-section .partners-box {
    background: #f4f6fa;
    border-color: #e3e8f1;
}

.partners-box h4 {
    margin: 0 0 10px;
    text-align: center;
    color: #111827;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.partners-divider {
    margin: 0 auto 16px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.partners-divider-line {
    height: 1px;
    background: #d9dde4;
    flex: 1 1 auto;
}

.partners-divider-center {
    display: none;
}

.partners-divider-icon {
    display: none;
}

.partners-viewport {
    overflow: hidden;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.35s ease;
    will-change: transform;
}

.partner-item {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: #ffffff;
    border: 1px solid #e9edf3;
    border-radius: 2px;
    padding: 14px 16px;
    position: relative;
}

.partner-item::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 0;
    height: 2px;
    background: var(--primary);
}

.partner-item img {
    max-width: 100%;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none !important;
}

@media (max-width: 1100px) {
    .partners-box {
        padding: 16px 12px 14px;
    }

    .partners-box h4 {
        margin-bottom: 8px;
        font-size: 25px;
    }

    .partners-divider {
        margin-bottom: 14px;
    }
}

@media (max-width: 767px) {
    .partners-section {
        margin: 20px 0 18px;
    }

    .partners-box {
        padding: 14px 10px 12px;
    }

    .partners-box h4 {
        margin-bottom: 8px;
        font-size: 25px;
        line-height: 1.2;
    }

    .partners-divider {
        margin-bottom: 12px;
    }

    .partner-item {
        min-height: 84px;
        padding: 12px 10px;
    }

    .partner-item img {
        max-height: 40px;
    }

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

    .service-card {
        min-height: 300px;
    }

    .service-card > img {
        min-height: 300px;
    }
}

.site-footer {
    padding: 0;
}

.footer-modern {
    background: #ffffff;
    color: var(--secondary);
    border-top: 1px solid #e5e7eb;
}

.footer-modern-main {
    padding: 46px 0 36px;
    display: grid;
    grid-template-columns: 1.15fr 1.3fr 1fr;
    gap: 34px;
    align-items: start;
}

.footer-modern-logo {
    display: block;
}

.footer-modern-brand p {
    margin: 18px 0 0;
    color: #4b5563;
    max-width: 320px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-modern-social {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-modern-social-link {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    background: var(--primary);
    color: #ffffff;
    border: 1px solid var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-modern-social-link:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.footer-modern-social-svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.footer-modern-menu h4,
.footer-modern-contact h4 {
    margin: 0;
    font-size: 19px;
    color: var(--secondary);
}

.footer-modern-title-decoration {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 18px 0;
}

.footer-modern-title-decoration span {
    display: block;
    height: 2px;
    border-radius: 99px;
    background: var(--primary);
}

.footer-modern-title-decoration span:first-child {
    width: 62px;
}

.footer-modern-title-decoration span:last-child {
    width: 18px;
}

.footer-modern-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    columns: 2;
    column-gap: 28px;
}

.footer-modern-menu li {
    break-inside: avoid;
    margin: 0 0 20px;
}

.footer-modern-menu a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #374151;
    font-size: 15px;
}

.footer-modern-menu a::before {
    content: "›";
    color: var(--primary);
    font-size: 15px;
    line-height: 1;
}

.footer-modern-menu a:hover {
    color: var(--secondary);
}

.footer-modern-contact-list {
    display: grid;
    gap: 20px;
}

.footer-modern-contact-item {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 10px;
    align-items: start;
}

.footer-modern-contact-link {
    color: inherit;
}

.footer-modern-contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 4px;
    background: var(--primary);
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    overflow: hidden;
    position: relative;
}

.footer-modern-contact-icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    object-fit: contain;
    object-position: center;
    filter: brightness(0) invert(1);
    display: block;
    margin: 0;
    transform: translate(-50%, -50%);
}

.footer-modern-contact-item strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.2;
}

.footer-modern-contact-item span {
    display: block;
    margin-top: 2px;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.35;
}

.footer-modern-bottom {
    background: var(--primary);
    border-top: 1px solid var(--primary);
}

.footer-modern-bottom-row {
    min-height: 66px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #ffffff;
    font-size: 15px;
    text-align: center;
}

@media (max-width: 1100px) {
    .footer-modern-main {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 34px 0 28px;
    }

    .footer-modern-menu ul {
        columns: 2;
    }

    .footer-modern-menu h4,
    .footer-modern-contact h4 {
        font-size: 19px;
    }

    .footer-modern-title-decoration {
        margin: 18px 0;
    }

    .footer-modern-menu a {
        font-size: 15px;
    }

    .footer-modern-menu a::before {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .footer-modern-brand p {
        font-size: 14px;
        max-width: none;
    }

    .footer-modern-menu ul {
        columns: 2;
        column-gap: 20px;
    }

    .footer-modern-menu h4,
    .footer-modern-contact h4 {
        font-size: 19px;
    }

    .footer-modern-title-decoration {
        margin: 18px 0;
    }

    .footer-modern-menu a {
        font-size: 15px;
    }

    .footer-modern-menu a::before {
        font-size: 15px;
    }

    .footer-modern-bottom-row {
        min-height: 64px;
        flex-direction: column;
        justify-content: center;
        font-size: 15px;
        padding: 14px 0;
        text-align: center;
    }
}

.footer-logo {
    height: 52px;
    width: auto;
    display: block;
}

.footer-v2 {
    background: linear-gradient(90deg, var(--secondary) 0 31%, #14161c 31% 100%);
    color: #b8c0d3;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-v2-row {
    display: grid;
    grid-template-columns: 1.05fr 2.35fr;
    gap: 0;
}

.footer-v2-brand {
    padding: 68px 26px 62px 6px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--secondary);
}

.footer-v2-brand p {
    margin: 16px 0 0;
    max-width: 320px;
    line-height: 1.7;
    font-size: 14px;
    letter-spacing: 0;
    word-spacing: 0;
    color: #c2c9d7;
}

.footer-v2-copy-col p {
    margin: 16px 0 0;
    max-width: 320px;
    line-height: 1.7;
    font-size: 14px;
    letter-spacing: 0;
    word-spacing: 0;
    color: #c2c9d7;
}

.footer-v2-brand h5 {
    margin: 32px 0 22px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.accent-dot {
    color: var(--primary);
    font-size: 1.08em;
    line-height: 0;
}

.footer-v2 .accent-dot {
    font-size: 1.24em;
}

.footer-v2-social {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-v2-social-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.footer-v2-social-item .social-box {
    width: 30px;
    height: 30px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-v2-social .icon {
    width: 13px;
    height: 13px;
    object-fit: contain;
    filter: invert(1) brightness(1.2);
}

.footer-v2-feed-links {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #aeb8cc;
    font-size: 13px;
    line-height: 1.35;
}

.footer-v2-feed-links a {
    color: #dce3f1;
    text-decoration: none;
}

.footer-v2-feed-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-v2-feed-links-bottom {
    margin-top: 6px;
    justify-content: center;
}

.footer-v2-main {
    padding: 44px 10px 58px 16px;
    background: #14161c;
}

.footer-v2-top {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 30px;
    padding-bottom: 22px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-v2-top-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #dce3f1;
    font-size: 14px;
}

.footer-v2-top-address {
    max-width: 330px;
    line-height: 1.45;
}

.footer-v2-top-item .icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    filter: invert(1) brightness(1.15);
}

.footer-v2-btn {
    margin-left: auto;
    height: 40px;
    padding: 0 16px;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-v2-btn .icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    filter: invert(1) brightness(1.2);
}

.footer-copyright {
    background: var(--secondary);
    color: #c3cbdb;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 26px 0;
    font-size: 14px;
    text-align: center;
}

.footer-v2-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.footer-v2-col {
    padding-top: 12px;
}

.footer-v2-col h4 {
    margin: 10px 0 13px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
}

.footer-v2-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 9px;
}

.footer-v2-col li {
    line-height: 1.45;
}

.footer-v2-col a,
.footer-v2-col p,
.footer-hours span {
    color: #aeb8cb;
    font-size: 14px;
}

.footer-links-list > li > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 2px 0;
}

.footer-link-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    filter: invert(77%) sepia(9%) saturate(428%) hue-rotate(182deg) brightness(92%) contrast(91%);
    opacity: 0.9;
}

.footer-v2-col a:hover {
    color: #ffffff;
}

.footer-dropdown {
    margin: 0;
}

.footer-dropdown summary {
    list-style: none;
    cursor: pointer;
    color: #aeb8cb;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.summary-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-dropdown summary::-webkit-details-marker {
    display: none;
}

.footer-dropdown summary::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #8f9ab0;
    border-bottom: 1.5px solid #8f9ab0;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    margin-top: -3px;
}

.footer-dropdown[open] summary::after {
    transform: rotate(-135deg);
    margin-top: 2px;
}

.footer-dropdown > ul {
    margin-top: 8px;
    padding-left: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    gap: 7px;
}

.footer-hours li {
    display: grid;
    gap: 4px;
    margin-bottom: 10px;
}

.footer-hours strong {
    font-size: 14px;
    color: #ffffff;
}

.footer-hours li:last-child {
    margin: 0;
}

.mobile-header,
.mobile-menu-overlay,
.mobile-menu-panel {
    display: none;
}

@media (max-width: 1100px) {
    .desktop-search-panel {
        display: none;
    }

    .hero-slider {
        height: 500px;
        margin-top: 0;
        padding-top: 0;
    }

    .hero-content {
        max-width: 100%;
        padding-right: 28px;
    }

    .hero-content h1,
    .hero-content .hero-title {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.6;
    }

    .hero-actions {
        flex-wrap: wrap;
    }

    .hero-dots {
        bottom: 14px;
    }

    .hero-bottom-cards {
        margin-top: -52px;
        padding-bottom: 20px;
    }

    .hero-bottom-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .about-section {
        padding: 22px 0 48px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-content h2 {
        font-size: 22px;
    }

    .about-content p {
        font-size: 15px;
        max-width: none;
    }

    .about-media {
        width: 100%;
        aspect-ratio: auto;
    }

    .about-media img {
        width: 100%;
        height: auto;
    }

    .about-feature-list {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-flow: row;
        gap: 9px;
    }

    .about-feature-item {
        font-size: 15px;
    }

    .services-section {
        padding: 4px 0 48px;
    }

    .services-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-column {
        display: contents;
    }

    .service-card {
        min-height: 340px;
    }

    .service-card > img {
        min-height: 340px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .yazi-1-section {
        padding: 4px 0 58px;
    }

    .yazi-1-content h2 {
        font-size: 22px;
    }

    .yazi-1-content p {
        font-size: 15px;
        line-height: 1.75;
    }

    .yazi-2col-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gallery-item {
        min-height: 0;
    }

    .gallery-item img {
        min-height: 0;
    }

    .footer-v2 {
        background: #14161c;
    }

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

    .footer-v2-brand {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 34px 0 34px;
        margin-left: -10px;
        margin-right: -10px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .footer-v2-main {
        padding: 24px 0 34px;
    }

    .footer-v2-top {
        flex-wrap: wrap;
        gap: 16px 24px;
    }

    .footer-v2-top-address {
        max-width: none;
    }

    .footer-v2-btn {
        margin-left: 0;
    }

    .footer-v2-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-v2-col {
        padding-top: 0;
    }

    .footer-v2-col + .footer-v2-col {
        padding-top: 8px;
    }

    .footer-v2-col h4 {
        margin-bottom: 16px;
    }

    .footer-v2-brand p,
    .footer-v2-copy-col p {
        max-width: none;
    }

    body {
        padding-top: 78px;
    }

    .site-header {
        padding-bottom: 0;
    }

    .topbar,
    .navbar-wrap {
        display: none;
    }

    .mobile-header {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 85;
        background: #ffffff;
        border-top: 0;
        border-bottom: 0;
        transition: none;
    }

    .inner-page .mobile-header {
        background: #ffffff;
        border-bottom: 0;
    }

    .mobile-header::after {
        content: none;
    }

    .site-header.is-scrolled .mobile-header::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 1px;
        background: rgba(107, 114, 128, 0.35);
        z-index: 0;
    }

    .mobile-search-bar {
        display: none;
        background: #ffffff;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .mobile-search-bar.is-open {
        display: block;
    }

    .mobile-search-input-wrap {
        min-height: 60px;
        padding: 0 8px 0 10px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-search-input {
        width: 100%;
        border: 0;
        outline: 0;
        background: transparent;
        color: #111827;
        font-size: 16px;
        font-weight: 500;
    }

    .mobile-search-close {
        width: 44px;
        height: 44px;
        border: 0;
        background: transparent;
        font-size: 28px;
        color: #0f172a;
        cursor: pointer;
        line-height: 1;
    }

    .mobile-search-results {
        display: none;
        max-height: 240px;
        overflow-y: auto;
        background: #ffffff;
    }

    .mobile-search-results.is-visible {
        display: block;
    }

    .mobile-header-row {
        min-height: 78px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        overflow: visible;
    }

    .mobile-logo-link {
        position: relative;
        display: inline-flex;
        align-items: center;
        min-height: 78px;
        padding: 0 30px;
        margin-left: -30px;
        background: #ffffff;
        z-index: 1;
    }

    .mobile-logo-link::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        right: 100%;
        width: 100vw;
        background: #ffffff;
    }

    .mobile-logo-link::after {
        content: "";
        position: absolute;
        left: -100vw;
        right: 0;
        bottom: 0;
        height: 1px;
        background: #ffffff;
        z-index: 2;
    }

    .mobile-logo {
        width: auto;
        height: 50px;
        display: block;
    }

    .mobile-actions {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-icon-btn {
        width: 36px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #1f2937;
        border: 0;
        background: #f6f6f6;
        border-radius: 8px;
        padding: 0;
        cursor: pointer;
    }

    .mobile-icon-btn.mobile-search-toggle {
        background: #f6f6f6 !important;
        border-radius: 8px;
    }

    .mobile-icon-btn .icon {
        width: 18px;
        height: 18px;
        object-fit: contain;
        filter: invert(20%) sepia(9%) saturate(693%) hue-rotate(176deg) brightness(95%) contrast(88%);
        opacity: 0.95;
    }

    .mobile-action-svg {
        width: 20px;
        height: 20px;
        display: block;
        fill: currentColor;
        opacity: 0.95;
    }

    .mobile-search-svg {
        width: 19px;
        height: 19px;
    }

    .mobile-whatsapp-icon {
        width: 18px !important;
        height: 18px !important;
    }

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        border: 0;
        border-radius: 8px;
        background: var(--primary);
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 0;
        cursor: pointer;
    }

    .mobile-menu-toggle span {
        width: 16px;
        height: 2px;
        background: #ffffff;
        display: block;
    }

    .mobile-menu-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(17, 18, 22, 0.78);
        opacity: 0;
        visibility: hidden;
        transition: 0.25s ease;
        z-index: 80;
    }

    .mobile-menu-panel {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: min(380px, 100%);
        height: 100vh;
        background: #ffffff;
        transform: translateX(100%);
        transition: transform 0.25s ease;
        z-index: 90;
        overflow-y: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .mobile-menu-panel::-webkit-scrollbar {
        width: 0;
        height: 0;
        display: none;
    }

    .mobile-menu-panel.is-open {
        transform: translateX(0);
    }

    .mobile-menu-open .mobile-menu-overlay {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-open {
        overflow: hidden;
    }

    .mobile-menu-head {
        min-height: 78px;
        padding: 0 7px;
        background: #ffffff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: sticky;
        top: 0;
        z-index: 2;
    }

    .mobile-menu-logo {
        height: 50px;
        width: auto;
        display: block;
    }

    .mobile-menu-close {
        width: 40px;
        height: 40px;
        border: 0;
        border-radius: 8px;
        background: #ffffff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: relative;
        cursor: pointer;
    }

    .mobile-menu-close span {
        position: absolute;
        width: 16px;
        height: 2px;
        background: var(--primary);
        display: block;
    }

    .mobile-menu-close span:first-child {
        transform: rotate(45deg);
    }

    .mobile-menu-close span:last-child {
        transform: rotate(-45deg);
    }

    .mobile-nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        border-top: 1px solid #e5e7eb;
        border-bottom: 1px solid #e5e7eb;
        background: #ffffff;
    }

    .mobile-nav-list li {
        border-bottom: 1px solid #e8ebf0;
    }

    .mobile-nav-list li:last-child {
        border-bottom: 0;
    }

    .mobile-nav-list a {
        min-height: 62px;
        padding: 0 14px;
        display: flex;
        align-items: center;
        gap: 10px;
        color: #0f172a;
        font-size: 16px;
        font-weight: 400;
        background: #ffffff;
    }

    .mobile-submenu-toggle {
        width: 100%;
        min-height: 62px;
        padding: 0 14px;
        border: 0;
        background: #ffffff;
        color: #0f172a;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 16px;
        font-weight: 400;
        font-family: inherit;
        cursor: pointer;
    }

    .mobile-submenu-toggle > span:first-child {
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .mobile-submenu-arrow {
        width: 8px;
        height: 8px;
        border-right: 1.5px solid #64748b;
        border-bottom: 1.5px solid #64748b;
        transform: rotate(45deg);
        transition: transform 0.2s ease;
    }

    .mobile-has-children.is-open .mobile-submenu-arrow {
        transform: rotate(-135deg);
    }

    .mobile-submenu {
        list-style: none;
        margin: 0;
        padding: 0;
        display: none;
        border-top: 1px solid #edf1f6;
    }

    .mobile-has-children.is-open .mobile-submenu {
        display: block;
    }

    .mobile-submenu li {
        border-bottom: 1px solid #edf1f6;
    }

    .mobile-submenu li:last-child {
        border-bottom: 0;
    }

    .mobile-submenu a {
        min-height: 50px;
        padding: 0 16px 0 40px;
        display: flex;
        align-items: center;
        gap: 8px;
        color: #334155;
        font-size: 14px;
        font-weight: 400;
        background: #ffffff;
    }

    .mobile-submenu .icon {
        width: 15px;
        height: 15px;
        opacity: 0.72;
    }

    .mobile-nav-list .icon {
        width: 18px;
        height: 18px;
        object-fit: contain;
        filter: invert(14%) sepia(22%) saturate(1116%) hue-rotate(185deg) brightness(95%) contrast(94%);
        opacity: 0.8;
    }

    .mobile-contact-boxes {
        padding: 14px;
        display: grid;
        gap: 10px;
        background: #f3f4f6;
    }

    .mobile-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        color: #0f172a;
        font-size: 14px;
        line-height: 1.4;
        background: #ffffff;
        border-radius: 8px;
        padding: 10px 10px;
    }

    .mobile-contact-item .icon {
        width: 17px;
        height: 17px;
        margin-top: 1px;
        object-fit: contain;
        filter: invert(27%) sepia(13%) saturate(418%) hue-rotate(183deg) brightness(89%) contrast(88%);
    }

    .mobile-menu-social {
        margin-top: auto;
        min-height: 82px;
        padding: 0 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
        background: #ffffff;
        border-top: 1px solid #e5e7eb;
    }

    .mobile-social-link {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--secondary);
        color: #ffffff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(19, 29, 50, 0.85);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }

    .mobile-social-svg {
        width: 18px;
        height: 18px;
        fill: currentColor;
        display: block;
    }

}

@media (max-width: 1100px) {
    .container {
        width: calc(100% - 20px);
    }

    .menu {
        gap: 12px;
    }

    .menu > li > a {
        font-size: 14px;
    }

    .topbar-link {
        font-size: 13px;
    }

    .floating-quick-btn-phone,
    .floating-quick-btn-whatsapp {
        bottom: 14px;
    }

    .floating-quick-btn-phone {
        left: 12px;
    }

    .floating-quick-btn-whatsapp {
        right: 12px;
    }
}

@media (max-width: 767px) {
    .services-columns {
        grid-template-columns: 1fr;
    }

    .yazi-1-section {
        padding: 2px 0 46px;
    }

    .faq-item summary {
        padding: 12px 13px;
        padding-right: 44px;
    }

    .faq-item summary h3 {
        font-size: 14.5px;
    }

    .faq-answer {
        font-size: 14.5px;
        padding: 10px 13px 12px;
    }

    .gallery-item {
        min-height: 0;
    }

    .gallery-item img {
        min-height: 0;
    }

}

@media (max-width: 1100px) {
    .contact-home-section {
        padding: 8px 0 66px;
    }

    .contact-home-head h2 {
        font-size: 22px;
    }

    .contact-home-head p {
        font-size: 15px;
    }

    .contact-home-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-form-card h3 {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .contact-home-section {
        padding: 6px 0 54px;
    }

    .contact-form-card h3 {
        font-size: 30px;
    }

    .contact-form-layout {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-input-wrap input {
        height: 44px;
    }

    .contact-textarea-wrap textarea {
        min-height: 130px;
    }

    .contact-map-wrap {
        height: 400px;
        margin-top: 16px;
    }
}

@media (min-width: 1101px) {
    .contact-page-form .contact-input-wrap img {
        top: 14px;
        transform: none;
    }

    .photo-gallery-sidebar {
        position: sticky;
        top: 110px;
    }
}

@media (max-width: 1100px) {
    .contact-showcase-grid {
        grid-template-columns: 1fr;
    }

    .contact-showcase-cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contact-showcase-text h3 {
        font-size: 16px;
        font-weight: 700;
    }

    .contact-showcase-text p {
        font-size: 16px;
    }

    .contact-showcase-map {
        min-height: 270px;
    }

    .inner-page .contact-page-hero {
        margin-top: 0;
        padding-top: 44px;
    }

    .contact-page-hero {
        padding: 44px 0 38px;
        background-size: 115% auto;
        background-position: center center;
    }

    .contact-page-hero h1 {
        font-size: 22px;
    }

    .contact-page-map {
        height: 350px;
    }

    .contact-page-card {
        margin-top: -46px;
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px;
    }

    .photo-gallery-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .photo-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hizmetlerimiz-services-section .services-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reference-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .vehicle-spec-media {
        min-height: 250px;
        border-right: 0;
        border-bottom: 1px solid #d9e1ec;
    }

    .vehicle-spec-title {
        font-size: 22px;
    }

    .region-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .region-page-card,
    .region-page-link {
        min-height: 0;
    }

    .offer-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .online-offer-counters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .online-offer-process-grid,
    .online-offer-assurance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .online-feature-card h3 {
        font-size: 17px;
    }

    .online-feature-card p {
        font-size: 15px;
    }

    .online-offer-articles {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .contact-page-main .contact-showcase-form {
        display: none;
    }

    .contact-showcase-section-duplicate {
        margin: 0 0 25px;
    }

    .contact-showcase-branch-header {
        padding: 20px 0;
        margin: 18px 0 43px;
    }

    .contact-showcase-branch-header h2 {
        font-size: 25px;
    }

    .contact-showcase-section {
        padding-top: 18px;
    }

    .contact-showcase-item {
        grid-template-columns: 52px 1fr;
    }

    .contact-showcase-icon {
        width: 52px;
        height: 52px;
    }

    .contact-showcase-icon img {
        width: 20px;
        height: 20px;
    }

    .contact-showcase-text h3 {
        font-size: 16px;
    }

    .contact-showcase-text p {
        font-size: 16px;
    }

    .contact-showcase-map {
        min-height: 230px;
    }

    .contact-page-hero {
        padding: 38px 0 34px;
        background-size: 155% auto;
        background-position: center center;
    }

    .contact-page-hero-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-page-hero h1 {
        font-size: 22px;
    }

    .contact-breadcrumb {
        font-size: 13px;
    }

    .contact-page-section {
        padding-bottom: 56px;
    }

    .contact-page-map {
        height: 290px;
    }

    .contact-page-card {
        margin-top: -36px;
        padding: 14px;
        border-radius: 10px;
    }

    .contact-page-info {
        order: 1;
    }

    .contact-page-form {
        order: 2;
    }

    .contact-page-form h2 {
        font-size: 22px;
    }

    .contact-page-form > p {
        font-size: 12px;
    }

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

    .photo-gallery-page-section {
        padding: 18px 0 48px;
    }

    .photo-gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hizmetlerimiz-services-section .services-columns {
        grid-template-columns: 1fr;
    }

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

    .vehicle-spec-media {
        min-height: 190px;
    }

    .vehicle-spec-content {
        padding: 14px 12px;
        gap: 10px;
    }

    .vehicle-spec-title {
        font-size: 20px;
    }

    .vehicle-spec-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .vehicle-spec-cell {
        min-height: 56px;
        padding: 9px 10px;
    }

    .vehicle-spec-cell strong {
        font-size: 15px;
    }

    .region-page-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .region-page-card,
    .region-page-link {
        min-height: 0;
    }

    .region-page-card h4 {
        font-size: 15px;
    }

    .other-regions-section {
        margin-top: 22px;
    }

    .other-regions-head {
        margin-bottom: 12px;
        gap: 10px;
    }

    .other-regions-nav {
        width: 32px;
        height: 32px;
    }

    .other-regions-nav span {
        font-size: 18px;
    }

    .offer-section-box {
        padding: 12px;
    }

    .offer-grid-2,
    .offer-grid-3 {
        grid-template-columns: 1fr;
    }

    .online-offer-counters,
    .online-offer-feature-grid {
        grid-template-columns: 1fr;
    }

    .online-offer-process-grid,
    .online-offer-assurance-grid {
        grid-template-columns: 1fr;
    }

    .online-feature-card {
        grid-template-columns: 52px minmax(0, 1fr);
    }

    .online-feature-icon-wrap {
        width: 52px;
        height: 52px;
    }

    .online-feature-icon-wrap img {
        width: 24px;
        height: 24px;
    }

    .online-feature-card h3 {
        font-size: 17px;
    }

    .online-feature-card p {
        font-size: 15px;
    }

    .online-offer-submit {
        width: 100%;
        justify-content: flex-start;
    }

    .online-offer-actions {
        align-items: stretch;
    }

    .service-page-reviews {
        margin-top: 4px;
        padding: 0;
    }

    .service-page-reviews .review-card {
        min-height: 210px;
        padding: 16px 12px 14px;
    }

    .photo-sidebar-menu h3 {
        font-size: 16px;
    }

    .photo-sidebar-menu a {
        font-size: 15px;
    }

    .photo-sidebar-dropdown summary {
        font-size: 15px;
    }

    .photo-sidebar-submenu a {
        font-size: 15px;
    }

    .photo-sidebar-gallery h3 {
        font-size: 16px;
    }

    .photo-sidebar-reviews-slider {
        min-height: 250px;
    }

    .photo-sidebar-review-slide {
        padding: 16px 14px 18px;
    }

    .photo-sidebar-review-nav {
        width: 32px;
        height: 32px;
        margin-top: -16px;
    }

    .photo-sidebar-review-nav span {
        font-size: 20px;
    }

    .photo-sidebar-gallery-nav {
        width: 32px;
        height: 32px;
        margin-top: -16px;
    }

    .photo-sidebar-gallery-nav span {
        font-size: 20px;
    }

    .photo-sidebar-contact strong {
        font-size: 18px;
    }
}

@media (max-width: 991.98px) {
    /* Prevent iOS Safari focus zoom on form controls. */
    input,
    textarea,
    select {
        font-size: 16px !important;
    }
}

:root {
    --theme-unified-radius: 4px;
}

body :is(
    [class*="-card"],
    [class*="-box"],
    [class*="-btn"],
    [class*="-badge"],
    [class*="-panel"],
    [class*="-menu"],
    [class*="-dropdown"],
    [class*="-overlay"],
    [class*="-link"],
    [class*="-map"],
    [class*="-form"],
    [class*="-nav"],
    button,
    input,
    select,
    textarea,
    iframe
) {
    border-radius: var(--theme-unified-radius) !important;
}

body .service-card::before,
body .service-card-overlay::before {
    border-radius: var(--theme-unified-radius) !important;
}

body .mobile-menu-panel {
    border-radius: 0 !important;
}

body .logo-link,
body .mobile-logo-link,
body .mobile-menu-head,
body .mobile-menu-close {
    border-radius: 0 !important;
}

/* Keep fixed phone/whatsapp buttons fully circular despite global radius normalization. */
body .floating-quick-btn {
    border-radius: 100px !important;
}

body .floating-quick-btn::before,
body .floating-quick-btn::after {
    border-radius: 100px !important;
}

