:root {
    --hi-primary: rgb(241, 197, 58);
    --hi-primary-dark: #d4a914;
    --hi-text: #1d1d1d;
    --hi-muted: #6f6f6f;
    --hi-white: #ffffff;
    --hi-soft: #fff8e3;
    --hi-border: rgba(0, 0, 0, 0.08);
    --hi-radius: 18px;
    --hi-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
    --hi-transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
}
.hi-category-desc {
    background: #f6f8fb;
    border-radius: 24px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

    .hi-category-desc::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 180px;
        height: 180px;
        background: rgba(21, 101, 52, 0.08);
        border-radius: 0 0 0 100%;
    }

.hi-content-card {
    position: relative;
    z-index: 2;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.hi-mini-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(21, 101, 52, 0.10);
    color: #156534;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.hi-content-card h2 {
    font-size: 32px;
    line-height: 1.25;
    font-weight: 800;
    color: #172033;
    margin-bottom: 16px;
}

.hi-content-card > p {
    font-size: 16px;
    line-height: 1.8;
    color: #5d6678;
    margin-bottom: 26px;
}

.hi-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 28px 0;
}

.hi-info-box {
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 22px;
    transition: all 0.3s ease;
}

    .hi-info-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
    }

    .hi-info-box strong {
        display: block;
        color: #172033;
        font-size: 17px;
        font-weight: 800;
        margin-bottom: 8px;
    }

    .hi-info-box p {
        color: #667085;
        font-size: 14px;
        line-height: 1.7;
        margin: 0;
    }

.hi-category-list {
    background: linear-gradient(135deg, #156534, #0f3f24);
    border-radius: 20px;
    padding: 26px;
    margin-top: 28px;
}

    .hi-category-list h3 {
        color: #fff;
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 18px;
    }

    .hi-category-list ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 22px;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .hi-category-list li {
        position: relative;
        color: rgba(255, 255, 255, 0.92);
        font-size: 15px;
        padding-left: 22px;
    }

        .hi-category-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: #ffd35a;
            font-weight: 800;
        }

@media (max-width: 991px) {
    .hi-info-grid {
        grid-template-columns: 1fr;
    }

    .hi-category-list ul {
        grid-template-columns: 1fr;
    }

    .hi-content-card h2 {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .hi-category-desc {
        padding: 18px;
        border-radius: 18px;
    }

    .hi-content-card {
        padding: 22px;
        border-radius: 18px;
    }

        .hi-content-card h2 {
            font-size: 23px;
        }
}
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--hi-text);
    background: #ffffff;
}

a {
    text-decoration: none !important;
    transition: var(--hi-transition);
}

.container {
    max-width: 1240px;
}

/* HEADER */
.hi-header {
    position: relative;
    z-index: 999;
    background: #ffffff;
}

/* TOP BAR */
.hi-topbar {
    background: linear-gradient(90deg, #fff8df, #fff3c2);
    border-bottom: 1px solid rgba(241, 197, 58, 0.35);
}

.hi-topbar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hi-topbar-left,
.hi-topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hi-topbar a,
.hi-topbar span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3a3a3a;
    font-size: 13px;
    font-weight: 700;
}

.hi-topbar i {
    color: #b88a00;
}

/* NAVBAR */
.hi-navbar {
    min-height: 88px;
    background: #ffffff;
    border-bottom: 1px solid var(--hi-border);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.045);
}

.hi-navbar .container {
    display: flex;
    align-items: center;
}

/* LOGO */
.hi-logo {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.hi-logo-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--hi-primary), var(--hi-primary-dark));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #171717;
    font-size: 23px;
    box-shadow: 0 12px 26px rgba(241, 197, 58, 0.32);
    flex-shrink: 0;
}

.hi-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.18;
}

.hi-logo-text strong {
    color: var(--hi-text);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.hi-logo-text small {
    margin-top: 4px;
    color: var(--hi-muted);
    font-size: 12px;
    font-weight: 600;
}

/* DESKTOP MENU */
.hi-menu {
    align-items: center;
    gap: 4px;
}

.hi-menu .nav-link {
    position: relative;
    padding: 32px 13px !important;
    color: #292929;
    font-size: 15px;
    font-weight: 800;
}

.hi-menu .nav-link::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 24px;
    height: 3px;
    border-radius: 20px;
    background: var(--hi-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.hi-menu .nav-link:hover,
.hi-menu .nav-link.active {
    color: #b88a00 !important;
}

.hi-menu .nav-link:hover::after,
.hi-menu .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* DROPDOWN */
.hi-dropdown {
    min-width: 235px;
    padding: 12px;
    border: 1px solid var(--hi-border);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--hi-shadow);
}

.hi-dropdown .dropdown-item {
    padding: 11px 14px;
    border-radius: 12px;
    color: #222222;
    font-size: 14px;
    font-weight: 700;
}

.hi-dropdown .dropdown-item:hover {
    background: rgba(241, 197, 58, 0.18);
    color: #111111;
}

/* HEADER ACTIONS */
.hi-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: 24px;
}

.hi-call-box {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 9px 13px;
    border-radius: 999px;
    background: #fafafa;
    border: 1px solid var(--hi-border);
    color: var(--hi-text);
}

.hi-call-box span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(241, 197, 58, 0.22);
    color: #b88a00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hi-call-box div {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.hi-call-box small {
    color: var(--hi-muted);
    font-size: 11px;
    font-weight: 700;
}

.hi-call-box strong {
    color: var(--hi-text);
    font-size: 14px;
    font-weight: 900;
}

.hi-call-box:hover {
    border-color: rgba(241, 197, 58, 0.65);
    background: #fffaf0;
}

.hi-btn {
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--hi-primary), var(--hi-primary-dark));
    color: #171717;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 15px;
    font-weight: 900;
    border: 1px solid transparent;
    box-shadow: 0 12px 28px rgba(241, 197, 58, 0.32);
}

.hi-btn:hover {
    color: #171717;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(241, 197, 58, 0.42);
}

.hi-btn-outline {
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--hi-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 15px;
    font-weight: 900;
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.hi-btn-outline:hover {
    background: var(--hi-text);
    color: #ffffff;
}

/* MOBILE BUTTON */
.hi-menu-btn {
    width: 48px;
    height: 44px;
    border: 1px solid rgba(241, 197, 58, 0.65);
    border-radius: 14px;
    background: rgba(241, 197, 58, 0.18);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.hi-menu-btn span {
    width: 22px;
    height: 2px;
    border-radius: 20px;
    background: #171717;
}

/* MOBILE MENU */
.hi-mobile-menu {
    width: 390px !important;
    background: linear-gradient(180deg, #ffffff, #fffaf0);
    border-left: 1px solid var(--hi-border);
}

.hi-mobile-header {
    padding: 22px;
    border-bottom: 1px solid var(--hi-border);
}

.hi-mobile-close {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--hi-border);
    background: #ffffff;
    color: var(--hi-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--hi-transition);
}

.hi-mobile-close:hover {
    background: var(--hi-primary);
    color: #171717;
}

.hi-mobile-body {
    padding: 22px;
}

/* MOBILE INFO */
.hi-mobile-info {
    display: flex;
    gap: 14px;
    padding: 17px;
    margin-bottom: 22px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid var(--hi-border);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
}

.hi-mobile-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--hi-primary), var(--hi-primary-dark));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #171717;
    font-size: 19px;
    flex-shrink: 0;
}

.hi-mobile-info strong {
    display: block;
    color: var(--hi-text);
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 4px;
}

.hi-mobile-info p {
    margin: 0;
    color: var(--hi-muted);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 500;
}

/* MOBILE NAV */
.hi-mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hi-mobile-nav li {
    margin-bottom: 9px;
}

.hi-mobile-nav li > a {
    min-height: 54px;
    padding: 0 15px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid var(--hi-border);
    color: var(--hi-text);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.035);
}

.hi-mobile-nav li > a > i {
    width: 22px;
    color: #b88a00;
    font-size: 15px;
}

.hi-mobile-nav li > a span {
    margin-left: auto;
    color: var(--hi-muted);
    font-size: 13px;
}

.hi-mobile-nav li > a:hover {
    background: #fff6d6;
    border-color: rgba(241, 197, 58, 0.65);
    color: #111111;
}

/* MOBILE SUBMENU */
.hi-mobile-submenu {
    margin: 9px 0 0 18px;
    padding: 8px 0 8px 14px;
    border-left: 2px solid rgba(241, 197, 58, 0.75);
}

.hi-mobile-submenu a {
    display: block;
    padding: 9px 12px;
    margin-bottom: 5px;
    border-radius: 12px;
    color: #555555;
    font-size: 14px;
    font-weight: 700;
}

.hi-mobile-submenu a:hover {
    background: rgba(241, 197, 58, 0.17);
    color: #111111;
}

/* MOBILE BUTTONS */
.hi-mobile-buttons {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
    .hi-call-box {
        display: none;
    }

    .hi-header-actions {
        margin-left: 14px;
    }

    .hi-menu .nav-link {
        padding-left: 9px !important;
        padding-right: 9px !important;
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .hi-topbar {
        display: none;
    }

    .hi-navbar {
        min-height: 76px;
        position: sticky;
        top: 0;
        z-index: 999;
    }

    .hi-navbar .container {
        justify-content: space-between;
    }

    .hi-logo-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        font-size: 21px;
    }

    .hi-logo-text strong {
        font-size: 19px;
    }

    .hi-logo-text small {
        font-size: 11px;
    }
}

@media (max-width: 575px) {
    .hi-mobile-menu {
        width: 100% !important;
    }

    .hi-navbar {
        min-height: 72px;
    }

    .hi-logo-icon {
        width: 42px;
        height: 42px;
        border-radius: 13px;
        font-size: 19px;
    }

    .hi-logo-text strong {
        font-size: 17px;
    }

    .hi-logo-text small {
        font-size: 10px;
    }

    .hi-menu-btn {
        width: 44px;
        height: 42px;
        border-radius: 13px;
    }

    .hi-mobile-header {
        padding: 18px;
    }

    .hi-mobile-body {
        padding: 18px;
    }

    .hi-mobile-info {
        padding: 15px;
    }

    .hi-mobile-nav li > a {
        min-height: 52px;
        font-size: 14px;
    }
}

/* HURDACIM ISTANBUL HERO SLIDER */

.hi-hero-slider {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.hi-hero-slide {
    position: relative;
    min-height: 690px;
    display: flex;
    align-items: center;
    padding: 90px 0 100px;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 18%, rgba(241, 197, 58, 0.22), transparent 26%),
        radial-gradient(circle at 92% 16%, rgba(241, 197, 58, 0.14), transparent 24%),
        linear-gradient(135deg, #fffdf7 0%, #fff7dd 44%, #ffffff 100%);
}

.hi-hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: 0.38;
    pointer-events: none;
}

.hi-hero-slide::after {
    content: "";
    position: absolute;
    right: -150px;
    bottom: -170px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgba(241, 197, 58, 0.18);
    pointer-events: none;
}

.hi-hero-slide .container {
    position: relative;
    z-index: 2;
}

/* CONTENT */
.hi-hero-content {
    max-width: 650px;
}

.hi-hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(241, 197, 58, 0.55);
    color: #a77c00;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.055);
}

.hi-hero-subtitle i {
    color: #b88a00;
}

.hi-hero-content h1 {
    margin: 0;
    color: #181818;
    font-size: 62px;
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -2.4px;
}

.hi-hero-content h1 span {
    display: block;
    color: #c29300;
}

.hi-hero-content p {
    max-width: 590px;
    margin: 24px 0 0;
    color: #5f5f5f;
    font-size: 17px;
    line-height: 1.8;
    font-weight: 500;
}

/* BUTTONS */
.hi-hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 34px;
}

.hi-hero-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #202020;
    font-size: 15px;
    font-weight: 900;
}

.hi-hero-link i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(241, 197, 58, 0.22);
    color: #b88a00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hi-hero-link:hover {
    color: #b88a00;
}

.hi-hero-link:hover i {
    background: var(--hi-primary);
    color: #171717;
    transform: translateX(4px);
}

/* MINI LIST */
.hi-hero-mini-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hi-hero-mini-list div {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 9px 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    color: #333333;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.hi-hero-mini-list i {
    color: #b88a00;
}

/* VISUAL AREA */
.hi-hero-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hi-hero-image {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 520px;
    border-radius: 38px 38px 38px 120px;
    overflow: hidden;
    background: #ffffff;
    border: 10px solid #ffffff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.15);
}

.hi-hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.00), rgba(0, 0, 0, 0.24)),
        linear-gradient(135deg, rgba(241, 197, 58, 0.12), transparent 44%);
    z-index: 1;
}

.hi-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* FLOATING CARDS */
.hi-floating-card {
    position: absolute;
    z-index: 4;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.14);
}

.hi-floating-card-one {
    top: 54px;
    left: 18px;
    width: 138px;
    height: 138px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--hi-primary), var(--hi-primary-dark));
    color: #171717;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hi-floating-card-one strong {
    display: block;
    font-size: 33px;
    line-height: 1;
    font-weight: 950;
}

.hi-floating-card-one span {
    display: block;
    max-width: 92px;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 900;
}

.hi-floating-card-two {
    left: 0;
    bottom: 58px;
    min-width: 250px;
    padding: 16px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.hi-floating-card-two > i {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(241, 197, 58, 0.22);
    color: #b88a00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
}

.hi-floating-card-two strong {
    display: block;
    color: #171717;
    font-size: 15px;
    font-weight: 950;
    line-height: 1.2;
}

.hi-floating-card-two small {
    display: block;
    margin-top: 4px;
    color: #6f6f6f;
    font-size: 12px;
    font-weight: 700;
}

/* INDICATORS */
.hi-hero-indicators {
    bottom: 28px;
    margin-bottom: 0;
    gap: 8px;
}

.hi-hero-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background-color: #bdbdbd;
    opacity: 1;
    transition: all 0.3s ease;
}

.hi-hero-indicators .active {
    width: 34px;
    border-radius: 999px;
    background-color: var(--hi-primary);
}

/* CONTROLS */
.hi-hero-control {
    top: auto;
    bottom: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    color: #171717;
    border: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 1;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.10);
    transition: all 0.3s ease;
}

.hi-hero-control:hover {
    background: var(--hi-primary);
    color: #171717;
}

.hi-hero-prev {
    left: auto;
    right: 128px;
}

.hi-hero-next {
    right: 72px;
}

/* BOOTSTRAP FADE FIX */
.carousel-fade .carousel-item {
    transition-property: opacity;
    transform: none;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    opacity: 0;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
    .hi-hero-content h1 {
        font-size: 54px;
    }

    .hi-hero-image {
        max-width: 460px;
        height: 490px;
    }
}

@media (max-width: 991px) {
    .hi-hero-slide {
        min-height: auto;
        padding: 74px 0 92px;
    }

    .hi-hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hi-hero-content h1 {
        font-size: 46px;
        letter-spacing: -1.5px;
    }

    .hi-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hi-hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hi-hero-buttons {
        justify-content: center;
    }

    .hi-hero-mini-list {
        justify-content: center;
    }

    .hi-hero-visual {
        min-height: auto;
        justify-content: center;
        margin-top: 48px;
    }

    .hi-hero-image {
        max-width: 540px;
        height: 430px;
        border-radius: 34px;
    }

    .hi-floating-card-one {
        top: 24px;
        left: calc(50% - 255px);
    }

    .hi-floating-card-two {
        left: 50%;
        bottom: 22px;
        transform: translateX(-50%);
    }

    .hi-hero-control {
        display: none;
    }
}

@media (max-width: 767px) {
    .hi-hero-slide {
        padding: 58px 0 86px;
    }

    .hi-hero-content h1 {
        font-size: 38px;
        line-height: 1.13;
    }

    .hi-hero-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .hi-hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .hi-hero-buttons .hi-btn,
    .hi-hero-buttons .hi-hero-link {
        width: 100%;
        justify-content: center;
    }

    .hi-hero-mini-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hi-hero-mini-list div {
        justify-content: center;
    }

    .hi-hero-image {
        height: 370px;
        border-width: 7px;
        border-radius: 28px;
    }

    .hi-floating-card-one {
        width: 112px;
        height: 112px;
        border-radius: 24px;
        left: 14px;
        top: 18px;
    }

    .hi-floating-card-one strong {
        font-size: 27px;
    }

    .hi-floating-card-one span {
        font-size: 11px;
    }

    .hi-floating-card-two {
        width: calc(100% - 34px);
        min-width: auto;
        bottom: 17px;
    }
}

@media (max-width: 480px) {
    .hi-hero-slide {
        padding: 48px 0 78px;
    }

    .hi-hero-content h1 {
        font-size: 32px;
        letter-spacing: -0.8px;
    }

    .hi-hero-subtitle {
        font-size: 12px;
        padding: 9px 13px;
    }

    .hi-hero-image {
        height: 310px;
    }

    .hi-floating-card-two {
        padding: 13px;
        border-radius: 18px;
    }

    .hi-floating-card-two > i {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        font-size: 17px;
    }
}

/* HURDACIM ISTANBUL ABOUT SECTION */

.hi-about-section {
    position: relative;
    padding: 110px 0;
    background:
        linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
    overflow: hidden;
}

.hi-about-section::before {
    content: "";
    position: absolute;
    left: -180px;
    top: 140px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(241, 197, 58, 0.16);
    filter: blur(4px);
}

.hi-about-section::after {
    content: "";
    position: absolute;
    right: -170px;
    bottom: 80px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(241, 197, 58, 0.12);
}

.hi-about-section .container {
    position: relative;
    z-index: 2;
}

/* VISUAL */
.hi-about-visual {
    position: relative;
    padding: 0 36px 42px 0;
}

.hi-about-image {
    position: relative;
    height: 679px;
    border-radius: 42px 42px 120px 42px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.13);
}

.hi-about-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.28)),
        linear-gradient(135deg, rgba(241, 197, 58, 0.18), transparent 45%);
    z-index: 1;
}

.hi-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* FLOATING BADGE */
.hi-about-badge {
    position: absolute;
    left: 34px;
    bottom: 0;
    max-width: 370px;
    padding: 18px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 3;
}

.hi-about-badge-icon {
    width: 54px;
    height: 54px;
    border-radius: 17px;
    background: linear-gradient(135deg, var(--hi-primary), var(--hi-primary-dark));
    color: #171717;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.hi-about-badge strong {
    display: block;
    color: #171717;
    font-size: 16px;
    font-weight: 950;
    line-height: 1.25;
}

.hi-about-badge span {
    display: block;
    margin-top: 5px;
    color: #707070;
    font-size: 13px;
    font-weight: 600;
}

/* MINI CARD */
.hi-about-mini-card {
    position: absolute;
    right: 0;
    top: 70px;
    width: 190px;
    height: 155px;
    border-radius: 34px;
    background: linear-gradient(135deg, var(--hi-primary), var(--hi-primary-dark));
    color: #171717;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px;
    box-shadow: 0 24px 55px rgba(241, 197, 58, 0.34);
    z-index: 3;
}

.hi-about-mini-card strong {
    display: block;
    font-size: 22px;
    font-weight: 950;
    line-height: 1;
}

.hi-about-mini-card span {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 850;
}

/* CONTENT */
.hi-about-content {
    padding-left: 18px;
}

.hi-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 9px 15px;
    border-radius: 999px;
    background: rgba(241, 197, 58, 0.18);
    border: 1px solid rgba(241, 197, 58, 0.42);
    color: #a77c00;
    font-size: 14px;
    font-weight: 900;
}

.hi-about-content h2 {
    margin: 0;
    color: #171717;
    font-size: 40px;
    line-height: 1.16;
    font-weight: 950;
    letter-spacing: -1.6px;
}

.hi-about-content h2 span {
    display: block;
    color: #c29300;
}

.hi-about-content p {
    margin: 22px 0 0;
    color: #626262;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
}

/* LINE FEATURES */
.hi-about-lines {
    display: grid;
    gap: 15px;
    margin-top: 30px;
}

.hi-about-line-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 17px 18px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.045);
    transition: all 0.3s ease;
}

.hi-about-line-item:hover {
    transform: translateX(6px);
    border-color: rgba(241, 197, 58, 0.55);
    background: #fffdf7;
}

.hi-about-line-item span {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: rgba(241, 197, 58, 0.22);
    color: #b88a00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.hi-about-line-item strong {
    display: block;
    color: #171717;
    font-size: 16px;
    font-weight: 950;
    line-height: 1.25;
}

.hi-about-line-item small {
    display: block;
    margin-top: 5px;
    color: #707070;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 600;
}

/* ACTIONS */
.hi-about-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 34px;
}

.hi-about-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #171717;
    font-size: 16px;
    font-weight: 950;
}

.hi-about-phone i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #b88a00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hi-about-phone:hover {
    color: #b88a00;
}

/* BOTTOM CARDS */
.hi-about-bottom {
    margin-top: 80px;
}

.hi-about-card {
    position: relative;
    height: 100%;
    padding: 34px 30px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.hi-about-card::before {
    content: "";
    position: absolute;
    right: -55px;
    top: -55px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(241, 197, 58, 0.16);
    transition: all 0.3s ease;
}

.hi-about-card:hover {
    transform: translateY(-8px);
    border-color: rgba(241, 197, 58, 0.58);
}

.hi-about-card:hover::before {
    width: 190px;
    height: 190px;
}

.hi-about-card-icon {
    position: relative;
    z-index: 2;
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--hi-primary), var(--hi-primary-dark));
    color: #171717;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.hi-about-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 12px;
    color: #171717;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 950;
}

.hi-about-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #666666;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
    .hi-about-content h2 {
        font-size: 40px;
    }

    .hi-about-image {
        height: 520px;
    }
}

@media (max-width: 991px) {
    .hi-about-section {
        padding: 80px 0;
    }

    .hi-about-visual {
        max-width: 650px;
        margin: 0 auto;
    }

    .hi-about-content {
        padding-left: 0;
        text-align: center;
    }

    .hi-about-content h2 {
        font-size: 38px;
    }

    .hi-about-lines {
        text-align: left;
    }

    .hi-about-actions {
        justify-content: center;
    }

    .hi-about-bottom {
        margin-top: 56px;
    }
}

@media (max-width: 767px) {
    .hi-about-section {
        padding: 65px 0;
    }

    .hi-about-visual {
        padding: 0 0 86px 0;
    }

    .hi-about-image {
        height: 390px;
        border-radius: 30px;
    }

    .hi-about-badge {
        left: 18px;
        right: 18px;
        bottom: 0;
        max-width: none;
    }

    .hi-about-mini-card {
        width: 126px;
        height: 126px;
        border-radius: 26px;
        right: 14px;
        top: 18px;
        padding: 17px;
    }

    .hi-about-mini-card strong {
        font-size: 19px;
    }

    .hi-about-mini-card span {
        font-size: 12px;
    }

    .hi-about-content h2 {
        font-size: 32px;
        letter-spacing: -0.8px;
    }

    .hi-about-content p {
        font-size: 15px;
    }

    .hi-about-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hi-about-actions .hi-btn,
    .hi-about-phone {
        width: 100%;
        justify-content: center;
    }

    .hi-about-card {
        padding: 28px 24px;
        border-radius: 24px;
    }
}

@media (max-width: 480px) {
    .hi-about-image {
        height: 320px;
    }

    .hi-about-badge {
        padding: 15px;
        border-radius: 20px;
    }

    .hi-about-badge-icon {
        width: 48px;
        height: 48px;
        border-radius: 15px;
        font-size: 20px;
    }

    .hi-about-badge strong {
        font-size: 14px;
    }

    .hi-about-badge span {
        font-size: 12px;
    }

    .hi-about-content h2 {
        font-size: 29px;
    }

    .hi-about-line-item {
        padding: 15px;
    }
}

/* HURDACIM ISTANBUL PRODUCTS SECTION */

.hi-products-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at 8% 18%, rgba(241, 197, 58, 0.16), transparent 25%),
        linear-gradient(180deg, #ffffff 0%, #fff9e8 100%);
    overflow: hidden;
}

.hi-products-section::before {
    content: "";
    position: absolute;
    right: -180px;
    top: 110px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(241, 197, 58, 0.13);
}

.hi-products-section .container {
    position: relative;
    z-index: 2;
}

/* HEAD */
.hi-products-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 46px;
}

.hi-products-head h2 {
    margin: 0;
    color: #171717;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -1.6px;
}

.hi-products-head h2 span {
    display: block;
    color: #c29300;
}

.hi-products-head p {
    max-width: 520px;
    margin: 0;
    color: #626262;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 500;
}

/* GRID */
.hi-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 270px;
    gap: 22px;
}

.hi-product-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 30px;
    background: #dddddd;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
    isolation: isolate;
}

.hi-product-large {
    grid-column: span 2;
    grid-row: span 2;
}

.hi-product-wide {
    grid-column: span 2;
}

.hi-product-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
    z-index: 1;
}

.hi-product-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.28) 42%, rgba(0, 0, 0, 0.76) 100%),
        linear-gradient(135deg, rgba(241, 197, 58, 0.20), transparent 45%);
    z-index: 2;
    transition: all 0.35s ease;
}

.hi-product-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 26px;
    z-index: 3;
}

.hi-product-content span {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(241, 197, 58, 0.92);
    color: #171717;
    font-size: 12px;
    font-weight: 900;
}

.hi-product-content h3 {
    margin: 0;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 950;
    letter-spacing: -0.5px;
}

.hi-product-content p {
    max-width: 470px;
    margin: 11px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.65;
    font-weight: 500;
}

.hi-product-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 18px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
}

.hi-product-link i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--hi-primary);
    color: #171717;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* HOVER */
.hi-product-card:hover img {
    transform: scale(1.08);
}

.hi-product-card:hover .hi-product-overlay {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.22) 38%, rgba(0, 0, 0, 0.82) 100%),
        linear-gradient(135deg, rgba(241, 197, 58, 0.30), transparent 48%);
}

.hi-product-card:hover .hi-product-link i {
    transform: translateX(5px);
}

/* BOTTOM */
.hi-products-bottom {
    display: flex;
    justify-content: center;
    margin-top: 46px;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
    .hi-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hi-product-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .hi-product-wide {
        grid-column: span 2;
    }
}

@media (max-width: 991px) {
    .hi-products-section {
        padding: 80px 0;
    }

    .hi-products-head {
        display: block;
        text-align: center;
        margin-bottom: 38px;
    }

    .hi-products-head h2 {
        font-size: 38px;
    }

    .hi-products-head p {
        max-width: 680px;
        margin: 18px auto 0;
    }

    .hi-products-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 290px;
    }

    .hi-product-large,
    .hi-product-wide {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 767px) {
    .hi-products-section {
        padding: 65px 0;
    }

    .hi-products-head h2 {
        font-size: 32px;
        letter-spacing: -0.8px;
    }

    .hi-products-head p {
        font-size: 15px;
    }

    .hi-products-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 330px;
        gap: 18px;
    }

    .hi-product-large,
    .hi-product-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .hi-product-card {
        border-radius: 24px;
    }

    .hi-product-content {
        padding: 22px;
    }

    .hi-product-content h3 {
        font-size: 24px;
    }

    .hi-product-content p {
        font-size: 13px;
    }

    .hi-products-bottom .hi-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hi-products-grid {
        grid-auto-rows: 300px;
    }

    .hi-products-head h2 {
        font-size: 29px;
    }

    .hi-product-content {
        padding: 20px;
    }

    .hi-product-content h3 {
        font-size: 22px;
    }
}

/* HURDACIM ISTANBUL CTA SECTION */

.hi-quote-cta {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.hi-quote-box {
    position: relative;
    overflow: hidden;
    padding: 54px;
    border-radius: 38px;
    background:
        linear-gradient(135deg, #fffaf0 0%, #ffffff 52%, #fff4c8 100%);
    border: 1px solid rgba(241, 197, 58, 0.35);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.08);
}

.hi-quote-box::before {
    content: "";
    position: absolute;
    left: -90px;
    bottom: -120px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(241, 197, 58, 0.22);
}

.hi-quote-box::after {
    content: "";
    position: absolute;
    right: 28%;
    top: -120px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(241, 197, 58, 0.12);
}

.hi-quote-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.35;
    pointer-events: none;
}

.hi-quote-box .row {
    position: relative;
    z-index: 2;
}

/* CONTENT */
.hi-quote-content h2 {
    margin: 0;
    color: #171717;
    font-size: 42px;
    line-height: 1.14;
    font-weight: 950;
    letter-spacing: -1.4px;
}

.hi-quote-content h2 span {
    display: block;
    color: #c29300;
}

.hi-quote-content p {
    margin: 20px 0 0;
    color: #626262;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 500;
}

/* FEATURES */
.hi-quote-features {
    display: grid;
    gap: 14px;
}

.hi-quote-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.045);
    transition: all 0.3s ease;
}

.hi-quote-feature:hover {
    transform: translateX(6px);
    background: #ffffff;
    border-color: rgba(241, 197, 58, 0.6);
}

.hi-quote-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(241, 197, 58, 0.22);
    color: #b88a00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.hi-quote-feature strong {
    display: block;
    color: #171717;
    font-size: 15px;
    font-weight: 950;
    line-height: 1.2;
}

.hi-quote-feature small {
    display: block;
    margin-top: 5px;
    color: #707070;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
}

/* ACTION CARD */
.hi-quote-action-card {
    position: relative;
    height: 100%;
    padding: 28px;
    border-radius: 30px;
    background: #171717;
    color: #ffffff;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.hi-quote-action-card::before {
    content: "";
    position: absolute;
    right: -55px;
    top: -55px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(241, 197, 58, 0.22);
}

.hi-quote-action-card::after {
    content: "";
    position: absolute;
    left: -45px;
    bottom: -45px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(241, 197, 58, 0.12);
}

.hi-quote-action-icon {
    position: relative;
    z-index: 2;
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--hi-primary), var(--hi-primary-dark));
    color: #171717;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
}

.hi-quote-action-card h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.22;
    font-weight: 950;
    letter-spacing: -0.5px;
}

.hi-quote-action-card p {
    position: relative;
    z-index: 2;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.65;
    font-weight: 500;
}

.hi-quote-btn {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 50px;
    margin-top: 24px;
    padding: 13px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--hi-primary), var(--hi-primary-dark));
    color: #171717;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 950;
}

.hi-quote-btn:hover {
    color: #171717;
    transform: translateY(-2px);
}

.hi-quote-phone {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 48px;
    margin-top: 12px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.13);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 900;
}

.hi-quote-phone:hover {
    background: #ffffff;
    color: #171717;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
    .hi-quote-box {
        padding: 42px;
    }

    .hi-quote-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .hi-quote-cta {
        padding: 80px 0;
    }

    .hi-quote-box {
        padding: 36px;
        border-radius: 32px;
    }

    .hi-quote-content {
        text-align: center;
    }

    .hi-quote-content h2 {
        font-size: 34px;
    }

    .hi-quote-content p {
        max-width: 660px;
        margin-left: auto;
        margin-right: auto;
    }

    .hi-quote-features {
        max-width: 620px;
        margin: 10px auto 0;
    }

    .hi-quote-action-card {
        max-width: 460px;
        margin: 10px auto 0;
        text-align: center;
    }

    .hi-quote-action-icon {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .hi-quote-cta {
        padding: 65px 0;
    }

    .hi-quote-box {
        padding: 26px;
        border-radius: 26px;
    }

    .hi-quote-content h2 {
        font-size: 30px;
        letter-spacing: -0.8px;
    }

    .hi-quote-content p {
        font-size: 15px;
    }

    .hi-quote-feature {
        align-items: flex-start;
    }

    .hi-quote-action-card {
        padding: 24px;
        border-radius: 24px;
    }

    .hi-quote-action-card h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .hi-quote-box {
        padding: 22px;
    }

    .hi-quote-content h2 {
        font-size: 27px;
    }

    .hi-quote-feature {
        padding: 14px;
        border-radius: 17px;
    }

    .hi-quote-feature-icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }
}

/* HURDACIM ISTANBUL NEWS SECTION */

.hi-news-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at 12% 15%, rgba(241, 197, 58, 0.14), transparent 25%),
        linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
    overflow: hidden;
}

.hi-news-section::before {
    content: "";
    position: absolute;
    right: -160px;
    top: 90px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(241, 197, 58, 0.12);
}

.hi-news-section .container {
    position: relative;
    z-index: 2;
}

/* HEADING */
.hi-news-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 46px;
}

.hi-news-heading h2 {
    margin: 0;
    color: #171717;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -1.6px;
}

.hi-news-heading h2 span {
    display: block;
    color: #c29300;
}

.hi-news-all {
    min-height: 48px;
    padding: 13px 20px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #171717;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.055);
}

.hi-news-all i {
    color: #b88a00;
    transition: all 0.3s ease;
}

.hi-news-all:hover {
    background: var(--hi-primary);
    color: #171717;
}

.hi-news-all:hover i {
    transform: translateX(4px);
    color: #171717;
}

/* LAYOUT */
.hi-news-layout {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 26px;
    align-items: stretch;
}

/* FEATURED */
.hi-news-featured {
    position: relative;
    min-height: 560px;
    display: block;
    overflow: hidden;
    border-radius: 38px;
    background: #dddddd;
    box-shadow: 0 28px 75px rgba(0, 0, 0, 0.13);
    isolation: isolate;
}
.hi-product-detail-image img{
    width:100%;
    height:340px;
    object-fit:cover;
}
.hi-news-featured img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
    transition: transform 0.6s ease;
}

.hi-news-featured-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.36) 48%, rgba(0, 0, 0, 0.82) 100%),
        linear-gradient(135deg, rgba(241, 197, 58, 0.24), transparent 45%);
    z-index: 2;
}

.hi-news-featured-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 34px;
    display: flex;
    align-items: flex-end;
    gap: 22px;
    z-index: 3;
}

.hi-news-date {
    width: 88px;
    height: 88px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--hi-primary), var(--hi-primary-dark));
    color: #171717;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hi-news-date strong {
    font-size: 31px;
    line-height: 1;
    font-weight: 950;
}

.hi-news-date span {
    margin-top: 5px;
    font-size: 12px;
    font-weight: 900;
}

.hi-news-category {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    backdrop-filter: blur(8px);
}
.hi-contact-page {
    padding: 80px 0;
    background: #f6f8fb;
}

.hi-contact-info-card,
.hi-contact-map-card {
    height: 100%;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.hi-contact-info-card {
    padding: 36px;
    position: relative;
}

    .hi-contact-info-card::before {
        content: "";
        position: absolute;
        right: -60px;
        top: -60px;
        width: 180px;
        height: 180px;
        background: rgba(21, 101, 52, 0.09);
        border-radius: 50%;
    }

.hi-contact-mini-title {
    position: relative;
    z-index: 2;
    display: inline-block;
    background: rgba(21, 101, 52, 0.10);
    color: #156534;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.hi-contact-info-card h2 {
    position: relative;
    z-index: 2;
    color: #172033;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 14px;
}

.hi-contact-desc {
    position: relative;
    z-index: 2;
    color: #5d6678;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.hi-contact-item {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.hi-contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, #156534, #0f3f24);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.hi-contact-item strong {
    display: block;
    color: #172033;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 6px;
}

.hi-contact-item p {
    color: #5d6678;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.hi-contact-item a {
    color: #156534;
    font-weight: 800;
    text-decoration: none;
}

.hi-contact-buttons {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.hi-contact-call,
.hi-contact-whatsapp {
    flex: 1;
    text-align: center;
    padding: 15px 18px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hi-contact-call {
    background: linear-gradient(135deg, #156534, #0f3f24);
    color: #fff;
}

.hi-contact-whatsapp {
    background: #172033;
    color: #fff;
}

    .hi-contact-call:hover,
    .hi-contact-whatsapp:hover {
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
    }

.hi-contact-map-card {
    min-height: 520px;
}

    .hi-contact-map-card iframe {
        width: 100%;
        height: 100%;
        min-height: 520px;
        display: block;
        filter: grayscale(10%);
    }
.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 35px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

.btn-whatsapp-pulse-border {
    bottom: 120px;
    right: 20px;
    animation-play-state: paused;
}

    .btn-whatsapp-pulse-border::before {
        content: "";
        position: absolute;
        border-radius: 50%;
        padding: 25px;
        border: 5px solid #25d366;
        opacity: 0.75;
        animation-name: pulse-border;
        animation-duration: 1.5s;
        animation-timing-function: ease-out;
        animation-iteration-count: infinite;
    }

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@media (max-width: 991px) {
    .hi-contact-page {
        padding: 60px 0;
    }

    .hi-contact-map-card,
    .hi-contact-map-card iframe {
        min-height: 420px;
    }
}

@media (max-width: 575px) {
    .hi-contact-info-card {
        padding: 24px;
        border-radius: 18px;
    }

        .hi-contact-info-card h2 {
            font-size: 26px;
        }

    .hi-contact-item {
        align-items: flex-start;
    }

    .hi-contact-buttons {
        flex-direction: column;
    }

    .hi-contact-map-card,
    .hi-contact-map-card iframe {
        min-height: 360px;
        border-radius: 18px;
    }
}
.hi-news-featured h3 {
    margin: 0;
    max-width: 560px;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.18;
    font-weight: 950;
    letter-spacing: -0.8px;
}

.hi-news-featured p {
    max-width: 560px;
    margin: 13px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}

.hi-news-read {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
}

.hi-news-read i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--hi-primary);
    color: #171717;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hi-news-featured:hover img {
    transform: scale(1.08);
}

.hi-news-featured:hover .hi-news-read i {
    transform: translateX(5px);
}

/* NEWS ROW LIST */
.hi-news-list {
    display: grid;
    gap: 18px;
}

.hi-news-row {
    position: relative;
    min-height: 174px;
    padding: 16px 58px 16px 16px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 18px;
    align-items: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hi-news-row::before {
    content: "";
    position: absolute;
    right: -55px;
    top: -55px;
    width: 135px;
    height: 135px;
    border-radius: 50%;
    background: rgba(241, 197, 58, 0.14);
    transition: all 0.3s ease;
}

.hi-news-row:hover {
    transform: translateY(-5px);
    border-color: rgba(241, 197, 58, 0.58);
}

.hi-news-row:hover::before {
    width: 175px;
    height: 175px;
}

.hi-news-row-img {
    position: relative;
    height: 132px;
    border-radius: 22px;
    overflow: hidden;
    background: #eeeeee;
    z-index: 2;
}

.hi-news-row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hi-news-row:hover .hi-news-row-img img {
    transform: scale(1.08);
}

.hi-news-row-content {
    position: relative;
    z-index: 2;
}

.hi-news-row-content span {
    display: inline-flex;
    margin-bottom: 8px;
    color: #b88a00;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.hi-news-row-content h3 {
    margin: 0;
    color: #171717;
    font-size: 18px;
    line-height: 1.32;
    font-weight: 950;
}

.hi-news-row-content p {
    margin: 9px 0 0;
    color: #686868;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 500;
}

.hi-news-row-icon {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(241, 197, 58, 0.22);
    color: #b88a00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.3s ease;
}

.hi-news-row:hover .hi-news-row-icon {
    background: var(--hi-primary);
    color: #171717;
    transform: translateX(4px);
}

/* BOTTOM STRIP */
.hi-news-bottom-strip {
    margin-top: 28px;
    padding: 18px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.055);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.hi-news-strip-item {
    min-height: 64px;
    padding: 12px 16px;
    border-radius: 18px;
    background: #fff8df;
    color: #252525;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 850;
}

.hi-news-strip-item i {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: var(--hi-primary);
    color: #171717;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
    .hi-news-heading h2 {
        font-size: 40px;
    }

    .hi-news-featured {
        min-height: 520px;
    }

    .hi-news-row {
        grid-template-columns: 130px 1fr;
    }
}

@media (max-width: 991px) {
    .hi-news-section {
        padding: 80px 0;
    }

    .hi-news-heading {
        display: block;
        text-align: center;
        margin-bottom: 38px;
    }

    .hi-news-heading h2 {
        font-size: 36px;
    }

    .hi-news-all {
        margin-top: 22px;
    }

    .hi-news-layout {
        grid-template-columns: 1fr;
    }

    .hi-news-featured {
        min-height: 480px;
    }

    .hi-news-bottom-strip {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .hi-news-section {
        padding: 65px 0;
    }

    .hi-news-heading h2 {
        font-size: 31px;
        letter-spacing: -0.8px;
    }

    .hi-news-featured {
        min-height: 440px;
        border-radius: 28px;
    }

    .hi-news-featured-content {
        display: block;
        padding: 24px;
    }

    .hi-news-date {
        width: 76px;
        height: 76px;
        border-radius: 20px;
        margin-bottom: 18px;
    }

    .hi-news-date strong {
        font-size: 27px;
    }

    .hi-news-featured h3 {
        font-size: 26px;
    }

    .hi-news-row {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 16px;
        border-radius: 24px;
    }

    .hi-news-row-img {
        height: 210px;
    }

    .hi-news-row-icon {
        right: 18px;
        top: 188px;
        bottom: auto;
    }

    .hi-news-strip-item {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hi-news-heading h2 {
        font-size: 28px;
    }

    .hi-news-featured {
        min-height: 400px;
    }

    .hi-news-featured-content {
        padding: 20px;
    }

    .hi-news-featured h3 {
        font-size: 23px;
    }

    .hi-news-featured p {
        font-size: 13px;
    }

    .hi-news-row-img {
        height: 180px;
    }

    .hi-news-row-icon {
        top: 158px;
    }
}

/* HURDACIM ISTANBUL FOOTER */

.hi-footer {
    position: relative;
    padding: 80px 0 0;
    background:
        radial-gradient(circle at 10% 15%, rgba(241, 197, 58, 0.16), transparent 24%),
        radial-gradient(circle at 90% 20%, rgba(241, 197, 58, 0.12), transparent 25%),
        linear-gradient(180deg, #ffffff 0%, #fff8df 100%);
    overflow: hidden;
}

.hi-footer::before {
    content: "";
    position: absolute;
    left: -140px;
    bottom: 80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(241, 197, 58, 0.14);
}

.hi-footer::after {
    content: "";
    position: absolute;
    right: -150px;
    top: 120px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(241, 197, 58, 0.12);
}

.hi-footer .container {
    position: relative;
    z-index: 2;
}

/* TOP CONTACT GRID */
.hi-footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 54px;
}

.hi-footer-contact-card {
    min-height: 112px;
    padding: 24px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.hi-footer-contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(241, 197, 58, 0.65);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.09);
}

.hi-footer-contact-icon {
    width: 58px;
    height: 58px;
    border-radius: 19px;
    background: linear-gradient(135deg, var(--hi-primary), var(--hi-primary-dark));
    color: #171717;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.hi-footer-contact-card span {
    display: block;
    color: #777777;
    font-size: 13px;
    font-weight: 750;
    margin-bottom: 5px;
}

.hi-footer-contact-card strong {
    display: block;
    color: #171717;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 950;
}

/* BRAND CENTER */
.hi-footer-brand-area {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.hi-footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 20px;
}

.hi-footer-logo-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--hi-primary), var(--hi-primary-dark));
    color: #171717;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    box-shadow: 0 12px 28px rgba(241, 197, 58, 0.32);
}

.hi-footer-logo-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.18;
}

.hi-footer-logo-text strong {
    color: #171717;
    font-size: 25px;
    font-weight: 950;
    letter-spacing: -0.7px;
}

.hi-footer-logo-text small {
    margin-top: 4px;
    color: #707070;
    font-size: 13px;
    font-weight: 700;
}

.hi-footer-brand-area p {
    margin: 0 auto;
    max-width: 680px;
    color: #626262;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
}

/* MAIN FOOTER */
.hi-footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    padding: 38px;
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.07);
    backdrop-filter: blur(10px);
}

.hi-footer-col {
    position: relative;
    padding: 8px 6px;
}

.hi-footer-col h3 {
    position: relative;
    margin: 0 0 22px;
    padding-bottom: 13px;
    color: #171717;
    font-size: 18px;
    font-weight: 950;
    letter-spacing: -0.3px;
}

.hi-footer-col h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38px;
    height: 3px;
    border-radius: 999px;
    background: var(--hi-primary);
}

.hi-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hi-footer-col ul li {
    margin-bottom: 11px;
}

.hi-footer-col ul li:last-child {
    margin-bottom: 0;
}

.hi-footer-col ul li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #5f5f5f;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 750;
}

.hi-footer-col ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-right: 9px;
    border-radius: 50%;
    background: rgba(241, 197, 58, 0.65);
    transition: all 0.3s ease;
}

.hi-footer-col ul li a:hover {
    color: #b88a00;
    transform: translateX(4px);
}

.hi-footer-col ul li a:hover::before {
    background: var(--hi-primary);
}

/* INFO COLUMN */
.hi-footer-info-list {
    display: grid;
    gap: 12px;
}

.hi-footer-info-list a {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #5f5f5f;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 750;
}

.hi-footer-info-list a i {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(241, 197, 58, 0.22);
    color: #b88a00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hi-footer-info-list a:hover {
    color: #b88a00;
}

/* SOCIAL */
.hi-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}

.hi-footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #171717;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.hi-footer-social a:hover {
    background: var(--hi-primary);
    color: #171717;
    transform: translateY(-3px);
}

/* BOTTOM */
.hi-footer-bottom {
    margin-top: 32px;
    min-height: 74px;
    padding: 22px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hi-footer-bottom p {
    margin: 0;
    color: #666666;
    font-size: 14px;
    font-weight: 650;
}

.hi-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hi-footer-bottom-links a {
    color: #666666;
    font-size: 14px;
    font-weight: 750;
}

.hi-footer-bottom-links a:hover {
    color: #b88a00;
}

.hi-footer-bottom-links span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--hi-primary);
}

/* RESPONSIVE */
@media (max-width: 1199px) {
    .hi-footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .hi-footer {
        padding: 70px 0 0;
    }

    .hi-footer-contact-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
    }

    .hi-footer-brand-area {
        margin-bottom: 44px;
    }

    .hi-footer-main {
        padding: 32px;
        border-radius: 30px;
    }
}

@media (max-width: 767px) {
    .hi-footer {
        padding: 60px 0 0;
    }

    .hi-footer-contact-card {
        min-height: 100px;
        padding: 20px;
        border-radius: 24px;
    }

    .hi-footer-contact-card strong {
        font-size: 16px;
    }

    .hi-footer-logo {
        display: flex;
    }

    .hi-footer-logo-text strong {
        font-size: 21px;
    }

    .hi-footer-brand-area p {
        font-size: 15px;
    }

    .hi-footer-main {
        grid-template-columns: 1fr;
        padding: 26px;
        border-radius: 26px;
        text-align: left;
    }

    .hi-footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hi-footer-contact-card {
        align-items: flex-start;
    }

    .hi-footer-contact-icon {
        width: 52px;
        height: 52px;
        border-radius: 17px;
        font-size: 20px;
    }

    .hi-footer-logo-icon {
        width: 52px;
        height: 52px;
        border-radius: 18px;
        font-size: 22px;
    }

    .hi-footer-logo-text strong {
        font-size: 19px;
    }

    .hi-footer-logo-text small {
        font-size: 12px;
    }

    .hi-footer-main {
        padding: 22px;
    }

    .hi-footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* FOOTER NETURK CREDIT */
.hi-footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hi-footer-credit span {
    color: #666666;
    font-size: 14px;
    font-weight: 750;
}

.hi-neturk-link {
    display: inline-flex;
    align-items: center;
}

.hi-neturk-link img {
    max-height: 30px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.hi-neturk-link:hover img {
    transform: translateY(-2px);
    opacity: 0.85;
}

@media (max-width: 767px) {
    .hi-footer-credit {
        justify-content: center;
    }

    .hi-neturk-link img {
        max-height: 28px;
    }
}

/* MAIN BANNER - HURDACIM ISTANBUL */

.hi-main-banner {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #fff8df;
}

.hi-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hi-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Görseli karartmadan okunabilir yapan soft katman */
.hi-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 250, 232, 0.92) 36%, rgba(255, 250, 232, 0.50) 62%, rgba(255, 255, 255, 0.08) 100%),
        linear-gradient(180deg, rgba(241, 197, 58, 0.16), rgba(255, 255, 255, 0.06));
}

.hi-main-banner::before {
    content: "";
    position: absolute;
    left: -130px;
    top: 80px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(241, 197, 58, 0.26);
    z-index: 3;
}

.hi-main-banner::after {
    content: "";
    position: absolute;
    right: -160px;
    bottom: -160px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(241, 197, 58, 0.20);
    z-index: 3;
}

.hi-main-banner .container {
    position: relative;
    z-index: 5;
}

/* CONTENT */
.hi-banner-content {
    max-width: 720px;
    padding: 70px 0;
}

.hi-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    padding: 11px 17px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(241, 197, 58, 0.55);
    color: #a77c00;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.hi-banner-badge i {
    color: #b88a00;
}

.hi-banner-content h1 {
    margin: 0;
    color: #171717;
    font-size: 72px;
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -3px;
}

.hi-banner-content h1 span {
    display: block;
    color: #c29300;
}

.hi-banner-content p {
    max-width: 650px;
    margin: 24px 0 0;
    color: #4f4f4f;
    font-size: 18px;
    line-height: 1.75;
    font-weight: 550;
}

/* BUTTONS */
.hi-banner-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 34px;
}

.hi-banner-btn {
    min-height: 54px;
    padding: 15px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--hi-primary), var(--hi-primary-dark));
    color: #171717;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 950;
    box-shadow: 0 16px 36px rgba(241, 197, 58, 0.36);
}

.hi-banner-btn:hover {
    color: #171717;
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(241, 197, 58, 0.46);
}

.hi-banner-outline {
    min-height: 54px;
    padding: 15px 24px;
    border-radius: 999px;
    background: #ffffff;
    color: #171717;
    border: 1px solid rgba(0, 0, 0, 0.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 950;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
}

.hi-banner-outline i {
    color: #b88a00;
}

.hi-banner-outline:hover {
    background: #171717;
    color: #ffffff;
}

.hi-banner-outline:hover i {
    color: var(--hi-primary);
}

/* INFO STRIP */
.hi-banner-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 48px;
    max-width: 820px;
}

.hi-banner-info-item {
    min-height: 96px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 13px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hi-banner-info-item:hover {
    transform: translateY(-5px);
    border-color: rgba(241, 197, 58, 0.65);
    background: #ffffff;
}

.hi-banner-info-item > i {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(241, 197, 58, 0.24);
    color: #b88a00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.hi-banner-info-item strong {
    display: block;
    color: #171717;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 950;
}

.hi-banner-info-item span {
    display: block;
    margin-top: 5px;
    color: #6a6a6a;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 650;
}

/* RIGHT FLOATING CARD */
.hi-banner-side-card {
    position: absolute;
    right: 8%;
    bottom: 78px;
    z-index: 6;
    width: 170px;
    height: 170px;
    border-radius: 38px;
    background: linear-gradient(135deg, var(--hi-primary), var(--hi-primary-dark));
    color: #171717;
    box-shadow: 0 26px 65px rgba(241, 197, 58, 0.42);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    transform: rotate(-4deg);
}

.hi-banner-side-card span {
    display: block;
    font-size: 42px;
    line-height: 1;
    font-weight: 950;
}

.hi-banner-side-card strong {
    max-width: 110px;
    display: block;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 950;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
    .hi-banner-content h1 {
        font-size: 62px;
    }

    .hi-banner-side-card {
        right: 4%;
    }
}

@media (max-width: 991px) {
    .hi-main-banner {
        min-height: auto;
        padding: 78px 0 70px;
    }

    .hi-banner-overlay {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 250, 232, 0.90) 56%, rgba(255, 255, 255, 0.58) 100%),
            linear-gradient(180deg, rgba(241, 197, 58, 0.18), rgba(255, 255, 255, 0.10));
    }

    .hi-banner-content {
        max-width: 100%;
        padding: 0;
        text-align: center;
    }

    .hi-banner-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hi-banner-content h1 {
        font-size: 50px;
        letter-spacing: -1.8px;
    }

    .hi-banner-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hi-banner-actions {
        justify-content: center;
    }

    .hi-banner-info {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 38px;
    }

    .hi-banner-side-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 36px auto 0;
        width: 150px;
        height: 150px;
        border-radius: 32px;
    }
}

@media (max-width: 767px) {
    .hi-main-banner {
        padding: 62px 0 56px;
    }

    .hi-banner-content h1 {
        font-size: 40px;
        line-height: 1.1;
        letter-spacing: -1.1px;
    }

    .hi-banner-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .hi-banner-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hi-banner-btn,
    .hi-banner-outline {
        width: 100%;
    }

    .hi-banner-info-item {
        min-height: 86px;
    }
}

@media (max-width: 480px) {
    .hi-main-banner {
        padding: 54px 0 48px;
    }

    .hi-banner-badge {
        font-size: 12px;
        padding: 9px 13px;
    }

    .hi-banner-content h1 {
        font-size: 33px;
    }

    .hi-banner-info-item {
        padding: 15px;
        border-radius: 18px;
    }

    .hi-banner-info-item > i {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .hi-banner-side-card {
        width: 132px;
        height: 132px;
        border-radius: 28px;
    }

    .hi-banner-side-card span {
        font-size: 34px;
    }

    .hi-banner-side-card strong {
        font-size: 12px;
    }
}

/* CATEGORY HERO */

.hi-category-hero {
    position: relative;
    padding: 74px 0 62px;
    background:
        radial-gradient(circle at 12% 18%, rgba(241, 197, 58, 0.22), transparent 26%),
        linear-gradient(135deg, #ffffff 0%, #fff8df 58%, #ffffff 100%);
    overflow: hidden;
}

.hi-category-hero::before {
    content: "";
    position: absolute;
    right: -130px;
    top: 40px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(241, 197, 58, 0.16);
}

.hi-category-hero .container {
    position: relative;
    z-index: 2;
}

.hi-category-hero-inner {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 36px;
    align-items: center;
}

.hi-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 10px 15px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(241, 197, 58, 0.52);
    color: #a77c00;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.055);
}

.hi-category-left h1 {
    margin: 0;
    color: #171717;
    font-size: 52px;
    line-height: 1.12;
    font-weight: 950;
    letter-spacing: -1.8px;
}

.hi-category-left p {
    max-width: 720px;
    margin: 18px 0 0;
    color: #626262;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 500;
}

/* BREADCRUMB */
.hi-breadcrumb {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
    padding: 12px 16px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.055);
}

.hi-breadcrumb a {
    color: #555555;
    font-size: 14px;
    font-weight: 800;
}

.hi-breadcrumb a:hover {
    color: #b88a00;
}

.hi-breadcrumb i {
    color: #b88a00;
    font-size: 12px;
}

.hi-breadcrumb span {
    color: #171717;
    font-size: 14px;
    font-weight: 950;
}

/* RIGHT ICON BOX */
.hi-category-right {
    display: flex;
    justify-content: flex-end;
}

.hi-category-icon-box {
    width: 100%;
    min-height: 245px;
    padding: 30px;
    border-radius: 38px;
    background: linear-gradient(135deg, var(--hi-primary), var(--hi-primary-dark));
    color: #171717;
    box-shadow: 0 24px 60px rgba(241, 197, 58, 0.34);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* CATEGORY PRODUCT CARD */

.hi-category-product-card {
    position: relative;
    display: block;
    height: 100%;
    min-height: 390px;
    border-radius: 28px;
    overflow: hidden;
    background: #dddddd;
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.11);
    isolation: isolate;
}

.hi-category-product-img {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hi-category-product-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.28) 42%, rgba(0, 0, 0, 0.82) 100%),
        linear-gradient(135deg, rgba(241, 197, 58, 0.18), transparent 48%);
    z-index: 2;
    transition: all 0.35s ease;
}

.hi-category-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.hi-category-product-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 26px;
}

.hi-category-product-content span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 13px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(241, 197, 58, 0.94);
    color: #171717;
    font-size: 12px;
    font-weight: 900;
}

.hi-category-product-content h3 {
    margin: 0;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.22;
    font-weight: 950;
    letter-spacing: -0.5px;
}

.hi-category-product-content p {
    margin: 11px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
}

.hi-category-product-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 18px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
}

.hi-category-product-btn i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--hi-primary);
    color: #171717;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* HOVER */
.hi-category-product-card:hover .hi-category-product-img img {
    transform: scale(1.08);
}

.hi-category-product-card:hover .hi-category-product-img::after {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.22) 38%, rgba(0, 0, 0, 0.86) 100%),
        linear-gradient(135deg, rgba(241, 197, 58, 0.28), transparent 48%);
}

.hi-category-product-card:hover .hi-category-product-btn i {
    transform: translateX(5px);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hi-category-product-card {
        min-height: 360px;
    }
}

@media (max-width: 575px) {
    .hi-category-product-card {
        min-height: 320px;
        border-radius: 24px;
    }

    .hi-category-product-content {
        padding: 22px;
    }

    .hi-category-product-content h3 {
        font-size: 21px;
    }

    .hi-category-product-content p {
        font-size: 13px;
    }
}

.hi-category-icon-box i {
    font-size: 42px;
    margin-bottom: 22px;
}

.hi-category-icon-box strong {
    display: block;
    font-size: 25px;
    line-height: 1.18;
    font-weight: 950;
}

.hi-category-icon-box span {
    display: block;
    margin-top: 10px;
    color: rgba(23, 23, 23, 0.72);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 750;
}

/* CONTENT SECTION */
.hi-category-content-section {
    position: relative;
    padding: 86px 0px;
    background: #ffffff;
}
.hi-product-content-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

    .hi-product-content-card::before {
        content: "";
        position: absolute;
        right: -60px;
        top: -60px;
        width: 180px;
        height: 180px;
        background: rgba(21, 101, 52, 0.09);
        border-radius: 50%;
    }

.hi-product-content-head {
    position: relative;
    z-index: 2;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

    .hi-product-content-head span {
        display: inline-block;
        background: rgba(21, 101, 52, 0.10);
        color: #156534;
        font-size: 14px;
        font-weight: 700;
        padding: 8px 15px;
        border-radius: 50px;
        margin-bottom: 14px;
    }

    .hi-product-content-head h2 {
        color: #172033;
        font-size: 32px;
        line-height: 1.25;
        font-weight: 800;
        margin-bottom: 18px;
    }

.hi-phone-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #156534, #0f3f24);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    padding: 13px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .hi-phone-btn:hover {
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(21, 101, 52, 0.25);
    }

.hi-product-content-body {
    position: relative;
    z-index: 2;
}

    .hi-product-content-body p {
        color: #5d6678;
        font-size: 16px;
        line-height: 1.85;
        margin-bottom: 18px;
    }

    .hi-product-content-body a {
        color: #156534;
        font-weight: 800;
        text-decoration: none;
    }

.hi-highlight-box {
    background: linear-gradient(135deg, #156534, #0f3f24);
    border-radius: 20px;
    padding: 24px;
    margin: 26px 0;
}

    .hi-highlight-box strong {
        display: block;
        color: #fff;
        font-size: 20px;
        line-height: 1.5;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .hi-highlight-box a {
        color: #ffd35a;
        font-size: 22px;
        font-weight: 900;
    }

.hi-final-call {
    margin-top: 28px;
}

    .hi-final-call a {
        display: block;
        width: 100%;
        background: #172033;
        color: #fff;
        text-align: center;
        padding: 18px 24px;
        border-radius: 18px;
        font-size: 20px;
        font-weight: 900;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .hi-final-call a:hover {
            background: #156534;
            color: #fff;
        }

@media (max-width: 575px) {
    .hi-product-content-card {
        padding: 24px;
        border-radius: 18px;
    }

    .hi-product-content-head h2 {
        font-size: 24px;
    }

    .hi-phone-btn {
        width: 100%;
        font-size: 17px;
    }

    .hi-highlight-box strong {
        font-size: 17px;
    }

    .hi-highlight-box a {
        font-size: 20px;
    }

    .hi-final-call a {
        font-size: 17px;
        padding: 16px;
    }
}
.hi-category-content-box {
    padding: 44px;
    border-radius: 34px;
    background:
        linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.07);
}

/* EDITOR CONTENT */
.hi-category-editor-content {
    margin-top: 22px;
}

.hi-category-editor-content h2,
.hi-category-editor-content h3,
.hi-category-editor-content h4 {
    color: #171717;
    font-weight: 950;
    letter-spacing: -0.4px;
}

.hi-category-editor-content h2 {
    margin: 0 0 18px;
    font-size: 30px;
    line-height: 1.24;
}

.hi-category-editor-content h3 {
    margin: 30px 0 14px;
    font-size: 25px;
    line-height: 1.3;
}

.hi-category-editor-content p {
    margin: 0 0 18px;
    color: #626262;
    font-size: 16px;
    line-height: 1.85;
    font-weight: 500;
}

.hi-category-editor-content ul,
.hi-category-editor-content ol {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.hi-category-editor-content ul li,
.hi-category-editor-content ol li {
    position: relative;
    margin-bottom: 12px;
    padding: 15px 18px 15px 48px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    color: #555555;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 650;
}

.hi-category-editor-content ul li::before,
.hi-category-editor-content ol li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 16px;
    top: 15px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(241, 197, 58, 0.24);
    color: #b88a00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.hi-category-editor-content img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    margin: 18px 0;
}

.hi-category-editor-content table {
    width: 100%;
    margin: 24px 0;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.hi-category-editor-content table th,
.hi-category-editor-content table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    color: #555555;
    font-size: 14px;
}

.hi-category-editor-content table th {
    background: #fff3c2;
    color: #171717;
    font-weight: 900;
}

.hi-category-editor-content table tr:last-child td {
    border-bottom: 0;
}

/* SIDEBAR */
.hi-category-sidebar {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 22px;
}

.hi-sidebar-offer-card,
.hi-sidebar-service-card {
    padding: 30px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.07);
}

.hi-sidebar-offer-card {
    background:
        radial-gradient(circle at right top, rgba(241, 197, 58, 0.22), transparent 34%),
        #ffffff;
}

.hi-sidebar-offer-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--hi-primary), var(--hi-primary-dark));
    color: #171717;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
}

.hi-sidebar-offer-card h3,
.hi-sidebar-service-card h3 {
    margin: 0;
    color: #171717;
    font-size: 23px;
    line-height: 1.25;
    font-weight: 950;
    letter-spacing: -0.5px;
}

.hi-sidebar-offer-card p {
    margin: 14px 0 24px;
    color: #666666;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 500;
}

.hi-sidebar-phone {
    min-height: 48px;
    margin-top: 12px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #f8f8f8;
    color: #171717;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 900;
}

.hi-sidebar-phone i {
    color: #b88a00;
}

.hi-sidebar-phone:hover {
    background: #171717;
    color: #ffffff;
}

.hi-sidebar-phone:hover i {
    color: var(--hi-primary);
}

.hi-sidebar-service-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.hi-sidebar-service-card ul li {
    margin-bottom: 10px;
}

.hi-sidebar-service-card ul li:last-child {
    margin-bottom: 0;
}

.hi-sidebar-service-card ul li a {
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 15px;
    background: #fffaf0;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 850;
}

.hi-sidebar-service-card ul li a::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #b88a00;
}

.hi-sidebar-service-card ul li a:hover {
    background: var(--hi-primary);
    color: #171717;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hi-category-hero {
        padding: 62px 0 54px;
    }

    .hi-category-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hi-category-left h1 {
        font-size: 42px;
    }

    .hi-category-left p {
        margin-left: auto;
        margin-right: auto;
    }

    .hi-breadcrumb {
        justify-content: center;
    }

    .hi-category-right {
        justify-content: center;
    }

    .hi-category-icon-box {
        width: 100%;
        max-width: 420px;
        min-height: auto;
        text-align: center;
        align-items: center;
    }

    .hi-category-content-section {
        padding: 70px 0;
    }

    .hi-category-content-box {
        padding: 34px;
        border-radius: 28px;
    }

    .hi-category-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .hi-category-left h1 {
        font-size: 34px;
        letter-spacing: -0.8px;
    }

    .hi-category-left p {
        font-size: 15px;
    }

    .hi-breadcrumb {
        border-radius: 20px;
        justify-content: flex-start;
    }

    .hi-category-content-box {
        padding: 26px;
    }

    .hi-category-editor-content h2 {
        font-size: 28px;
    }

    .hi-category-editor-content h3 {
        font-size: 22px;
    }

    .hi-sidebar-offer-card,
    .hi-sidebar-service-card {
        padding: 24px;
        border-radius: 24px;
    }
}

@media (max-width: 480px) {
    .hi-category-hero {
        padding: 52px 0 46px;
    }

    .hi-category-left h1 {
        font-size: 29px;
    }

    .hi-category-badge {
        font-size: 12px;
        padding: 9px 13px;
    }

    .hi-category-content-box {
        padding: 22px;
    }

    .hi-category-editor-content p {
        font-size: 15px;
    }

    .hi-category-editor-content ul li,
    .hi-category-editor-content ol li {
        padding: 14px 14px 14px 44px;
        font-size: 14px;
    }
}