/**
 * AZE Finance — 2026 Finance Consulting Design System
 * Priority: CSS overrides on existing DLE theme classes (styles.css layout preserved)
 */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
    --aze-font-display: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    --aze-font-body: 'DM Sans', 'Open Sans', sans-serif;
    --aze-navy: #0f172a;
    --aze-navy-mid: #152029;
    --aze-slate: #1e293b;
    --aze-blue: #1d6fdc;
    --aze-blue-dark: #1558b0;
    --aze-blue-soft: #e8f1fc;
    --aze-gold: #c9a227;
    --aze-text: #334155;
    --aze-text-muted: #64748b;
    --aze-text-light: #94a3b8;
    --aze-border: #e2e8f0;
    --aze-surface: #f8fafc;
    --aze-white: #ffffff;
    --aze-radius: 12px;
    --aze-radius-sm: 8px;
    --aze-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    --aze-shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.12);
    --aze-section-py: 80px;
    --aze-container: 1200px;
}

/* ═══════════════════════════════════════
   1. BASE TYPOGRAPHY
   ═══════════════════════════════════════ */
body {
    font-family: var(--aze-font-body);
    font-size: 15px;
    line-height: 1.65;
    color: var(--aze-text);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
    overflow-y: visible;
    height: auto;
    min-height: 100%;
}

/* Legacy styles.css sets html { overflow: hidden } — breaks native wheel scroll */
html {
    overflow-x: clip;
    overflow-y: scroll;
    height: auto;
    scroll-behavior: auto;
}

/* Legacy global "transition: all" on every link/button hurts scroll paint cost */
a,
.btn,
button {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--aze-font-display);
    letter-spacing: -0.02em;
    color: var(--aze-navy);
}

p { line-height: 1.7; }

.full-story,
.text-justify.full-story,
.aze-article-prose {
    font-family: var(--aze-font-body) !important;
    font-size: clamp(1.0625rem, 0.25vw + 1rem, 1.2rem) !important;
    line-height: 1.9 !important;
    color: var(--aze-text) !important;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    letter-spacing: 0.01em;
}

.about-lead {
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.75;
    color: var(--aze-text);
    margin-bottom: 20px;
}

/* Section label helper (via site-heading) */
.site-heading h2 {
    font-family: var(--aze-font-display) !important;
    font-size: clamp(1.75rem, 3.8vw, 2.5rem) !important;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-transform: none;
    color: var(--aze-navy);
    line-height: 1.2 !important;
}

.site-heading.text-center h2::before { display: none; }

.site-heading.text-center h2::after {
    background: linear-gradient(90deg, var(--aze-blue), #60a5fa);
    height: 3px;
    width: 52px;
    margin-left: -26px;
    bottom: 0;
    border-radius: 2px;
}

.site-heading p {
    font-size: clamp(1.0625rem, 1.8vw, 1.1875rem);
    line-height: 1.65;
    color: var(--aze-text-muted);
    margin-top: 14px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.aze-section {
    position: relative;
}

/* ═══════════════════════════════════════
   2. HEADER & NAVIGATION
   ═══════════════════════════════════════ */
.aze-site-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: var(--aze-white);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.07);
    contain: layout style;
}

.aze-site-header.is-scrolled {
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12);
}

/* — Top bar: logo + contacts + lang — */
.aze-header-bar {
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border-bottom: 1px solid var(--aze-border);
}

.aze-header-bar__inner {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 54px;
    padding-top: 6px;
    padding-bottom: 6px;
}

.aze-header-logo {
    flex-shrink: 0;
    text-decoration: none;
}

.aze-header-logo__frame {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 12px 5px 8px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.aze-header-logo:hover .aze-header-logo__frame {
    border-color: rgba(29, 111, 220, 0.25);
    box-shadow: 0 4px 16px rgba(29, 111, 220, 0.1);
    transform: translateY(-1px);
}

.aze-header-logo img,
.aze-mobile-logo img {
    display: block;
    height: 36px;
    width: auto;
    max-width: 168px;
    object-fit: contain;
}

.aze-site-header.is-scrolled .aze-header-logo img {
    height: 36px;
}

.aze-header-contacts {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.aze-header-contact a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    max-width: 100%;
    padding: 6px 11px;
    border-radius: 999px;
    background: var(--aze-white);
    border: 1px solid var(--aze-border);
    color: var(--aze-text);
    font-size: 11.5px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.aze-header-contact a:hover {
    color: var(--aze-blue);
    border-color: rgba(29, 111, 220, 0.28);
    background: var(--aze-blue-soft);
    box-shadow: 0 2px 8px rgba(29, 111, 220, 0.08);
}

.aze-header-contact i {
    color: var(--aze-blue);
    font-size: 11px;
    flex-shrink: 0;
}

.aze-header-contact__text {
    overflow: hidden;
    text-overflow: ellipsis;
}

.aze-header-top__actions {
    flex-shrink: 0;
    margin-left: auto;
}

/* — Nav bar — */
.aze-header-nav.top-bar-area {
    margin-top: 0 !important;
    padding: 0;
    background: linear-gradient(90deg, #0f172a 0%, #152029 55%, #1a2732 100%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.aze-header-nav__inner {
    display: flex;
    align-items: center;
    min-height: 46px;
}

.aze-header-nav .main-navigation {
    width: 100%;
    margin-top: 0;
}

.aze-header-nav .menu-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: visible;
}


.aze-header-nav .menu-item {
    margin: 0;
    position: relative;
    flex-shrink: 0;
}

.aze-header-nav .menu-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 11px !important;
    border-radius: 8px;
    font-family: var(--aze-font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.015em;
    color: rgba(255, 255, 255, 0.88) !important;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

.aze-header-nav .menu-link:hover,
.aze-header-nav .menu-link.active {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08);
}

.aze-header-nav .menu-caret {
    font-size: 9px;
    opacity: 0.65;
    transition: transform 0.2s ease;
}

.aze-header-nav .has-submenu:hover .menu-caret {
    transform: rotate(180deg);
}

.aze-header-nav .submenu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 240px;
    margin: 0;
    padding: 6px;
    list-style: none;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--aze-radius-sm);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    z-index: 1200;
}

.aze-header-nav .has-submenu:hover .submenu {
    display: block;
}

.aze-header-nav .submenu-link {
    display: block;
    padding: 9px 12px !important;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.4;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.aze-header-nav .submenu-link:hover {
    background: rgba(29, 111, 220, 0.22) !important;
    color: #fff !important;
}

.aze-header-nav .menu-item--cta {
    margin-left: 6px;
}

.aze-header-nav .menu-item--cta .menu-link {
    background: var(--aze-blue) !important;
    color: #fff !important;
    border-radius: 999px;
    padding: 7px 16px !important;
    box-shadow: 0 4px 14px rgba(29, 111, 220, 0.35);
}

.aze-header-nav .menu-item--cta .menu-link:hover {
    background: var(--aze-blue-dark) !important;
    box-shadow: 0 6px 18px rgba(29, 111, 220, 0.45);
}

/* Language switcher */
.aze-header-lang.diller,
.aze-header-bar .diller,
.top-bar-area .diller {
    position: relative;
    z-index: 1200;
}

.aze-header-bar .dil,
.top-bar-area .dil {
    width: auto;
    min-width: 58px;
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--aze-white);
    border: 1px solid var(--aze-border);
}

.aze-header-bar .dil > a,
.top-bar-area .dil > a,
.aze-header-bar .dil-kalan a,
.top-bar-area .dil-kalan a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--aze-navy) !important;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.aze-header-bar .dil-kalan,
.top-bar-area .dil-kalan {
    width: 92px;
    min-width: 92px;
    border-radius: var(--aze-radius-sm);
    box-shadow: var(--aze-shadow-lg);
    background: #152029;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.aze-header-bar .dil-kalan a {
    color: #fff !important;
    padding: 8px 10px;
}

.aze-header-bar .dil-kalan a:hover,
.top-bar-area .dil-kalan a:hover {
    background: rgba(29, 111, 220, 0.25);
}

.aze-header-bar .dil > a img,
.aze-header-bar .dil-kalan a img,
.top-bar-area .dil > a img,
.top-bar-area .dil-kalan a img {
    width: 16px;
    height: 16px;
    margin: 0;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Legacy overrides */
nav.ustmenu {
    position: static !important;
    height: auto !important;
    background: transparent !important;
}

.top-bar-area.bg-theme {
    margin-top: 0 !important;
}

.logo img {
    width: auto;
    max-height: 36px;
    object-fit: contain;
}

ul.haqqinda { display: none; }

/* Mobile header */
.aze-mobile-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: #fff;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.aze-mobile-header .navbar {
    margin-bottom: 0;
    border: none;
    background: transparent;
    min-height: 0;
}

.aze-mobile-header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 8px 12px;
    float: none;
}

.aze-mobile-logo {
    float: none !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
}

.aze-mobile-logo .aze-header-logo__frame {
    padding: 4px 10px 4px 6px;
}

.aze-mobile-logo img {
    height: 32px;
    max-width: 140px;
}

.aze-mobile-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.aze-mobile-toggle {
    margin: 0 !important;
    float: none !important;
    border-radius: 8px !important;
    border: 1px solid var(--aze-border) !important;
    background: var(--aze-surface) !important;
    padding: 8px 10px !important;
}

.aze-mobile-toggle .fa-bars {
    color: var(--aze-navy);
}

#header .diller.mob .dil {
    background: var(--aze-surface);
    border: 1px solid var(--aze-border);
    border-radius: 999px;
    padding: 4px 8px;
}

#header .diller.mob .dil > a {
    color: var(--aze-navy) !important;
    font-size: 12px;
    font-weight: 700;
}

#header .diller.mob .dil-kalan a {
    color: #fff !important;
}

#header .navbar-nav > li > a {
    font-family: var(--aze-font-display);
    font-weight: 600;
    font-size: 14px;
}

#header .aze-mobile-cta > a {
    display: inline-block;
    margin: 8px 15px 12px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--aze-blue);
    color: #fff !important;
    text-align: center;
}

#header .navbar-collapse {
    border-top: 1px solid var(--aze-border);
    background: #fff;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
}

#header.navbar-sticky.sticky,
#header .sticky {
    position: sticky;
    top: 0;
}

@media (max-width: 1280px) {
    .aze-header-contact--address .aze-header-contact__text {
        max-width: 160px;
    }
}

@media (max-width: 1120px) {
    .aze-header-contact--address .aze-header-contact__text {
        display: none;
    }

    .aze-header-contact--mobile {
        display: none;
    }
}

@media (max-width: 960px) {
    .aze-header-contacts {
        display: none;
    }
}

/* ═══════════════════════════════════════
   3. HERO / SLIDER
   ═══════════════════════════════════════ */
.aze-hero.banner-area {
    position: relative;
    margin-top: 0;
    overflow: hidden;
}

.aze-hero.banner-area,
.aze-hero.banner-area #bootcarousel,
.aze-hero.banner-area .carousel-inner,
.aze-hero.banner-area .item.aze-slide {
    height: clamp(380px, 68vh, 580px) !important;
    min-height: 380px;
}

/* Fluid slider copy — scales with viewport width + hero height on large monitors */
.aze-hero.banner-area {
    --aze-slide-title: clamp(1.875rem, calc(0.95rem + 2.6vw + 0.65vh), 3.75rem);
    --aze-slide-lead: clamp(0.9375rem, calc(0.72rem + 0.55vw + 0.12vh), 1.1875rem);
    --aze-slide-zone: min(640px, 92vw);
    --aze-slide-copy-max: var(--aze-slide-zone);
    --aze-slide-lead-max: min(520px, 88vw);
}

.aze-hero.banner-area .aze-slide-panel,
.aze-hero.banner-area .aze-slide-panel .container,
.aze-hero.banner-area .aze-slide-content,
.aze-hero.banner-area .aze-slide-content div,
.aze-hero.banner-area .aze-slide-actions {
    height: auto !important;
}

.aze-hero.banner-area .content,
.aze-hero .aze-slide-content {
    overflow: visible !important;
}

.aze-hero .item.aze-slide {
    position: relative;
    overflow: hidden;
}

.aze-hero .shadow.theme::after {
    display: none;
}

.aze-hero .aze-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.45) 52%, rgba(15, 23, 42, 0.55) 100%),
        linear-gradient(90deg, rgba(15, 23, 42, 0.35) 0%, rgba(15, 23, 42, 0.2) 50%, rgba(15, 23, 42, 0.35) 100%);
}

.aze-hero .aze-slide::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.5), transparent);
}

.aze-hero .slider-thumb.aze-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    transform: scale(1.02);
}

.aze-hero .carousel-inner .item > .slider-thumb {
    -webkit-animation: none;
    animation: none;
}

.aze-hero .item.active > .slider-thumb {
    animation: azeKenBurns 16s ease-out forwards;
}

@keyframes azeKenBurns {
    from { transform: scale(1.02); }
    to { transform: scale(1.1); }
}

.aze-hero .aze-slide-panel {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(28px, 5vh, 48px) clamp(16px, 4vw, 40px);
    pointer-events: none;
}

.aze-hero .aze-slide-panel .container {
    width: 100%;
    max-width: min(1140px, 94vw);
    margin: 0 auto;
    padding-inline: clamp(16px, 3vw, 32px);
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
}

.aze-hero .aze-slide-content {
    position: relative;
    width: 100%;
    max-width: var(--aze-slide-copy-max);
    padding: 0;
    margin: 0 auto;
    text-align: center;
}

.aze-hero .aze-slide-content::before {
    content: '';
    display: block;
    width: 52px;
    height: 4px;
    border-radius: 999px;
    margin: 0 auto 1.35rem;
    background: linear-gradient(90deg, var(--aze-blue) 0%, #60a5fa 55%, var(--aze-gold) 100%);
}

.aze-hero.banner-area .item h1 {
    font-family: var(--aze-font-display) !important;
    font-size: var(--aze-slide-title) !important;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: clamp(0.85rem, 1.6vh, 1.35rem);
    color: #fff !important;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.aze-hero.banner-area .item p {
    font-size: var(--aze-slide-lead) !important;
    line-height: 1.7;
    max-width: var(--aze-slide-lead-max);
    margin-inline: auto;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
}

.aze-hero .aze-slide-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 1.75rem;
}

.aze-hero .btn-blue.aze-slide-cta {
    font-family: var(--aze-font-display);
    font-weight: 600;
    font-size: clamp(14px, calc(11px + 0.28vw), 17px);
    border-radius: 999px;
    padding: clamp(12px, calc(8px + 0.35vh), 16px) clamp(26px, calc(18px + 1.1vw), 38px);
    letter-spacing: 0.02em;
    margin-top: 0;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 28px rgba(29, 111, 220, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.aze-hero .btn-blue.aze-slide-cta::after {
    content: '\2192';
    font-size: 1.1em;
    transition: transform 0.25s ease;
}

.aze-hero .btn-blue.aze-slide-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(29, 111, 220, 0.5);
}

.aze-hero .btn-blue.aze-slide-cta:hover::after {
    transform: translateX(4px);
}

.aze-hero .aze-slide-content.aze-animate > h1,
.aze-hero .aze-slide-content.aze-animate > p,
.aze-hero .aze-slide-content.aze-animate > .aze-slide-actions {
    animation: azeSlideReveal 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.aze-hero .aze-slide-content.aze-animate > h1 { animation-delay: 0.08s; }
.aze-hero .aze-slide-content.aze-animate > p { animation-delay: 0.2s; }
.aze-hero .aze-slide-content.aze-animate > .aze-slide-actions { animation-delay: 0.34s; }

@keyframes azeSlideReveal {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.aze-hero .aze-slider-nav.carousel-control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    line-height: 1;
    padding: 0;
    margin-top: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    background-image: none !important;
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease, background 0.25s ease, transform 0.25s ease;
    z-index: 5;
    text-align: center;
}

.aze-hero:hover .aze-slider-nav.carousel-control,
.aze-hero .aze-slider-nav.carousel-control:focus {
    opacity: 1;
}

.aze-hero .aze-slider-prev.carousel-control,
.aze-hero .carousel-control.left.aze-slider-nav {
    left: clamp(12px, 2.5vw, 28px);
    right: auto;
}

.aze-hero .aze-slider-next.carousel-control,
.aze-hero .carousel-control.right.aze-slider-nav {
    right: clamp(12px, 2.5vw, 28px);
    left: auto;
}

.aze-hero .aze-slider-nav.carousel-control:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-50%) scale(1.05);
}

.aze-hero .aze-slider-nav.carousel-control i {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    margin: 0;
    font-size: 26px;
    line-height: 1;
    text-shadow: none;
    pointer-events: none;
}

.aze-hero .aze-slider-dots.carousel-indicators {
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

.aze-hero .aze-slider-dots li {
    width: 8px;
    height: 8px;
    margin: 0;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    transition: width 0.35s ease, background 0.35s ease, opacity 0.35s ease;
    cursor: pointer;
}

.aze-hero .aze-slider-dots li.active {
    width: 28px;
    background: var(--aze-blue);
    box-shadow: 0 0 12px rgba(29, 111, 220, 0.6);
}

.aze-hero .aze-slider-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.12);
    z-index: 4;
    overflow: hidden;
}

.aze-hero .aze-slider-progress-bar {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--aze-blue), #93c5fd);
    transform-origin: left center;
}

.aze-hero .aze-slider-progress-bar.is-running {
    animation: azeSliderProgress var(--aze-slider-interval, 6500ms) linear forwards;
}

@keyframes azeSliderProgress {
    from { width: 0%; }
    to { width: 100%; }
}

.aze-hero .aze-slider-counter {
    position: absolute;
    right: clamp(16px, 3vw, 40px);
    bottom: 52px;
    z-index: 5;
    font-family: var(--aze-font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: baseline;
    gap: 4px;
    pointer-events: none;
}

.aze-hero .aze-slider-current {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0;
}

.aze-hero .aze-slider-sep {
    opacity: 0.45;
    font-weight: 500;
}

.aze-hero .carousel-fade .carousel-inner .item {
    transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 767px) {
    .aze-hero.banner-area,
    .aze-hero.banner-area #bootcarousel,
    .aze-hero.banner-area .carousel-inner,
    .aze-hero.banner-area .item.aze-slide {
        height: clamp(340px, 58vh, 480px) !important;
        min-height: 340px;
    }

    .aze-hero .aze-slide-panel {
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 64px;
    }

    .aze-hero .aze-slide-content {
        max-width: 100%;
        text-align: center;
    }

    .aze-hero .aze-slide-content::before {
        width: 40px;
        margin: 0 auto 1rem;
    }

    .aze-hero .aze-slider-nav.carousel-control {
        width: 42px;
        height: 42px;
        opacity: 0.85;
    }

    .aze-hero .aze-slider-nav.carousel-control i {
        font-size: 22px;
    }

    .aze-hero .aze-slider-counter {
        display: none;
    }

    .aze-hero .aze-slider-dots.carousel-indicators {
        bottom: 18px;
    }
}

/* Large desktops (24–28" and wider) — proportional hero + copy */
@media (min-width: 1200px) {
    .aze-hero.banner-area {
        --aze-slide-title: clamp(2.25rem, calc(0.85rem + 2.1vw + 0.95vh), 4.25rem);
        --aze-slide-lead: clamp(1rem, calc(0.62rem + 0.42vw + 0.18vh), 1.3125rem);
        --aze-slide-zone: min(720px, 68vw);
        --aze-slide-copy-max: var(--aze-slide-zone);
        --aze-slide-lead-max: min(600px, 62vw);
    }

    .aze-hero.banner-area,
    .aze-hero.banner-area #bootcarousel,
    .aze-hero.banner-area .carousel-inner,
    .aze-hero.banner-area .item.aze-slide {
        height: clamp(420px, 72vh, 640px) !important;
        min-height: 420px;
    }

    .aze-hero .aze-slide-panel {
        padding: clamp(32px, 5vh, 56px) clamp(24px, 4vw, 48px);
    }

    .aze-hero .aze-slide-content::before {
        width: clamp(52px, 3.5vw, 68px);
        height: 5px;
        margin-bottom: clamp(1.25rem, 2vh, 1.75rem);
    }

    .aze-hero .aze-slide-actions {
        margin-top: clamp(1.5rem, 2.5vh, 2.25rem);
    }
}

@media (min-width: 1600px) {
    .aze-hero.banner-area {
        --aze-slide-title: clamp(2.75rem, calc(1rem + 1.75vw + 1.15vh), 5rem);
        --aze-slide-lead: clamp(1.0625rem, calc(0.65rem + 0.34vw + 0.22vh), 1.4375rem);
        --aze-slide-zone: min(780px, 58vw);
        --aze-slide-copy-max: var(--aze-slide-zone);
        --aze-slide-lead-max: min(660px, 52vw);
    }

    .aze-hero.banner-area,
    .aze-hero.banner-area #bootcarousel,
    .aze-hero.banner-area .carousel-inner,
    .aze-hero.banner-area .item.aze-slide {
        height: clamp(440px, 74vh, 680px) !important;
        min-height: 440px;
    }
}

@media (min-width: 1920px) {
    .aze-hero.banner-area {
        --aze-slide-title: clamp(3rem, calc(1.15rem + 1.55vw + 1.35vh), 5.5rem);
        --aze-slide-lead: clamp(1.125rem, calc(0.7rem + 0.28vw + 0.28vh), 1.5625rem);
        --aze-slide-zone: min(820px, 52vw);
        --aze-slide-copy-max: var(--aze-slide-zone);
        --aze-slide-lead-max: min(700px, 48vw);
    }

    .aze-hero.banner-area,
    .aze-hero.banner-area #bootcarousel,
    .aze-hero.banner-area .carousel-inner,
    .aze-hero.banner-area .item.aze-slide {
        height: clamp(460px, 76vh, 720px) !important;
        min-height: 460px;
    }
}

@media (min-width: 2560px) {
    .aze-hero.banner-area {
        --aze-slide-title: clamp(3.25rem, calc(1.35rem + 1.35vw + 1.5vh), 6rem);
        --aze-slide-lead: clamp(1.1875rem, calc(0.75rem + 0.22vw + 0.32vh), 1.6875rem);
        --aze-slide-zone: min(860px, 48vw);
        --aze-slide-copy-max: var(--aze-slide-zone);
        --aze-slide-lead-max: min(740px, 44vw);
    }
}

/* ═══════════════════════════════════════
   4. SERVICES (features-area / costum1)
   ═══════════════════════════════════════ */
.aze-services.features-area {
    padding-top: var(--aze-section-py);
    padding-bottom: var(--aze-section-py);
    background: var(--aze-white);
    margin-bottom: 0 !important;
    top: 0 !important;
    position: relative;
}

.aze-section-head h2 {
    font-family: var(--aze-font-display);
    font-size: clamp(1.75rem, 3.8vw, 2.5rem) !important;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--aze-navy);
    margin-bottom: 0;
    line-height: 1.2;
}

.aze-svc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.aze-svc-card {
    position: relative;
    border-radius: calc(var(--aze-radius) + 4px);
    overflow: hidden;
    min-height: 300px;
    background: var(--aze-navy);
    box-shadow: var(--aze-shadow);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.aze-svc-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--aze-shadow-lg);
}

.aze-svc-card__link {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 300px;
    height: 100%;
    color: #fff;
    text-decoration: none;
    position: relative;
}

.aze-svc-card__media {
    position: absolute;
    inset: 0;
    background-image: var(--aze-svc-bg);
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.aze-svc-card:hover .aze-svc-card__media {
    transform: scale(1.06);
}

.aze-svc-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.15) 0%,
        rgba(15, 23, 42, 0.55) 45%,
        rgba(15, 23, 42, 0.92) 100%
    );
    transition: opacity 0.35s ease;
}

.aze-svc-card:hover .aze-svc-card__overlay {
    background: linear-gradient(
        180deg,
        rgba(29, 111, 220, 0.12) 0%,
        rgba(15, 23, 42, 0.65) 50%,
        rgba(15, 23, 42, 0.95) 100%
    );
}

.aze-svc-card__body {
    position: relative;
    z-index: 2;
    padding: 32px 26px 28px;
}

.aze-svc-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    margin-bottom: 16px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.aze-svc-card__icon i {
    font-size: 22px;
    color: #fff;
    margin: 0 !important;
}

.aze-svc-card:hover .aze-svc-card__icon {
    background: var(--aze-blue);
    border-color: var(--aze-blue);
    transform: scale(1.05);
}

.aze-svc-card__title {
    font-family: var(--aze-font-display);
    font-size: clamp(1.1875rem, 2vw, 1.375rem);
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
    margin: 0 0 12px;
}

.aze-svc-card__text {
    font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aze-svc-card__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--aze-font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.aze-svc-card:hover .aze-svc-card__more {
    opacity: 1;
    transform: translateY(0);
    color: #93c5fd;
}

.aze-svc-card__more i {
    transition: transform 0.3s ease;
}

.aze-svc-card:hover .aze-svc-card__more i {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .aze-svc-card__more {
        opacity: 1;
        transform: translateY(0);
    }

    .aze-client-logo__name {
        opacity: 1;
        transform: translateY(0);
    }

    .aze-client-logo__img {
        filter: grayscale(40%) opacity(0.88);
    }
}

@media (prefers-reduced-motion: reduce) {
    .aze-clients-track,
    .aze-hero .item.active > .slider-thumb,
    .aze-svc-card__media {
        animation: none !important;
        transition: none !important;
    }
}

/* ═══════════════════════════════════════
   5. NEWS / BLOG CARDS (homepage)
   ═══════════════════════════════════════ */
.aze-news.blog-area {
    background: var(--aze-surface) !important;
    padding-top: var(--aze-section-py);
    padding-bottom: var(--aze-section-py);
}

.aze-news .aze-section-head p {
    color: var(--aze-text-muted);
    font-size: clamp(1.0625rem, 1.8vw, 1.1875rem);
    line-height: 1.65;
    margin-top: 10px;
}

.aze-news .aze-news-grid,
.aze-news .blog-itemss {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
}

.aze-news .blog-itemss > .item-box,
.aze-news .blog-itemss > .col-md-4,
.aze-news .aze-news-item {
    width: 100%;
    float: none;
    padding: 0;
    display: flex;
    min-height: 0;
}

.aze-news .item.yenilikler,
.aze-news .aze-news-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100% !important;
    min-height: 100%;
    max-height: none;
    overflow: hidden;
    background: var(--aze-white);
    border-radius: calc(var(--aze-radius-sm) + 2px);
    border: 1px solid var(--aze-border);
    box-shadow: 0 2px 16px rgba(15, 23, 42, 0.05);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.aze-news .aze-news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--aze-blue), #60a5fa);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.aze-news .aze-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
    border-color: rgba(29, 111, 220, 0.18);
}

.aze-news .aze-news-card:hover::before {
    opacity: 1;
}

.aze-news .aze-news-card__media {
    display: block;
    position: relative;
    flex: 0 0 auto;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--aze-navy);
}

.aze-news .aze-news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.aze-news .aze-news-card:hover .aze-news-card__media img {
    transform: scale(1.06);
}

.aze-news .aze-news-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.55) 0%, transparent 50%);
    pointer-events: none;
}

.aze-news .aze-news-card__date {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-family: var(--aze-font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.aze-news .aze-news-card__date i {
    font-size: 10px;
    opacity: 0.85;
}

.aze-news .aze-news-card__body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 20px 22px 22px;
    min-height: 160px;
}

.aze-news .aze-news-card__title {
    font-family: var(--aze-font-display);
    font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 10px;
    min-height: 2.75em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aze-news .aze-news-card__title a {
    color: var(--aze-navy);
    transition: color 0.2s ease;
}

.aze-news .aze-news-card:hover .aze-news-card__title a {
    color: var(--aze-blue);
}

.aze-news .aze-news-card__excerpt {
    font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
    line-height: 1.65;
    color: var(--aze-text-muted);
    margin: 0 0 16px;
    flex: 1 1 auto;
    min-height: 2.6em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aze-news .aze-news-card__more {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--aze-font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--aze-blue);
    text-decoration: none;
    transition: gap 0.25s ease, color 0.25s ease;
}

.aze-news .aze-news-card__more i {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.aze-news .aze-news-card:hover .aze-news-card__more {
    color: var(--aze-blue-dark);
    gap: 10px;
}

.aze-news .aze-news-card:hover .aze-news-card__more i {
    transform: translateX(3px);
}

/* legacy inner nodes — hide if cache serves old markup */
.aze-news .aze-news-card > .thumb,
.aze-news .aze-news-card > .info,
.aze-news .aze-news-card .read-more.btn {
    display: none;
}

/* ═══════════════════════════════════════
   6. TESTIMONIALS — compact smart grid
   ═══════════════════════════════════════ */
.aze-tst-section {
    background: linear-gradient(160deg, var(--aze-navy) 0%, #0c1424 100%);
    color: #fff;
    padding: 52px 0 48px;
    position: relative;
    overflow: hidden;
}

.aze-tst-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29, 111, 220, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.aze-tst-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.aze-tst-head-copy {
    flex: 1;
    min-width: 0;
}

.aze-tst-title {
    font-family: var(--aze-font-display) !important;
    font-size: clamp(1.625rem, 3.2vw, 2.25rem) !important;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin: 0 0 8px;
    line-height: 1.2;
}

.aze-tst-subtitle {
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    margin: 0;
    line-height: 1.55;
}

.aze-tst-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.aze-tst-nav {
    display: flex;
    gap: 6px;
    margin: 0;
}

.aze-tst-nav .owl-prev,
.aze-tst-nav .owl-next {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.aze-tst-nav .owl-prev:hover,
.aze-tst-nav .owl-next:hover {
    background: rgba(29, 111, 220, 0.35) !important;
    border-color: rgba(29, 111, 220, 0.5) !important;
    transform: translateY(-1px);
}

.aze-tst-count {
    font-family: var(--aze-font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.55);
    min-width: 44px;
    text-align: center;
}

.aze-tst-current {
    color: #fff;
    font-size: 15px;
    letter-spacing: 0;
}

.aze-tst-sep {
    opacity: 0.45;
    margin: 0 2px;
}

.aze-tst-body {
    position: relative;
    z-index: 1;
}

.aze-tst-slider .owl-stage-outer {
    padding: 4px 0 8px;
}

.aze-tst-slider .owl-item {
    display: flex;
}

.aze-tst-inner {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: calc(var(--aze-radius-sm) + 2px);
    padding: 14px 16px 16px;
    width: 100%;
    height: 100%;
    min-height: 148px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.aze-tst-slider .owl-item.active .aze-tst-inner {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(29, 111, 220, 0.35);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.aze-tst-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.aze-tst-photo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.aze-tst-name {
    font-style: normal;
    font-family: var(--aze-font-display);
    font-weight: 700;
    font-size: 0.9375rem;
    color: #fff;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.aze-tst-quote {
    margin: 0;
    padding: 0;
    border: none;
    flex: 1;
    position: relative;
}

.aze-tst-quote::before {
    content: '\201C';
    position: absolute;
    top: -6px;
    left: -2px;
    font-family: Georgia, serif;
    font-size: 2rem;
    line-height: 1;
    color: rgba(29, 111, 220, 0.45);
    pointer-events: none;
}

.aze-tst-text {
    font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    padding-left: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aze-tst-text img { display: none !important; }

.aze-tst-text div[style*="text-align"] {
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    max-height: 0;
    margin: 0;
    padding: 0;
}

.aze-tst-avatars {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.aze-tst-avatars::-webkit-scrollbar {
    display: none;
}

.aze-tst-avatar-btn {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    opacity: 0.45;
    overflow: hidden;
    transition: opacity 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.aze-tst-avatar-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.aze-tst-avatar-btn:hover {
    opacity: 0.85;
    transform: scale(1.06);
}

.aze-tst-avatar-btn.active {
    opacity: 1;
    border-color: var(--aze-blue);
    box-shadow: 0 0 0 3px rgba(29, 111, 220, 0.25);
    transform: scale(1.08);
}

.aze-tst-slider .owl-dots {
    display: none;
}

/* ═══════════════════════════════════════
   7. CLIENTS — interactive marquee
   ═══════════════════════════════════════ */
.clients-modern-wrap {
    background: linear-gradient(180deg, var(--aze-surface) 0%, var(--aze-white) 100%);
    padding-top: var(--aze-section-py);
    padding-bottom: var(--aze-section-py);
    overflow: hidden;
}

.clients-modern-title {
    font-family: var(--aze-font-display) !important;
    font-size: clamp(1.75rem, 3.8vw, 2.5rem) !important;
    font-weight: 800;
    color: var(--aze-navy);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.clients-modern-subtitle {
    color: var(--aze-text-muted);
    font-size: clamp(1.0625rem, 1.8vw, 1.1875rem);
    line-height: 1.65;
}

.aze-clients-showcase {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 36px;
    padding: 8px 0;
}

.aze-clients-showcase::before,
.aze-clients-showcase::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(40px, 8vw, 120px);
    z-index: 3;
    pointer-events: none;
}

.aze-clients-showcase::before {
    left: 0;
    background: linear-gradient(90deg, var(--aze-surface) 0%, transparent 100%);
}

.aze-clients-showcase::after {
    right: 0;
    background: linear-gradient(270deg, var(--aze-white) 0%, transparent 100%);
}

.aze-clients-row {
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.aze-clients-row.is-dragging {
    cursor: grabbing;
}

.aze-clients-row.is-dragging .aze-clients-track {
    animation-play-state: paused !important;
}

.aze-clients-row:hover .aze-clients-track {
    animation-play-state: paused;
}

.aze-clients-track {
    display: flex;
    width: max-content;
    animation: azeClientsMarqueeLeft var(--aze-marquee-speed, 38s) linear infinite;
}

.aze-clients-showcase.is-offscreen .aze-clients-track {
    animation-play-state: paused;
}

.aze-hero.is-offscreen .item.active > .slider-thumb {
    animation-play-state: paused;
}

.aze-clients-row--reverse .aze-clients-track {
    animation-name: azeClientsMarqueeRight;
}

.aze-clients-group {
    display: flex;
    align-items: stretch;
    gap: 20px;
    padding: 4px 10px;
    flex-shrink: 0;
}

.aze-clients-group.is-clone {
    /* clone appended by JS for seamless loop */
}

@keyframes azeClientsMarqueeLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes azeClientsMarqueeRight {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.aze-client-logo {
    flex: 0 0 auto;
    width: clamp(140px, 16vw, 190px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.aze-client-logo:hover {
    transform: translateY(-6px) scale(1.02);
    z-index: 2;
}

.aze-client-logo__inner {
    width: 100%;
    min-height: 96px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--aze-white);
    border: 1px solid var(--aze-border);
    border-radius: var(--aze-radius);
    box-shadow: var(--aze-shadow);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.aze-client-logo:hover .aze-client-logo__inner {
    border-color: rgba(29, 111, 220, 0.35);
    box-shadow: 0 12px 32px rgba(29, 111, 220, 0.12);
    background: #fff;
}

.aze-client-logo__img {
    max-width: 100%;
    max-height: 52px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.72);
    transition: filter 0.35s ease, transform 0.35s ease;
}

.aze-client-logo:hover .aze-client-logo__img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.aze-client-logo__name {
    font-family: var(--aze-font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--aze-text-muted);
    text-align: center;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.aze-client-logo:hover .aze-client-logo__name {
    opacity: 1;
    transform: translateY(0);
    color: var(--aze-blue);
}

/* ═══════════════════════════════════════
   8. MAP & SOCIAL (pre-footer)
   ═══════════════════════════════════════ */
.aze-map-section {
    background: var(--aze-surface);
    border-top: 1px solid var(--aze-border);
}

.aze-map-wrap {
    line-height: 0;
    max-width: var(--aze-container);
    margin: 0 auto;
}

.aze-map-wrap iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
    filter: grayscale(15%) contrast(1.02);
}

.aze-social-bar {
    padding: 28px 0;
    background: var(--aze-navy-mid);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.aze-social-bar .sosial-icon {
    padding: 0;
    max-width: var(--aze-container);
    margin: 0 auto;
}

.aze-social-bar .sosials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    float: none;
    margin: 0;
    padding: 0;
    list-style: none;
}

.aze-social-bar .sosials li {
    float: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aze-social-bar .sosial-icon a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--aze-radius-sm);
    background: rgba(255, 255, 255, 0.08);
    color: #fff !important;
    font-size: 20px;
    padding: 0 !important;
    transition: background 0.2s, transform 0.2s;
}

.aze-social-bar .sosial-icon a i,
.aze-social-bar .sosial-icon a i.fa,
.aze-social-bar .sosial-icon a i.fas,
.aze-social-bar .sosial-icon a i.fab,
.aze-social-bar .sosial-icon a i.fa-brands {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1;
    display: block;
    width: 1em;
    text-align: center;
}

.aze-social-bar .sosial-icon a i.fa-map-marker,
.aze-social-bar .sosial-icon a i.fa-map-marker-alt {
    font-size: 1.05em;
    font-weight: 400;
}

.aze-social-bar .sosial-icon a svg,
.aze-social-icon-map {
    display: block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: inherit;
}

.aze-social-bar .sosial-icon a:hover {
    background: var(--aze-blue);
    transform: translateY(-2px);
    padding: 0 !important;
}

/* ═══════════════════════════════════════
   9. FOOTER
   ═══════════════════════════════════════ */
footer.footer-with-dots {
    position: relative;
    background-color: rgb(21, 32, 41) !important;
}

footer.footer-with-dots .container,
footer.footer-with-dots .footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-dots-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.footer-dots-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 4px 4px;
    opacity: 0.9;
}

.footer-world-map {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    opacity: 0.12;
}

footer.default-padding-top { padding-top: 80px; }

footer .f-item h4 {
    font-family: var(--aze-font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
}

footer .f-item p {
    font-size: 14px;
    line-height: 1.75;
    color: #ccc;
}

footer .f-items .item { padding-right: 30px; }

footer .elaqe {
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

footer .elaqe a {
    font-size: 14px;
    color: #ccc !important;
    line-height: 1.5;
}

footer .elaqe a:hover { color: #fff !important; }

footer .footer-bottom {
    margin-top: 80px;
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.06);
}

footer .footer-bottom p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
    margin: 0;
}

/* ═══════════════════════════════════════
   10. INNER PAGES — blog list & single
   ═══════════════════════════════════════ */
.blog-area.full-blog {
    padding-top: 32px;
    padding-bottom: var(--aze-section-py);
    background: var(--aze-surface);
}

.blog-area.full-blog .blog-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Category / listing grid — 2 cards per row */
.blog-area.full-blog .blog-content:has(.aze-cat-card) {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: stretch;
}

.blog-area.full-blog .blog-content:has(.aze-cat-card) > .aze-cat-card,
.blog-area.full-blog .blog-content:has(.aze-cat-card) > .item-box.aze-cat-card {
    float: none !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.blog-area.full-blog .blog-content:has(.aze-cat-card) > .bottom-navi,
.blog-area.full-blog .blog-content:has(.aze-cat-card) > .alert,
.blog-area.full-blog .blog-content:has(.aze-cat-card) > .message-info {
    grid-column: 1 / -1;
}

.aze-cat-card__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--aze-white);
    border: 1px solid var(--aze-border);
    border-radius: var(--aze-radius);
    box-shadow: var(--aze-shadow);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.aze-cat-card:hover .aze-cat-card__inner {
    transform: translateY(-3px);
    box-shadow: var(--aze-shadow-lg);
    border-color: rgba(29, 111, 220, 0.22);
}

.aze-cat-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--aze-surface);
    text-decoration: none;
}

.aze-cat-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.aze-cat-card:hover .aze-cat-card__media img {
    transform: scale(1.05);
}

.aze-cat-card__media--placeholder,
.aze-cat-card__media--doc {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--aze-navy) 0%, #1a2732 55%, rgba(29, 111, 220, 0.35) 100%);
}

.aze-cat-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 26px;
}

.aze-cat-card__date {
    position: absolute;
    left: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.aze-cat-card__date i {
    font-size: 10px;
    opacity: 0.85;
}

.aze-cat-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 18px 20px;
    min-height: 168px;
}

.aze-cat-card__category {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--aze-blue);
}

.aze-cat-card__category a {
    color: inherit;
    text-decoration: none;
}

.aze-cat-card__category a:hover {
    color: var(--aze-blue-dark);
}

.aze-cat-card__title {
    margin: 0 0 10px;
    font-family: var(--aze-font-display);
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.35;
}

.aze-cat-card__title a {
    color: var(--aze-navy);
    text-decoration: none;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aze-cat-card__title a:hover {
    color: var(--aze-blue);
}

.aze-cat-card__excerpt {
    margin: 0 0 14px;
    flex: 1;
    font-size: 13px;
    line-height: 1.65;
    color: var(--aze-text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aze-cat-card__excerpt p {
    margin: 0;
}

.aze-cat-card__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    font-family: var(--aze-font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--aze-blue);
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
}

.aze-cat-card__more:hover {
    color: var(--aze-blue-dark);
    gap: 12px;
}

.aze-cat-card--library .aze-cat-card__media--doc {
    aspect-ratio: 16 / 7;
}

.blog-area.full-blog .blog-content:has(.aze-cat-card) .bottom-navi {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
    padding-top: 12px;
}

@media (min-width: 768px) {
    .blog-area.full-blog .blog-content:has(.aze-cat-card) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .aze-cat-card__body {
        min-height: 0;
    }
}

.blog-area.full-blog .item-box.fulls.aze-article .item,
.blog-area.full-blog .item-box.fulls .item {
    background: var(--aze-white);
    border-radius: calc(var(--aze-radius) + 2px);
    border: 1px solid var(--aze-border);
    box-shadow: var(--aze-shadow);
    padding: clamp(20px, 4vw, 40px) clamp(18px, 3.5vw, 44px);
    margin-bottom: 24px;
}

.aze-article-header {
    margin-bottom: clamp(20px, 3vw, 32px);
}

.aze-article-header__card {
    position: relative;
    border-radius: calc(var(--aze-radius) + 4px);
    background: linear-gradient(145deg, #fff 0%, var(--aze-surface) 100%);
    border: 1px solid var(--aze-border);
    box-shadow: var(--aze-shadow);
    overflow: hidden;
}

.aze-article-header__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--aze-blue) 0%, #60a5fa 50%, var(--aze-gold) 100%);
}

.aze-article-header__body {
    padding: clamp(22px, 4vw, 36px) clamp(20px, 3.5vw, 32px);
}

.aze-article-header__category {
    margin-bottom: 14px;
    font-family: var(--aze-font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.aze-article-header__category a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--aze-blue-soft);
    border: 1px solid rgba(29, 111, 220, 0.18);
    color: var(--aze-blue) !important;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.aze-article-header__category a:hover {
    background: rgba(29, 111, 220, 0.14);
    border-color: rgba(29, 111, 220, 0.32);
    color: var(--aze-blue-dark) !important;
}

.aze-article-title,
.blog-area.full-blog .item-box.fulls .info h1,
.aze-article-header .aze-article-title,
.aze-article.item-box.fulls h1 {
    font-family: var(--aze-font-display) !important;
    font-size: clamp(1.625rem, 3.8vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.18;
    margin: 0 0 clamp(18px, 3vw, 24px);
    color: var(--aze-navy);
}

.aze-article-header__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.aze-article-header__fact {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--aze-radius);
    background: #fff;
    border: 1px solid var(--aze-border);
    min-width: 0;
}

.aze-article-header__fact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--aze-blue-soft);
    color: var(--aze-blue);
    font-size: 15px;
}

.aze-article-header__fact--views .aze-article-header__fact-icon {
    background: rgba(201, 162, 39, 0.12);
    color: var(--aze-gold);
}

.aze-article-header__fact-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.aze-article-header__fact-label {
    font-family: var(--aze-font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--aze-text-light);
}

.aze-article-header__fact-value {
    font-family: var(--aze-font-display);
    font-size: clamp(0.875rem, 1.4vw, 0.9375rem);
    font-weight: 700;
    line-height: 1.35;
    color: var(--aze-navy);
    word-break: break-word;
}

.aze-article-header__fact-value a {
    color: var(--aze-blue) !important;
    text-decoration: none;
}

.aze-article-header__fact-value a:hover {
    color: var(--aze-blue-dark) !important;
}

/* Legacy meta (sidebar / old markup) */
.aze-article-meta ul,
.blog-area.full-blog .item-box.fulls .meta ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.aze-article-meta li,
.blog-area.full-blog .item-box.fulls .meta li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--aze-text-muted);
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--aze-surface);
    border: 1px solid var(--aze-border);
}

.aze-article-meta li a,
.blog-area.full-blog .item-box.fulls .meta li a {
    color: var(--aze-blue);
    text-decoration: none;
}

.aze-article-meta li a:hover {
    color: var(--aze-blue-dark);
}

.aze-article-meta li i {
    color: var(--aze-blue);
    font-size: 11px;
}

.aze-article-hero {
    margin: 0 0 clamp(20px, 3vw, 28px);
    border-radius: var(--aze-radius);
    overflow: hidden;
    line-height: 0;
    background: var(--aze-surface);
    border: 1px solid var(--aze-border);
}

.aze-article-hero img {
    width: 100%;
    max-height: min(420px, 52vh);
    object-fit: cover;
    display: block;
}

/* — Article prose (full-story body) —
.aze-article-prose,
.blog-area.full-blog .full-story,
.blog-area.full-blog .text-justify.full-story {
    max-width: 68ch;
}
 */
.aze-article-prose > :first-child,
.blog-area.full-blog .full-story > :first-child {
    margin-top: 0;
}

.aze-article-prose > :last-child,
.blog-area.full-blog .full-story > :last-child {
    margin-bottom: 0;
}

.aze-article-prose p,
.aze-article .full-story p,
.full-story.aze-article-prose p,
.text-justify.full-story p,
.blog-area.full-blog .full-story p {
    margin: 0 0 1.25em !important;
    font-size: inherit !important;
    line-height: 1.9 !important;
    color: var(--aze-text) !important;
}

.aze-article-prose p:last-child,
.full-story p:last-child {
    margin-bottom: 0 !important;
}

.aze-article-prose h2,
.aze-article-prose h3,
.aze-article-prose h4,
.full-story h2,
.full-story h3,
.full-story h4 {
    font-family: var(--aze-font-display);
    color: var(--aze-navy);
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin: 1.75em 0 0.65em;
}

.aze-article-prose h2,
.full-story h2 { font-size: clamp(1.375rem, 2.6vw, 1.75rem); font-weight: 800; }

.aze-article-prose h3,
.full-story h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); font-weight: 700; }

.aze-article-prose h4,
.full-story h4 { font-size: clamp(1.125rem, 1.8vw, 1.3125rem); font-weight: 700; }

.aze-article-prose a,
.full-story a {
    color: var(--aze-blue);
    text-decoration: underline;
    text-decoration-color: rgba(29, 111, 220, 0.35);
    text-underline-offset: 3px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.aze-article-prose a:hover,
.full-story a:hover {
    color: var(--aze-blue-dark);
    text-decoration-color: currentColor;
}

.aze-article-prose strong,
.aze-article-prose b,
.full-story b,
.full-story strong {
    font-weight: 700;
    color: var(--aze-navy);
}

.aze-article-prose ul,
.aze-article-prose ol,
.full-story ul,
.full-story ol {
    margin: 0 0 1.15em;
    padding-left: 1.35em;
}

.aze-article-prose li,
.full-story li {
    margin-bottom: 0.5em;
    line-height: 1.85;
    font-size: inherit;
}

.aze-article-prose li:last-child,
.full-story li:last-child {
    margin-bottom: 0;
}

.aze-article-prose blockquote,
.full-story blockquote {
    margin: 1.5em 0;
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--aze-blue);
    border-radius: 0 var(--aze-radius-sm) var(--aze-radius-sm) 0;
    background: var(--aze-blue-soft);
    color: var(--aze-slate);
    font-style: normal;
}

.aze-article-prose blockquote p:last-child,
.full-story blockquote p:last-child {
    margin-bottom: 0 !important;
}

.aze-article-prose img,
.full-story img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: var(--aze-radius-sm);
    margin: 1.25em 0;
    display: block;
}

.aze-article-prose iframe,
.aze-article-prose video,
.aze-article-prose embed,
.full-story iframe,
.full-story video,
.full-story embed {
    max-width: 100%;
    border: none;
    border-radius: var(--aze-radius-sm);
}

.aze-article-prose table,
.full-story table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25em 0;
    font-size: 0.9375rem;
}

.aze-article-prose th,
.aze-article-prose td,
.full-story th,
.full-story td {
    padding: 10px 12px;
    border: 1px solid var(--aze-border);
    text-align: left;
}

.aze-article-prose th,
.full-story th {
    background: var(--aze-surface);
    font-weight: 700;
    color: var(--aze-navy);
}

.aze-article-prose .table-responsive,
.full-story .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1.25em 0;
}

.aze-article-prose hr,
.full-story hr {
    border: none;
    height: 1px;
    background: var(--aze-border);
    margin: 2em 0;
}

.aze-article-prose pre,
.aze-article-prose code,
.full-story pre,
.full-story code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.875em;
}

.aze-article-prose pre,
.full-story pre {
    overflow-x: auto;
    padding: 14px 16px;
    border-radius: var(--aze-radius-sm);
    background: var(--aze-surface);
    border: 1px solid var(--aze-border);
    margin: 1.25em 0;
}

.aze-article-footer {
    margin-top: clamp(24px, 4vw, 36px);
    padding-top: clamp(20px, 3vw, 28px);
    border-top: 1px solid var(--aze-border);
    background: transparent;
    color: var(--aze-text);
}

.aze-article-footer .aze-share-panel {
    background: linear-gradient(180deg, #fff 0%, var(--aze-surface) 100%);
    color: var(--aze-text);
}

.aze-article-like {
    margin-bottom: 20px;
}

/* — Article share panel (premium, light) — */
.aze-share-panel {
    position: relative;
    margin: 28px 0 8px;
    padding: clamp(20px, 3vw, 28px);
    border-radius: calc(var(--aze-radius) + 2px);
    background: linear-gradient(180deg, #fff 0%, var(--aze-surface) 100%);
    border: 1px solid var(--aze-border);
    box-shadow: var(--aze-shadow);
    overflow: hidden;
}

.aze-share-panel__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--aze-blue) 0%, #60a5fa 45%, var(--aze-gold) 100%);
}

.aze-share-panel__head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.aze-share-panel__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--aze-blue-soft);
    color: var(--aze-blue);
    font-size: 18px;
}

.aze-share-panel__title {
    margin: 0 0 4px;
    font-family: var(--aze-font-display);
    font-size: clamp(1.0625rem, 2vw, 1.1875rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--aze-navy);
}

.aze-share-panel__sub {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--aze-text-muted);
}

.aze-share-panel__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.aze-share-panel__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 88px;
    padding: 12px 8px;
    border-radius: var(--aze-radius);
    background: #fff;
    border: 1px solid var(--aze-border);
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.aze-share-panel__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
    border-color: rgba(29, 111, 220, 0.22);
}

.aze-share-panel__btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    font-size: 17px;
    color: #fff;
    transition: transform 0.22s ease;
}

.aze-share-panel__btn-icon svg,
.aze-share-panel__x-icon {
    display: block;
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

.aze-share-panel__btn-icon i {
    margin: 0 !important;
    font-size: inherit;
    line-height: 1;
    display: block;
    width: 1em;
    text-align: center;
}

.aze-share-panel__btn:hover .aze-share-panel__btn-icon {
    transform: scale(1.06);
}

.aze-share-panel__btn-label {
    font-family: var(--aze-font-display);
    font-size: 11px;
    font-weight: 600;
    color: var(--aze-text);
    text-align: center;
    line-height: 1.25;
}

.aze-share-panel__btn--wa .aze-share-panel__btn-icon { background: #25d366; }
.aze-share-panel__btn--fb .aze-share-panel__btn-icon { background: #1877f2; }
.aze-share-panel__btn--in .aze-share-panel__btn-icon { background: #0a66c2; }
.aze-share-panel__btn--x .aze-share-panel__btn-icon { background: #0f172a; }
.aze-share-panel__btn--tg .aze-share-panel__btn-icon { background: #229ed9; }
.aze-share-panel__btn--mail .aze-share-panel__btn-icon { background: #64748b; }

.aze-share-panel__btn--wa:hover { background: rgba(37, 211, 102, 0.06); border-color: rgba(37, 211, 102, 0.35); }
.aze-share-panel__btn--fb:hover { background: rgba(24, 119, 242, 0.06); border-color: rgba(24, 119, 242, 0.35); }
.aze-share-panel__btn--in:hover { background: rgba(10, 102, 194, 0.06); border-color: rgba(10, 102, 194, 0.35); }
.aze-share-panel__btn--x:hover { background: rgba(15, 23, 42, 0.05); border-color: rgba(15, 23, 42, 0.2); }
.aze-share-panel__btn--tg:hover { background: rgba(34, 158, 217, 0.06); border-color: rgba(34, 158, 217, 0.35); }
.aze-share-panel__btn--mail:hover { background: rgba(100, 116, 139, 0.06); border-color: rgba(100, 116, 139, 0.35); }

.aze-share-panel__copy-label {
    display: block;
    margin: 0 0 8px;
    font-family: var(--aze-font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--aze-text-muted);
}

.aze-share-panel__copy-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: stretch;
}

.aze-share-panel__url {
    flex: 1 1 180px;
    min-width: 0;
    height: 44px;
    padding: 0 14px;
    border-radius: var(--aze-radius-sm);
    border: 1px solid var(--aze-border);
    background: #fff;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 12px;
    color: var(--aze-text);
}

.aze-share-panel__copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    padding: 0 18px;
    border: none;
    border-radius: var(--aze-radius-sm);
    background: var(--aze-navy);
    color: #fff;
    font-family: var(--aze-font-display);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.aze-share-panel__copy-btn:hover {
    background: var(--aze-blue);
}

.aze-share-panel__copy-btn.is-copied {
    background: #059669;
}

.aze-share-panel__toast {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #059669;
}

.aze-share-panel__toast[hidden] {
    display: none;
}

@media (max-width: 991px) {
    .aze-share-panel__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .aze-share-panel__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .aze-share-panel__btn {
        min-height: 76px;
        padding: 10px 6px;
    }

    .aze-share-panel__btn-icon {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .aze-share-panel__copy-row {
        flex-direction: column;
    }

    .aze-share-panel__copy-btn {
        width: 100%;
    }
}

/* Legacy share hooks (sidebar / old markup) */
.aze-share-widget {
    margin: 24px 0 8px;
    padding: 18px 20px;
    border-radius: var(--aze-radius);
    background: linear-gradient(135deg, var(--aze-surface) 0%, var(--aze-white) 100%);
    border: 1px solid var(--aze-border);
}

.aze-share-widget__label {
    margin: 0 0 14px;
    font-family: var(--aze-font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--aze-navy);
    letter-spacing: 0.02em;
}

.aze-share-a2a {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    line-height: 1 !important;
}

.aze-share-a2a a {
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.aze-share-a2a .a2a_svg {
    border-radius: 10px !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.aze-share-a2a a:hover .a2a_svg {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.15);
}

.aze-article-tags,
.blog-area.full-blog .post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 0;
    border-top: none;
    font-size: 13px;
}

.aze-article-tags__label {
    font-family: var(--aze-font-display);
    font-weight: 700;
    color: var(--aze-navy);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 11px;
}

.aze-article-tags a,
.blog-area.full-blog .post-tags a {
    display: inline-flex;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--aze-surface);
    border: 1px solid var(--aze-border);
    color: var(--aze-text) !important;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.aze-article-tags a:hover,
.blog-area.full-blog .post-tags a:hover {
    background: var(--aze-blue-soft);
    border-color: rgba(29, 111, 220, 0.25);
    color: var(--aze-blue) !important;
}

.aze-article-comments {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--aze-border);
}

.aze-article-comments .fb-comments,
.aze-article-comments .fb-comments > span,
.aze-article-comments iframe {
    max-width: 100% !important;
    width: 100% !important;
}

/* Share bar */
.aze-share-bar.social-detail {
    padding: 0;
    margin: 0 0 4px;
    box-shadow: none;
    background: transparent;
}

.aze-share-bar .ShareButtons {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.aze-share-bar .ShareButtons li {
    flex: 0 0 auto;
    width: auto;
    height: auto;
    margin: 0;
}

.aze-share-bar .ShareButtons li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.aze-share-bar .ShareButtons li a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.15);
}

.aze-share-bar .ShareButtons svg {
    width: 18px;
    height: 18px;
    margin: 0;
}

.aze-share-bar .ShareButtons li.fb-btn a { background: #1877f2; }
.aze-share-bar .ShareButtons li.tw-btn a { background: #1da1f2; }
.aze-share-bar .ShareButtons li.pin-btn a { background: #e60023; }
.aze-share-bar .ShareButtons li.ws-btn a { background: #25d366; }
.aze-share-bar .ShareButtons li.mail-btn a { background: #64748b; }

.blog-area.full-blog .item-box .thumb {
    overflow: hidden;
    max-height: 280px;
    border-radius: var(--aze-radius-sm);
    margin-bottom: 16px;
}

.blog-area.full-blog .item-box .thumb img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.blog-area.full-blog .item-box .info h4 a {
    font-family: var(--aze-font-display);
    font-weight: 700;
    color: var(--aze-navy);
    font-size: 1.25rem;
}

.aze-excerpt {
    color: var(--aze-text-muted);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.blog-area.full-blog .sidebar-item {
    background: var(--aze-white);
    border-radius: var(--aze-radius);
    border: 1px solid var(--aze-border);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--aze-shadow);
}

.blog-area.full-blog .sidebar-item h4 {
    font-family: var(--aze-font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--aze-navy);
    margin-bottom: 16px;
}

.blog-area.full-blog .sidebar-item.search input[type="text"] {
    border-radius: var(--aze-radius-sm);
    border-color: var(--aze-border);
    padding: 10px 14px;
}

.blog-area.full-blog .sidebar-item.search input[type="submit"] {
    border-radius: var(--aze-radius-sm);
    background: var(--aze-blue);
    margin-top: 10px;
}

.blog-area.full-blog .sidebar-item.recent-post li {
    padding: 12px 0;
    border-bottom: 1px solid var(--aze-border);
}

.blog-area.full-blog .sidebar-item.recent-post li:last-child {
    border-bottom: none;
}

.blog-area.full-blog .sidebar-item.recent-post .info a {
    font-weight: 600;
    color: var(--aze-navy);
    font-size: 14px;
}

/* — Modern blog sidebar — */
.aze-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-area.full-blog .sidebar.aze-sidebar-wrap {
    position: sticky;
    top: 92px;
    align-self: flex-start;
    max-height: calc(100vh - 108px);
    overflow-y: auto;
    scrollbar-width: thin;
}

.aze-sidebar-card {
    background: var(--aze-white);
    border-radius: var(--aze-radius);
    border: 1px solid var(--aze-border);
    box-shadow: var(--aze-shadow);
    overflow: hidden;
}

.aze-sidebar-card__head {
    padding: 16px 18px 12px;
    border-bottom: 1px solid var(--aze-border);
    background: linear-gradient(180deg, #fff 0%, var(--aze-surface) 100%);
}

.aze-sidebar-card__title {
    margin: 0;
    font-family: var(--aze-font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--aze-navy);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.01em;
}

.aze-sidebar-card__title i {
    color: var(--aze-blue);
    font-size: 13px;
}

.aze-sidebar-card__body {
    padding: 12px 14px 14px;
}

.aze-sidebar-card--search .aze-sidebar-card__body {
    padding: 14px;
}

.aze-sidebar-posts {
    list-style: none;
    margin: 0;
    padding: 0;
}

.aze-sidebar-post {
    margin: 0;
    border-bottom: 1px solid var(--aze-border);
}

.aze-sidebar-post:last-child {
    border-bottom: none;
}

.aze-sidebar-post__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 6px;
    text-decoration: none;
    border-radius: var(--aze-radius-sm);
    transition: background 0.2s ease, transform 0.2s ease;
}

.aze-sidebar-post__link:hover {
    background: var(--aze-blue-soft);
    transform: translateX(2px);
}

.aze-sidebar-post__thumb {
    flex-shrink: 0;
    width: 72px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--aze-surface);
    border: 1px solid var(--aze-border);
}

.aze-sidebar-post__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.aze-sidebar-post__body {
    flex: 1;
    min-width: 0;
}

.aze-sidebar-post__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--aze-navy);
}

.aze-sidebar-post__link:hover .aze-sidebar-post__title {
    color: var(--aze-blue);
}

.aze-sidebar-post__meta {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
    font-size: 11px;
    color: var(--aze-text-muted);
}

.aze-sidebar-post__meta i {
    font-size: 10px;
    color: var(--aze-blue);
}

.aze-sidebar-card--vote:empty {
    display: none;
}

.aze-sidebar-card--vote .rating,
.aze-sidebar-card--vote form {
    margin: 0;
}

.aze-sidebar-card--vote {
    padding: 16px 18px;
}

/* Override legacy sidebar floats */
.blog-area.full-blog .aze-sidebar .sidebar-item.recent-post li .thumb,
.blog-area.full-blog .aze-sidebar-post__thumb {
    float: none;
    width: 72px;
    height: 56px;
}

.blog-area.full-blog .aze-sidebar .sidebar-item.recent-post li .info,
.blog-area.full-blog .aze-sidebar-post__body {
    float: none;
    width: auto;
    overflow: visible;
}

@media (max-width: 991px) {
    .blog-area.full-blog .sidebar.aze-sidebar-wrap {
        position: static;
        max-height: none;
        overflow: visible;
        margin-top: 28px;
    }
}

/* ═══════════════════════════════════════
   11. CONTACT PAGE
   ═══════════════════════════════════════ */
.contact-form-area {
    max-width: 640px;
}

.contact-form-area .info-block strong {
    font-family: var(--aze-font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--aze-navy);
    display: block;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.contact-form-area .elaqe {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
}

.contact-form-area .elaqe a {
    color: var(--aze-text);
    font-weight: 500;
}

.contact-form-area .elaqe a:hover { color: var(--aze-blue); }

.contact-form-area .elaqe i {
    color: var(--aze-blue);
    width: 20px;
    text-align: center;
}

.contact-form-area .form-control {
    font-family: var(--aze-font-body);
    font-size: 15px;
    border-radius: var(--aze-radius-sm);
    border: 1px solid var(--aze-border);
    padding: 12px 16px;
    margin-bottom: 4px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form-area .form-control:focus {
    border-color: var(--aze-blue);
    box-shadow: 0 0 0 3px var(--aze-blue-soft);
    outline: none;
}

.contact-form-area textarea.form-control {
    min-height: 160px;
    resize: vertical;
}

.contact-form-area button[type="submit"],
.contact-form-area #submit {
    font-family: var(--aze-font-display);
    font-weight: 600;
    font-size: 14px;
    background: var(--aze-blue);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 12px 32px;
    cursor: pointer;
    transition: background 0.2s;
    text-transform: none;
    letter-spacing: 0.02em;
}

.contact-form-area button:hover,
.contact-form-area #submit:hover {
    background: var(--aze-blue-dark);
}

/* ═══════════════════════════════════════
   12. ABOUT PAGE → css/about-page.css
   ═══════════════════════════════════════ */

.about-area h2,
.business-groth-area h2 {
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 800;
}

.about-area.services-include .equal-height a {
    border-radius: var(--aze-radius);
    transition: transform 0.25s, box-shadow 0.25s;
}

.about-area.services-include .equal-height a:hover {
    transform: translateY(-4px);
    box-shadow: var(--aze-shadow-lg);
}

.timeline--horizontal .timeline-item { min-width: 220px; }

.timeline-content h4 {
    font-family: var(--aze-font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--aze-blue);
}

.timeline-content h5 {
    font-size: 1.05rem;
    font-weight: 600;
}


/* Team member detail page */
.aze-team-profile-area {
    padding-top: clamp(32px, 5vw, 56px);
    padding-bottom: clamp(48px, 7vw, 80px);
    background: linear-gradient(180deg, var(--aze-surface) 0%, var(--aze-white) 28%);
}

.aze-team-profile-area .container {
    max-width: 1140px;
}

.aze-team-detail-page {
    margin: 0;
}

.aze-team-detail__shell {
    display: flex;
    flex-direction: column;
    gap: clamp(28px, 4vw, 40px);
}

.aze-team-detail__breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0 0 4px;
    padding: 0;
    font-size: 13px;
}

.aze-team-detail__breadcrumb li {
    display: inline-flex;
    align-items: center;
    color: var(--aze-text-muted);
}

.aze-team-detail__breadcrumb li + li::before {
    content: '/';
    margin-right: 8px;
    color: var(--aze-border);
    font-weight: 400;
}

.aze-team-detail__breadcrumb a {
    color: var(--aze-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.aze-team-detail__breadcrumb a:hover {
    color: var(--aze-blue-dark);
}

.aze-team-detail__breadcrumb li[aria-current="page"] span {
    color: var(--aze-navy);
    font-weight: 600;
}

.aze-team-detail__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
}

.aze-team-detail__hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: clamp(20px, 3vw, 28px);
    border-radius: calc(var(--aze-radius) + 4px);
    background: var(--aze-white);
    border: 1px solid var(--aze-border);
    box-shadow: var(--aze-shadow-lg);
    overflow: hidden;
}

.aze-team-detail__photo-frame {
    margin: 0;
    position: relative;
    border-radius: var(--aze-radius);
    overflow: hidden;
    aspect-ratio: 4 / 4.8;
    max-height: 440px;
    background: var(--aze-surface);
}

.aze-team-detail__photo-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.aze-team-detail__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.aze-team-detail__intro {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aze-team-detail__eyebrow {
    margin: 0 0 10px;
    font-family: var(--aze-font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--aze-blue);
}

.aze-team-detail__name {
    margin: 0 0 10px;
    font-family: var(--aze-font-display);
    font-size: clamp(1.875rem, 4vw, 2.625rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: var(--aze-navy);
}

.aze-team-detail__role {
    margin: 0 0 16px;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    font-weight: 600;
    color: var(--aze-text-muted);
    line-height: 1.45;
}

.aze-team-detail__summary {
    margin: 0 0 22px;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--aze-text);
}

.aze-team-detail__summary p {
    margin: 0 0 0.75em;
}

.aze-team-detail__summary p:last-child {
    margin-bottom: 0;
}

.aze-team-detail__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.aze-team-detail__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    font-family: var(--aze-font-display);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.aze-team-detail__btn--primary {
    background: var(--aze-blue);
    color: #fff;
    border: 1px solid var(--aze-blue);
    box-shadow: 0 8px 22px rgba(29, 111, 220, 0.28);
}

.aze-team-detail__btn--primary:hover {
    background: var(--aze-blue-dark);
    border-color: var(--aze-blue-dark);
    color: #fff;
    transform: translateY(-1px);
}

.aze-team-detail__btn--ghost {
    background: var(--aze-white);
    color: var(--aze-navy);
    border: 1px solid var(--aze-border);
}

.aze-team-detail__btn--ghost:hover {
    background: var(--aze-blue-soft);
    border-color: rgba(29, 111, 220, 0.25);
    color: var(--aze-blue);
}

.aze-team-detail__bio {
    padding: clamp(22px, 3vw, 32px);
    border-radius: var(--aze-radius);
    background: var(--aze-white);
    border: 1px solid var(--aze-border);
    box-shadow: var(--aze-shadow);
}

.aze-team-detail__bio-head {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--aze-border);
}

.aze-team-detail__section-title {
    margin: 0 0 6px;
    font-family: var(--aze-font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--aze-navy);
}

.aze-team-detail__section-sub {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--aze-text-muted);
}

.aze-team-detail__content {
    font-size: 1.03125rem;
    line-height: 1.8;
}

.aze-team-detail__share {
    margin-top: 4px;
}

.aze-team-detail__aside {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.aze-team-detail__aside-card {
    padding: 20px;
    border-radius: var(--aze-radius);
    background: var(--aze-white);
    border: 1px solid var(--aze-border);
    box-shadow: var(--aze-shadow);
}

.aze-team-detail__contact-card {
    background: linear-gradient(145deg, var(--aze-navy) 0%, #1a2732 100%);
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
}

.aze-team-detail__contact-card p {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
}

.aze-team-detail__aside-title {
    margin: 0 0 14px;
    font-family: var(--aze-font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--aze-navy);
    display: flex;
    align-items: center;
    gap: 8px;
}

.aze-team-detail__contact-card .aze-team-detail__aside-title {
    color: #fff;
}

.aze-team-detail__aside-title i {
    color: var(--aze-blue);
    font-size: 13px;
}

.aze-team-detail__contact-card .aze-team-detail__aside-title i {
    color: #93c5fd;
}

.aze-team-detail__contact-list {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.aze-team-detail__contact-list a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.aze-team-detail__contact-list a:hover {
    color: #93c5fd;
}

.aze-team-detail__aside-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--aze-blue);
    color: #fff !important;
    font-family: var(--aze-font-display);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.aze-team-detail__aside-cta:hover {
    background: var(--aze-blue-dark);
    transform: translateY(-1px);
}

.aze-team-detail__aside-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--aze-blue);
    text-decoration: none;
}

.aze-team-detail__aside-link:hover {
    color: var(--aze-blue-dark);
}

.aze-team-mini-list,
.aze-team-mini-grid {
    list-style: none;
    margin: 0;
    padding: 0;
}

.aze-team-mini-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.aze-team-mini-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.aze-team-mini__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--aze-radius-sm);
    background: var(--aze-surface);
    border: 1px solid transparent;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.aze-team-mini__link:hover {
    background: var(--aze-blue-soft);
    border-color: rgba(29, 111, 220, 0.18);
    transform: translateX(2px);
}

.aze-team-mini-grid .aze-team-mini__link {
    background: var(--aze-white);
    border-color: var(--aze-border);
    box-shadow: var(--aze-shadow);
}

.aze-team-mini__photo {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--aze-white);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
}

.aze-team-mini__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.aze-team-mini__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.aze-team-mini__name {
    font-family: var(--aze-font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--aze-navy);
    line-height: 1.3;
}

.aze-team-mini__role {
    font-size: 11px;
    color: var(--aze-text-muted);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aze-team-mini__arrow {
    flex-shrink: 0;
    font-size: 11px;
    color: var(--aze-text-muted);
    opacity: 0.5;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.aze-team-mini__link:hover .aze-team-mini__arrow {
    opacity: 1;
    color: var(--aze-blue);
    transform: translateX(2px);
}

.aze-team-detail__more {
    padding-top: 8px;
}

.aze-team-detail__more-head {
    margin-bottom: 18px;
}

@media (min-width: 768px) {
    .aze-team-detail__hero {
        grid-template-columns: minmax(240px, 320px) 1fr;
        gap: clamp(24px, 4vw, 36px);
        align-items: center;
    }

    .aze-team-detail__photo-frame {
        max-height: none;
        aspect-ratio: 4 / 5;
    }

    .aze-team-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .aze-team-detail__layout {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 32px;
    }

    .aze-team-detail__aside {
        position: sticky;
        top: 96px;
    }

    .aze-team-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .aze-team-detail__actions {
        flex-direction: column;
    }

    .aze-team-detail__btn {
        width: 100%;
    }

    .aze-team-detail__breadcrumb ol {
        font-size: 12px;
    }
}

.team-photo-link {
    display: inline-block;
    transition: transform 0.2s, opacity 0.2s;
}

.team-photo-link:hover {
    transform: scale(1.03);
    opacity: 0.92;
}

/* Service listing page */
.services-area.default-padding-bottom {
    padding-top: var(--aze-section-py);
    padding-bottom: var(--aze-section-py);
    background: var(--aze-surface);
}

.services-area .service-item {
    margin-bottom: 24px;
}

.services-area .service-item .info-box {
    border-radius: var(--aze-radius);
    overflow: hidden;
    box-shadow: var(--aze-shadow);
}

/* ═══════════════════════════════════════
   13. BUTTONS (global)
   ═══════════════════════════════════════ */
.btn-theme,
.btn-blue {
    font-family: var(--aze-font-display);
    font-weight: 600;
    border-radius: 999px;
    letter-spacing: 0.02em;
}

.btn-theme {
    background: var(--aze-blue);
    border-color: var(--aze-blue);
}

.btn-theme:hover {
    background: var(--aze-blue-dark);
    border-color: var(--aze-blue-dark);
}

/* ═══════════════════════════════════════
   14. UTILITIES
   ═══════════════════════════════════════ */
.gizle { display: none; }

.about-area h2,
.about-area p { color: var(--aze-navy); }

.bg-gray {
    background: var(--aze-surface) !important;
}

/* ═══════════════════════════════════════
   15. RESPONSIVE
   ═══════════════════════════════════════ */
@media (min-width: 576px) {
    .aze-svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .aze-svc-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .aze-news .aze-news-grid,
    .aze-news .blog-itemss {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 992px) {
    .aze-news .aze-news-grid,
    .aze-news .blog-itemss {
        grid-template-columns: repeat(3, 1fr);
    }

    .aze-news .aze-news-card__body {
        min-height: 152px;
    }

    .aze-svc-card {
        min-height: 340px;
    }

    .aze-svc-card__link {
        min-height: 340px;
    }

    .top-bar-area .row {
        display: flex;
        align-items: center;
    }

    .top-bar-area .col-md-10 { flex: 1; }

    .top-bar-area .col-md-2 {
        flex: 0 0 auto;
        width: auto;
        max-width: 120px;
    }

    .menu-list { flex-wrap: nowrap; }
}

@media (max-width: 991px) {
    :root { --aze-section-py: 56px; }

    .top-bar-area.bg-theme { margin-top: 0; }

    ul.haqqinda { display: none; }

    nav.ustmenu { justify-content: center; }

    .blog-area.full-blog .item-box.fulls .item {
        padding: 24px 20px;
    }

    .blog-area.full-blog .item-box.fulls.aze-article .item {
        padding: 18px 16px;
    }

    .aze-article-prose,
    .text-justify.full-story,
    .full-story,
    .blog-area.full-blog .full-story {
        font-size: 1.0625rem !important;
        line-height: 1.88 !important;
        text-align: left !important;
    }

    .aze-article-title,
    .blog-area.full-blog .item-box.fulls .info h1,
    .aze-article-header .aze-article-title {
        font-size: clamp(1.375rem, 5vw, 1.75rem);
        max-width: none;
    }

    .aze-article-header__facts {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .aze-article-header__fact {
        padding: 12px 14px;
    }

    .aze-article-header__fact-icon {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .aze-article-hero img {
        max-height: 240px;
    }

    .aze-article-meta li {
        font-size: 11px;
        padding: 5px 10px;
    }

    .aze-share-bar .ShareButtons li a {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 767px) {
    .aze-tst-section {
        padding: 40px 0 36px;
    }

    .aze-tst-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 16px;
    }

    .aze-tst-controls {
        width: 100%;
        justify-content: space-between;
    }

    .aze-tst-inner {
        min-height: 132px;
        padding: 12px 14px 14px;
    }

    .aze-tst-avatars {
        margin-top: 14px;
        padding-top: 12px;
    }

    .aze-news .aze-news-grid,
    .aze-news .blog-itemss {
        gap: 14px;
    }

    .aze-news .aze-news-card__body {
        min-height: 136px;
        padding: 14px 16px 16px;
    }

    .aze-map-wrap iframe { height: 280px; }

    footer .f-items .item {
        padding-right: 15px;
        margin-bottom: 24px;
    }
}

/* ═══════════════════════════════════════
   16. v2.8 — Header search, nav drawer,
      slider fix, map, share, testimonials
   ═══════════════════════════════════════ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* — Header search — */
.aze-header-search {
    display: flex;
    align-items: center;
    flex: 1 1 200px;
    max-width: 280px;
    min-width: 0;
    height: 34px;
    margin: 0 8px;
    border-radius: 999px;
    border: 1px solid var(--aze-border);
    background: var(--aze-surface);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.aze-header-search:focus-within {
    border-color: rgba(29, 111, 220, 0.4);
    background: var(--aze-white);
    box-shadow: 0 0 0 3px rgba(29, 111, 220, 0.12);
}

.aze-header-search__input {
    flex: 1;
    min-width: 0;
    height: 100%;
    border: none;
    background: transparent;
    padding: 0 12px;
    font-family: var(--aze-font-body);
    font-size: 12.5px;
    line-height: 1.3;
    color: var(--aze-text);
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}

.aze-header-search__input::placeholder {
    color: var(--aze-text-light);
    font-size: 12.5px;
}

.aze-header-search__btn {
    flex-shrink: 0;
    border: none;
    background: var(--aze-blue);
    color: #fff;
    width: 28px;
    height: 28px;
    margin: 2px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.aze-header-search__btn:hover {
    background: var(--aze-blue-dark);
    transform: scale(1.04);
}

/* — Nav toggle — */
.aze-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--aze-border);
    border-radius: 10px;
    background: var(--aze-surface);
    color: var(--aze-navy);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.aze-nav-toggle:hover {
    background: var(--aze-blue-soft);
    border-color: rgba(29, 111, 220, 0.25);
}

.aze-nav-toggle i {
    font-size: 18px;
}

/* — Nav overflow fix (dropdowns) — */
.aze-site-header {
    position: sticky;
}

.aze-header-nav.top-bar-area,
.aze-header-nav__inner,
.aze-header-nav .main-navigation {
    overflow: visible;
}

.aze-header-nav .menu-list {
    overflow: visible;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* — Slider: override legacy styles.css heights — */
.aze-hero.banner-area {
    margin-top: 0 !important;
}

.banner-area.aze-hero .item.aze-slide > .slider-thumb,
.banner-area.aze-hero .slider-thumb.aze-slide-bg {
    height: 100% !important;
    min-height: 100% !important;
}

.banner-area.aze-hero .aze-slide-panel,
.banner-area.aze-hero .aze-slide-panel .container,
.banner-area.aze-hero .aze-slide-content,
.banner-area.aze-hero .aze-slide-actions {
    height: auto !important;
}

.aze-hero .carousel-fade .carousel-inner .item {
    transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.aze-hero .carousel-fade .carousel-inner .active.left,
.aze-hero .carousel-fade .carousel-inner .active.right {
    opacity: 0;
}

.aze-hero .carousel-fade .carousel-inner .next,
.aze-hero .carousel-fade .carousel-inner .prev {
    opacity: 0;
}

.aze-hero .carousel-fade .carousel-inner .active,
.aze-hero .carousel-fade .carousel-inner .next.left,
.aze-hero .carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}

/* — Testimonials avatar fix — */
.aze-tst-avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.aze-tst-avatar .aze-tst-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.aze-tst-inner img:not(.aze-tst-photo) {
    display: none !important;
    width: auto !important;
    max-width: none !important;
}

/* — Map section — */
.aze-map-section {
    padding: clamp(40px, 6vw, 64px) 0;
}

.aze-map-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 28px;
}

.aze-map-title {
    font-family: var(--aze-font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--aze-navy);
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.aze-map-sub {
    margin: 0;
    color: var(--aze-text-muted);
    font-size: 0.9375rem;
}

.aze-map-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: stretch;
}

.aze-map-cards {
    display: grid;
    gap: 12px;
}

.aze-map-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: var(--aze-radius);
    background: var(--aze-white);
    border: 1px solid var(--aze-border);
    box-shadow: var(--aze-shadow);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.aze-map-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--aze-shadow-lg);
    border-color: rgba(29, 111, 220, 0.25);
}

.aze-map-card__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--aze-blue-soft) 0%, rgba(29, 111, 220, 0.15) 100%);
    color: var(--aze-blue);
    font-size: 18px;
}

.aze-map-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.aze-map-card__body strong {
    font-family: var(--aze-font-display);
    font-size: 15px;
    color: var(--aze-navy);
}

.aze-map-card__body span {
    font-size: 13px;
    color: var(--aze-text-muted);
    line-height: 1.45;
}

.aze-map-card__go {
    flex-shrink: 0;
    color: var(--aze-text-muted);
    font-size: 12px;
    opacity: 0.5;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.aze-map-card:hover .aze-map-card__go {
    opacity: 1;
    color: var(--aze-blue);
}

.aze-map-frame {
    position: relative;
    border-radius: var(--aze-radius);
    overflow: hidden;
    border: 1px solid var(--aze-border);
    box-shadow: var(--aze-shadow-lg);
    min-height: 280px;
    background: var(--aze-surface);
}

.aze-map-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    border-radius: inherit;
}

.aze-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
    filter: saturate(1.05) contrast(1.03);
}

.aze-map-frame--locked iframe {
    pointer-events: none;
}

.aze-map-frame--locked::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    cursor: pointer;
    background: transparent;
}

/* — Sidebar search (article pages) — */
.aze-sidebar-search__form {
    display: flex;
    align-items: stretch;
    gap: 8px;
    position: static !important;
}

.aze-sidebar-search__input {
    flex: 1;
    min-width: 0;
    height: 44px;
    border-radius: var(--aze-radius-sm) !important;
    border: 1px solid var(--aze-border) !important;
    padding: 10px 14px !important;
}

.aze-sidebar-search__btn {
    flex-shrink: 0;
    height: 44px;
    padding: 0 18px;
    border: none;
    border-radius: var(--aze-radius-sm);
    background: var(--aze-blue);
    color: #fff;
    font-family: var(--aze-font-display);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    position: static !important;
    transition: background 0.2s ease;
}

.aze-sidebar-search__btn:hover {
    background: var(--aze-blue-dark);
}

.blog-area.full-blog .sidebar-item.search .sidebar-info {
    overflow: visible;
}

/* — Responsive header — */
@media (min-width: 992px) {
    .aze-header-nav .menu-list {
        flex-wrap: nowrap;
    }
}

@media (max-width: 991px) {
    .aze-nav-toggle {
        display: inline-flex;
    }

    .aze-header-bar__inner {
        flex-wrap: wrap;
        gap: 10px;
    }

    .aze-header-search {
        order: 3;
        flex: 1 1 100%;
        max-width: none;
        height: 36px;
        margin: 0;
    }

    .aze-header-search__btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .aze-header-nav.top-bar-area {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1095;
        max-height: calc(100dvh - 56px);
        overflow-y: auto;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    }

    .aze-header-nav.top-bar-area.is-open {
        display: block;
    }

    .aze-header-nav .menu-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0 12px;
    }

    .aze-header-nav .menu-item {
        width: 100%;
    }

    .aze-header-nav .menu-link {
        width: 100%;
        justify-content: space-between;
        padding: 12px 16px !important;
        border-radius: 0;
    }

    .aze-header-nav .has-submenu:hover .submenu {
        display: none;
    }

    .aze-header-nav .has-submenu.is-open .submenu {
        display: block;
        position: static;
        min-width: 0;
        margin: 0;
        padding: 4px 0 8px 12px;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.18);
    }

    .aze-header-nav .menu-item--cta {
        margin: 8px 12px 0;
    }

    .aze-header-nav .menu-item--cta .menu-link {
        justify-content: center;
        border-radius: 999px;
    }
}

@media (min-width: 768px) {
    .aze-map-grid {
        grid-template-columns: minmax(260px, 340px) 1fr;
        gap: 24px;
    }

    .aze-map-frame {
        min-height: 360px;
    }

    .aze-map-frame iframe {
        min-height: 360px;
    }
}

@media (min-width: 992px) {
    .aze-map-grid {
        grid-template-columns: minmax(300px, 380px) 1fr;
    }

    .aze-map-frame iframe {
        min-height: 400px;
    }
}

@media (max-width: 575px) {
    .aze-header-logo img {
        height: 30px;
        max-width: 130px;
    }

    .aze-hero.banner-area .item h1 {
        font-size: clamp(1.625rem, 7vw, 2rem) !important;
    }
}

/* ═══════════════════════════════════════
   17. CONTACT PAGE (feedback)
   ═══════════════════════════════════════ */
.aze-contact-page {
    padding: clamp(40px, 6vw, 72px) 0 clamp(48px, 7vw, 80px);
    background: linear-gradient(180deg, var(--aze-surface) 0%, var(--aze-white) 42%);
    overflow: visible;
}

.aze-contact-page .container {
    overflow: visible;
}

.aze-contact-page .alert,
.aze-contact-page .message-info,
.aze-contact-page .message-error {
    margin-bottom: 24px;
    border-radius: var(--aze-radius-sm);
}

.aze-contact {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.aze-contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}

.aze-contact__info {
    padding: clamp(20px, 3vw, 28px);
    border-radius: var(--aze-radius);
    background: linear-gradient(145deg, var(--aze-navy) 0%, #1a2732 100%);
    color: #fff;
    box-shadow: var(--aze-shadow-lg);
}

.aze-contact__title {
    margin: 0 0 10px;
    font-family: var(--aze-font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
}

.aze-contact__lead {
    margin: 0 0 22px;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
}

.aze-contact__channels {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.aze-contact__channel {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.aze-contact__channel-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #93c5fd;
}

.aze-contact__channel-icon svg,
.aze-contact-icon {
    display: block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.aze-contact__channel-icon i {
    margin: 0 !important;
    font-size: 18px !important;
    line-height: 1;
    width: 18px;
    text-align: center;
}

.aze-contact__channel strong {
    display: block;
    font-family: var(--aze-font-display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 3px;
}

.aze-contact__channel a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    text-decoration: none;
    transition: color 0.2s ease;
}

.aze-contact__channel a:hover {
    color: #93c5fd;
}

.aze-contact__form-card {
    max-width: none;
    padding: clamp(22px, 3vw, 32px);
    border-radius: var(--aze-radius);
    background: var(--aze-white);
    border: 1px solid var(--aze-border);
    box-shadow: var(--aze-shadow);
    scroll-margin-top: 100px;
}

.aze-contact__form-title {
    margin: 0 0 20px;
    font-family: var(--aze-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--aze-navy);
}

.aze-contact-page .contact-form-area .contact-form .content,
.aze-contact-page .contact-form .content {
    overflow: visible !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.aze-contact-page .contact-form-area .form-control,
.aze-contact-page .contact-form input,
.aze-contact-page .contact-form textarea {
    width: 100%;
    border: 1px solid var(--aze-border) !important;
    border-style: solid !important;
    background: var(--aze-white) !important;
    box-shadow: none !important;
    border-radius: var(--aze-radius-sm);
    padding: 12px 16px;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.5;
}

.aze-contact-page .contact-form textarea {
    min-height: 160px;
    line-height: 1.6 !important;
    resize: vertical;
}

.aze-contact-page .form-group {
    margin-bottom: 14px;
    overflow: visible;
}

.aze-contact__captcha {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.aze-contact__captcha-code {
    flex-shrink: 0;
}

.aze-contact__captcha .form-control {
    flex: 1 1 160px;
    max-width: none !important;
    float: none !important;
}

.aze-contact__submit,
.aze-contact-page .contact-form-area button[type="submit"],
.aze-contact-page .contact-form-area #submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 6px;
    padding: 13px 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    background: var(--aze-blue);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.aze-contact-icon--btn {
    width: 16px;
    height: 16px;
}

.aze-contact__submit:hover,
.aze-contact-page .contact-form-area #submit:hover {
    background: var(--aze-blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(29, 111, 220, 0.3);
}

.aze-contact__map .aze-map-frame {
    min-height: 320px;
    border-radius: var(--aze-radius);
}

.aze-contact__map .aze-map-frame iframe {
    min-height: 320px;
}

@media (min-width: 768px) {
    .aze-contact__grid {
        grid-template-columns: minmax(280px, 360px) 1fr;
        gap: 28px;
    }

    .aze-contact__submit,
    .aze-contact-page .contact-form-area #submit {
        width: auto;
        min-width: 200px;
    }

    .aze-contact__map .aze-map-frame,
    .aze-contact__map .aze-map-frame iframe {
        min-height: 380px;
    }
}

@media (min-width: 992px) {
    .aze-contact__map .aze-map-frame,
    .aze-contact__map .aze-map-frame iframe {
        min-height: 420px;
    }
}
