:root {
    --elif-navy: #061c35;
    --elif-navy-dark: #031426;
    --elif-gold: #c89535;
    --elif-gold-light: #e1b45c;
    --elif-white: #ffffff;
    --elif-gray: #f5f7fa;
    --elif-text: #1b2735;
    --elif-muted: #6b7280;
    --elif-border: rgba(6, 28, 53, 0.12);
    --elif-shadow: 0 18px 45px rgba(6, 28, 53, 0.13);
    --elif-radius: 8px;
    --elif-font: Inter, Arial, Helvetica, sans-serif;
}

.elif-nakliyat-site,
.elif-nakliyat-site * {
    box-sizing: border-box;
}

.elif-nakliyat-site {
    margin: 0;
    background: var(--elif-white);
    color: var(--elif-text);
    font-family: var(--elif-font);
}

.elif-nakliyat-site a {
    color: inherit;
    text-decoration: none;
}

.elif-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.elif-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--elif-white);
    box-shadow: 0 8px 24px rgba(6, 28, 53, 0.08);
    font-family: var(--elif-font);
}

.elif-topbar {
    background: var(--elif-navy-dark);
    color: var(--elif-white);
    font-size: 13px;
}

.elif-topbar .elif-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 34px;
}

.elif-topbar-links {
    display: flex;
    gap: 22px;
    align-items: center;
    margin-left: auto;
}

.elif-topbar-links a,
.elif-topbar-links span {
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
}

.elif-topbar-links a::before,
.elif-topbar-links span::before {
    color: var(--elif-gold-light);
    margin-right: 7px;
}

.elif-topbar-links a:nth-child(1)::before,
.elif-topbar-links a:nth-child(2)::before {
    content: "☎";
}

.elif-topbar-links a:nth-child(3)::before {
    content: "✉";
}

.elif-topbar-links span::before {
    content: "⌖";
}

.elif-header-main {
    background: var(--elif-white);
}

.elif-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    min-height: 78px;
}

.elif-logo img {
    display: block;
    width: 185px;
    height: auto;
}

.elif-primary-nav > ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.elif-primary-nav li {
    position: relative;
}

.elif-primary-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 12px;
    color: var(--elif-navy);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.elif-primary-nav .has-submenu > a::after {
    content: "⌄";
    margin-left: 6px;
    color: var(--elif-gold);
}

.elif-primary-nav ul ul {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 245px;
    padding: 10px;
    margin: 0;
    list-style: none;
    background: var(--elif-white);
    border: 1px solid var(--elif-border);
    border-radius: var(--elif-radius);
    box-shadow: var(--elif-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.18s ease;
}

.elif-primary-nav li:hover > ul,
.elif-primary-nav li:focus-within > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.elif-primary-nav ul ul a {
    min-height: 38px;
    padding: 0 10px;
    border-radius: 6px;
    text-transform: none;
    font-size: 14px;
}

.elif-primary-nav ul ul a:hover {
    background: var(--elif-gray);
    color: var(--elif-gold);
}

.elif-header-cta,
.elif-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 6px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.elif-header-cta,
.elif-btn-gold {
    background: linear-gradient(135deg, var(--elif-gold), var(--elif-gold-light));
    color: var(--elif-white) !important;
    box-shadow: 0 12px 25px rgba(200, 149, 53, 0.28);
}

.elif-btn-dark {
    background: var(--elif-navy);
    color: var(--elif-white) !important;
    box-shadow: 0 12px 25px rgba(6, 28, 53, 0.2);
}

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

.elif-header-cta *,
.elif-btn-gold *,
.elif-btn-dark *,
.elif-btn-outline-light * {
    color: var(--elif-white) !important;
}

.elif-btn:hover,
.elif-header-cta:hover {
    transform: translateY(-1px);
}

.elif-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--elif-border);
    border-radius: 6px;
    background: var(--elif-white);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.elif-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--elif-navy);
}

.elif-main {
    overflow: hidden;
}

.elif-hero {
    position: relative;
    min-height: 610px;
    padding: 88px 0 120px;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.83) 34%, rgba(255, 255, 255, 0.28) 57%, rgba(3, 20, 38, 0.06) 100%), var(--elif-hero-image);
    background-size: cover;
    background-position: center;
}

.elif-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 150px;
    background: linear-gradient(0deg, rgba(255,255,255,1), rgba(255,255,255,0));
    pointer-events: none;
}

.elif-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 530px) 390px;
    justify-content: space-between;
    gap: 40px;
    align-items: start;
}

.elif-kicker,
.elif-section-head span,
.elif-page-hero span,
.elif-why span {
    display: block;
    color: var(--elif-gold);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.elif-hero h1 {
    margin: 12px 0 18px;
    color: var(--elif-navy);
    font-size: 58px;
    line-height: 1.04;
    letter-spacing: 0;
    font-weight: 900;
}

.elif-hero-copy p:not(.elif-kicker) {
    max-width: 440px;
    margin: 0 0 24px;
    color: #344255;
    font-size: 16px;
    line-height: 1.8;
}

.elif-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.elif-quote-panel {
    width: 100%;
    padding: 28px;
    background: linear-gradient(160deg, var(--elif-navy), var(--elif-navy-dark));
    color: var(--elif-white);
    border-radius: var(--elif-radius);
    box-shadow: var(--elif-shadow);
}

.elif-quote-panel h2 {
    margin: 0 0 8px;
    color: var(--elif-gold-light);
    font-size: 24px;
    line-height: 1.2;
}

.elif-quote-panel p {
    margin: 0 0 18px;
    color: rgba(255,255,255,0.82);
}

.elif-quote-form {
    display: grid;
    gap: 10px;
}

.elif-quote-form label {
    display: block;
}

.elif-quote-form label span,
.elif-hp {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.elif-quote-form input,
.elif-quote-form select,
.elif-quote-form textarea {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 5px;
    background: var(--elif-white);
    color: var(--elif-text);
    font: 600 14px/1.4 var(--elif-font);
}

.elif-quote-form textarea {
    resize: vertical;
}

.elif-quote-form button {
    min-height: 48px;
    border: 0;
    border-radius: 5px;
    background: linear-gradient(135deg, var(--elif-gold), var(--elif-gold-light));
    color: var(--elif-white);
    font-weight: 900;
    cursor: pointer;
}

.elif-form-note,
.elif-quote-panel .elif-form-note {
    margin: 2px 0 0;
    text-align: center;
    color: rgba(255,255,255,0.74);
    font-size: 12px;
}

.elif-form-feedback {
    display: none;
    padding: 10px 12px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 13px;
}

.elif-form-feedback.is-success {
    display: block;
    background: #e7f7ef;
    color: #12613d;
}

.elif-form-feedback.is-error {
    display: block;
    background: #ffeaea;
    color: #8d2525;
}

.elif-trust-wrap {
    position: relative;
    z-index: 4;
    margin-top: -72px;
}

.elif-trust {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: var(--elif-white);
    border: 1px solid var(--elif-border);
    border-radius: var(--elif-radius);
    box-shadow: var(--elif-shadow);
}

.elif-trust div {
    min-height: 145px;
    padding: 24px 18px;
    text-align: center;
    border-right: 1px solid var(--elif-border);
}

.elif-trust div:last-child {
    border-right: 0;
}

.elif-line-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: var(--elif-navy);
    border: 2px solid rgba(6, 28, 53, 0.16);
    border-radius: 50%;
    font-size: 23px;
}

.elif-trust strong,
.elif-trust small {
    display: block;
}

.elif-trust strong {
    color: var(--elif-navy);
    font-size: 14px;
}

.elif-trust small {
    margin-top: 8px;
    color: var(--elif-muted);
    font-size: 12px;
    line-height: 1.5;
}

.elif-section {
    padding: 82px 0;
    background: var(--elif-white);
}

.elif-districts-section,
.elif-blog-section {
    background: linear-gradient(180deg, var(--elif-white), var(--elif-gray));
}

.elif-section-head {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.elif-section-head h2,
.elif-why h2,
.elif-rich-content h2,
.elif-contact-card h2 {
    margin: 8px 0 0;
    color: var(--elif-navy);
    font-size: 34px;
    line-height: 1.16;
    font-weight: 900;
}

.elif-section-head p {
    color: var(--elif-muted);
    line-height: 1.8;
}

.elif-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.elif-service-card,
.elif-blog-card,
.elif-review-grid article,
.elif-contact-card {
    background: var(--elif-white);
    border: 1px solid var(--elif-border);
    border-radius: var(--elif-radius);
    box-shadow: 0 14px 34px rgba(6, 28, 53, 0.08);
}

.elif-service-card a,
.elif-blog-card a {
    display: block;
    height: 100%;
    color: inherit;
}

.elif-service-card img,
.elif-blog-card img,
.elif-rich-content img {
    width: 100%;
    aspect-ratio: 4 / 2.55;
    object-fit: cover;
    display: block;
    border-radius: var(--elif-radius) var(--elif-radius) 0 0;
}

.elif-service-card span[data-icon] {
    display: inline-flex;
    width: 44px;
    height: 44px;
    margin: -22px 0 0 18px;
    position: relative;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--elif-gold), var(--elif-gold-light));
    border-radius: 50%;
    color: var(--elif-white);
    box-shadow: 0 8px 20px rgba(200, 149, 53, 0.25);
}

.elif-service-card span[data-icon]::before {
    content: "✦";
    font-size: 18px;
}

.elif-service-card h3,
.elif-blog-card h3 {
    margin: 14px 18px 10px;
    color: var(--elif-navy);
    font-size: 20px;
    line-height: 1.25;
}

.elif-service-card p,
.elif-blog-card p {
    margin: 0 18px 16px;
    color: var(--elif-muted);
    font-size: 14px;
    line-height: 1.65;
}

.elif-service-card em,
.elif-blog-card em {
    display: inline-block;
    margin: 0 18px 20px;
    color: var(--elif-gold);
    font-style: normal;
    font-weight: 900;
    font-size: 13px;
}

.elif-district-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.elif-district-grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 12px;
    background: var(--elif-white);
    border: 1px solid var(--elif-border);
    border-radius: 6px;
    color: var(--elif-navy);
    font-size: 12.5px;
    font-weight: 800;
    text-align: center;
    line-height: 1.25;
}

.elif-district-grid a:hover,
.elif-district-grid a:focus {
    background: var(--elif-gold);
    color: var(--elif-white);
    border-color: var(--elif-gold);
}

.elif-district-grid-small {
    grid-template-columns: repeat(2, 1fr);
}

.elif-center {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.elif-why {
    padding: 58px 0;
    color: var(--elif-white);
    background: linear-gradient(90deg, rgba(3, 20, 38, 0.94), rgba(6, 28, 53, 0.88)), url('../images/why-elif-nakliyat-bg.webp') center/cover no-repeat;
}

.elif-why-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.5fr;
    gap: 44px;
    align-items: center;
}

.elif-why h2 {
    color: var(--elif-white);
}

.elif-why p {
    max-width: 540px;
    color: rgba(255,255,255,0.78);
    line-height: 1.8;
}

.elif-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.elif-stats div {
    min-height: 140px;
    padding: 22px 16px;
    border-left: 1px solid rgba(255,255,255,0.14);
    text-align: center;
}

.elif-stats strong {
    display: block;
    color: var(--elif-gold-light);
    font-size: 36px;
    line-height: 1;
}

.elif-stats span {
    display: block;
    margin-top: 12px;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    text-transform: none;
}

.elif-review-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.elif-review-grid article {
    padding: 24px;
}

.elif-stars {
    color: #f2a900;
    font-size: 17px;
    margin-bottom: 14px;
}

.elif-review-grid p {
    color: var(--elif-text);
    line-height: 1.7;
}

.elif-review-grid strong,
.elif-review-grid small {
    display: block;
}

.elif-review-grid small {
    color: var(--elif-muted);
    margin-top: 3px;
}

.elif-blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.elif-blog-card small {
    display: block;
    margin: 18px 18px 0;
    color: var(--elif-muted);
    font-size: 12px;
}

.elif-bottom-cta,
.elif-footer-cta {
    background: linear-gradient(135deg, var(--elif-gold), var(--elif-gold-light));
    color: var(--elif-white);
}

.elif-bottom-cta .elif-container,
.elif-footer-cta .elif-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 90px;
}

.elif-bottom-cta strong,
.elif-footer-cta strong {
    color: var(--elif-white);
    font-size: 21px;
    line-height: 1.3;
}

.elif-site-footer {
    color: rgba(255,255,255,0.76);
    background: var(--elif-navy-dark);
}

.elif-footer-main {
    padding: 56px 0 24px;
    background: linear-gradient(180deg, var(--elif-navy), var(--elif-navy-dark));
}

.elif-footer-grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(4, 1fr);
    gap: 36px;
}

.elif-footer-logo {
    width: 150px;
    height: auto;
    display: block;
    margin-bottom: 18px;
}

.elif-footer-grid h2 {
    margin: 0 0 16px;
    color: var(--elif-white);
    font-size: 15px;
    text-transform: uppercase;
}

.elif-footer-grid a,
.elif-footer-grid span,
.elif-footer-grid p {
    display: block;
    color: rgba(255,255,255,0.76);
    font-size: 14px;
    line-height: 1.75;
}

.elif-footer-grid a:hover {
    color: var(--elif-gold-light);
}

.elif-socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.elif-socials a {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    text-transform: uppercase;
    font-size: 11px;
}

.elif-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 38px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 12px;
    line-height: 1.5;
}

.elif-footer-bottom span,
.elif-footer-bottom a {
    font-size: 12px;
    line-height: 1.5;
}

.elif-page-hero {
    padding: 86px 0;
    background: linear-gradient(90deg, rgba(3,20,38,0.94), rgba(6,28,53,0.72)), url('../images/hero-istanbul-nakliyat.webp') center/cover;
    color: var(--elif-white);
}

.elif-page-hero h1 {
    max-width: 820px;
    margin: 10px 0 14px;
    color: var(--elif-white);
    font-size: 48px;
    line-height: 1.08;
    font-weight: 900;
}

.elif-page-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,0.82);
    line-height: 1.8;
}

.elif-content-grid,
.elif-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 44px;
    align-items: start;
}

.elif-content-grid > * {
    min-width: 0;
}

.elif-content-grid > img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--elif-radius);
    box-shadow: var(--elif-shadow);
}

.elif-rich-content {
    color: var(--elif-text);
    font-size: 16px;
    line-height: 1.82;
}

.elif-rich-content > img {
    margin-bottom: 28px;
    border-radius: var(--elif-radius);
}

.elif-rich-content h2 {
    margin: 34px 0 14px;
    font-size: 28px;
}

.elif-rich-content h3 {
    color: var(--elif-navy);
    font-size: 22px;
}

.elif-rich-content p {
    margin: 0 0 18px;
    color: #344255;
}

.elif-rich-content ul,
.elif-rich-content ol {
    padding-left: 22px;
    color: #344255;
}

.elif-rich-content strong {
    color: var(--elif-navy);
}

.elif-quote-panel-light {
    background: var(--elif-white);
    color: var(--elif-text);
}

.elif-quote-panel-light h2,
.elif-quote-panel-light p {
    color: var(--elif-navy);
}

.elif-quote-panel-light .elif-form-note {
    color: var(--elif-muted);
}

.elif-quote-panel-light input,
.elif-quote-panel-light select,
.elif-quote-panel-light textarea {
    border-color: var(--elif-border);
}

.elif-quote-panel-sticky {
    position: sticky;
    top: 116px;
}

.elif-contact-card {
    padding: 30px;
}

.elif-contact-card p {
    color: var(--elif-muted);
    line-height: 1.8;
}

.elif-faq {
    display: grid;
    gap: 12px;
}

.elif-faq details {
    padding: 18px 20px;
    border: 1px solid var(--elif-border);
    border-radius: var(--elif-radius);
    background: var(--elif-white);
}

.elif-faq summary {
    color: var(--elif-navy);
    font-weight: 900;
    cursor: pointer;
}

.elif-article {
    max-width: 860px;
}

.elif-article h1 {
    color: var(--elif-navy);
    font-size: 42px;
    line-height: 1.1;
}

.elif-floating-actions {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 1100;
    display: grid;
    gap: 10px;
}

.elif-floating-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 132px;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 8px;
    color: var(--elif-white) !important;
    font: 900 14px/1 var(--elif-font);
    box-shadow: 0 12px 28px rgba(3,20,38,0.25);
}

.elif-floating-actions a::before {
    content: "";
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    background: currentColor;
    display: block;
}

.elif-float-whatsapp::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12.04 2C6.58 2 2.13 6.45 2.13 11.91c0 1.75.46 3.45 1.33 4.95L2 22l5.29-1.39a9.88 9.88 0 0 0 4.75 1.21h.01c5.46 0 9.91-4.45 9.91-9.91S17.5 2 12.04 2Zm0 18.13h-.01a8.2 8.2 0 0 1-4.18-1.14l-.3-.18-3.14.82.84-3.06-.2-.31a8.2 8.2 0 1 1 6.99 3.87Zm4.5-6.14c-.25-.12-1.46-.72-1.69-.8-.23-.08-.39-.12-.56.12-.17.25-.64.8-.79.97-.15.17-.29.19-.54.06-.25-.12-1.04-.38-1.98-1.22-.73-.65-1.23-1.46-1.37-1.71-.14-.25-.02-.38.11-.5.11-.11.25-.29.37-.43.12-.14.17-.25.25-.41.08-.17.04-.31-.02-.43-.06-.12-.56-1.35-.77-1.85-.2-.48-.41-.42-.56-.43h-.48c-.17 0-.43.06-.66.31-.23.25-.87.85-.87 2.07s.89 2.4 1.02 2.57c.12.17 1.75 2.67 4.24 3.74.59.25 1.05.41 1.41.52.59.19 1.13.16 1.56.1.48-.07 1.46-.6 1.67-1.18.21-.58.21-1.08.15-1.18-.06-.1-.23-.16-.48-.29Z'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12.04 2C6.58 2 2.13 6.45 2.13 11.91c0 1.75.46 3.45 1.33 4.95L2 22l5.29-1.39a9.88 9.88 0 0 0 4.75 1.21h.01c5.46 0 9.91-4.45 9.91-9.91S17.5 2 12.04 2Zm0 18.13h-.01a8.2 8.2 0 0 1-4.18-1.14l-.3-.18-3.14.82.84-3.06-.2-.31a8.2 8.2 0 1 1 6.99 3.87Zm4.5-6.14c-.25-.12-1.46-.72-1.69-.8-.23-.08-.39-.12-.56.12-.17.25-.64.8-.79.97-.15.17-.29.19-.54.06-.25-.12-1.04-.38-1.98-1.22-.73-.65-1.23-1.46-1.37-1.71-.14-.25-.02-.38.11-.5.11-.11.25-.29.37-.43.12-.14.17-.25.25-.41.08-.17.04-.31-.02-.43-.06-.12-.56-1.35-.77-1.85-.2-.48-.41-.42-.56-.43h-.48c-.17 0-.43.06-.66.31-.23.25-.87.85-.87 2.07s.89 2.4 1.02 2.57c.12.17 1.75 2.67 4.24 3.74.59.25 1.05.41 1.41.52.59.19 1.13.16 1.56.1.48-.07 1.46-.6 1.67-1.18.21-.58.21-1.08.15-1.18-.06-.1-.23-.16-.48-.29Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.elif-float-call::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2Z'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.elif-float-whatsapp {
    background: #17b65a;
}

.elif-float-call {
    background: var(--elif-navy);
}

@media (max-width: 1120px) {
    .elif-header-inner {
        grid-template-columns: auto auto 1fr;
    }

    .elif-menu-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .elif-primary-nav {
        position: fixed;
        inset: 112px 0 auto;
        display: none;
        max-height: calc(100vh - 112px);
        overflow: auto;
        background: var(--elif-white);
        border-top: 1px solid var(--elif-border);
        box-shadow: var(--elif-shadow);
    }

    .elif-primary-nav.is-open {
        display: block;
    }

    .elif-primary-nav > ul {
        display: grid;
        width: min(680px, calc(100% - 40px));
        margin: 18px auto;
    }

    .elif-primary-nav a {
        justify-content: space-between;
        padding: 0 4px;
        border-bottom: 1px solid var(--elif-border);
    }

    .elif-primary-nav ul ul {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: 0;
        box-shadow: none;
        padding: 0 0 8px 14px;
    }

    .elif-primary-nav li.is-open > ul {
        display: block;
    }

    .elif-header-cta {
        display: none;
    }

    .elif-hero-grid,
    .elif-content-grid,
    .elif-contact-grid {
        grid-template-columns: 1fr;
    }

    .elif-quote-panel-sticky {
        position: static;
    }

    .elif-service-grid,
    .elif-blog-grid,
    .elif-review-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .elif-trust {
        grid-template-columns: repeat(3, 1fr);
    }

    .elif-why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .elif-container {
        width: min(100% - 28px, 1180px);
    }

    .elif-topbar .elif-container {
        justify-content: center;
    }

    .elif-topbar-links {
        width: 100%;
        justify-content: center;
        gap: 12px;
        overflow-x: auto;
        padding: 0 2px;
    }

    .elif-topbar-links a:nth-child(2),
    .elif-topbar-links a:nth-child(3) {
        display: none;
    }

    .elif-header-inner {
        min-height: 68px;
        grid-template-columns: auto auto;
    }

    .elif-logo img {
        width: 150px;
    }

    .elif-primary-nav {
        top: 102px;
        max-height: calc(100vh - 102px);
    }

    .elif-hero {
        min-height: auto;
        padding: 62px 0 96px;
        background-position: 58% center;
    }

    .elif-hero h1,
    .elif-page-hero h1 {
        font-size: 38px;
    }

    .elif-hero-copy p:not(.elif-kicker) {
        font-size: 15px;
    }

    .elif-trust-wrap {
        margin-top: -45px;
    }

    .elif-trust,
    .elif-service-grid,
    .elif-blog-grid,
    .elif-review-grid,
    .elif-stats,
    .elif-footer-grid {
        grid-template-columns: 1fr;
    }

    .elif-trust div {
        border-right: 0;
        border-bottom: 1px solid var(--elif-border);
    }

    .elif-district-grid,
    .elif-district-grid-small {
        grid-template-columns: repeat(2, 1fr);
    }

    .elif-section {
        padding: 58px 0;
    }

    .elif-section-head h2,
    .elif-why h2,
    .elif-rich-content h2 {
        font-size: 28px;
    }

    .elif-bottom-cta .elif-container,
    .elif-footer-cta .elif-container,
    .elif-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 0;
    }

    .elif-floating-actions {
        right: 14px;
        bottom: 14px;
    }

    .elif-floating-actions a {
        min-width: 112px;
        min-height: 42px;
        font-size: 13px;
    }
}

@media (max-width: 440px) {
    .elif-actions {
        display: grid;
    }

    .elif-district-grid,
    .elif-district-grid-small {
        grid-template-columns: 1fr;
    }

    .elif-quote-panel {
        padding: 22px;
    }
}
