:root {
    --primary-color: #0a1f44;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --bg-light: #f8fafc;
    --text-main: #0a1f44;
    --text-muted: #64748b;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.6;
}

header {
    background: var(--glass);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header .logo {
    max-width: 100%;
    overflow: hidden;
}

header .logo a {
    display: flex;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
}

header .logo img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 72px;
    object-fit: contain;
}

.menuduzenle ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.menuduzenle ul li a {
    text-decoration: none;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.3s;
}

.menuduzenle ul li a:hover {
    color: var(--primary-color);
}

.header-actions {
    flex-shrink: 0;
}

/* UA varsayılanı form { margin-block-end: 1em } header’daki ikonları dikeyde kaydırır */
.header-actions form {
    margin: 0;
    margin-block-start: 0;
    margin-block-end: 0;
}

.header-action-btn {
    height: 44px;
    border-radius: 12px;
    border: 1px solid #d9dee8;
    background: #ffffff;
    color: var(--text-main);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    padding: 0 12px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.header-action-btn:hover {
    color: var(--text-main);
}

.header-action-icon {
    font-size: 1.05rem;
    color: #111827;
    line-height: 1;
}

.header-search-btn {
    width: 44px;
    padding: 0;
    border-radius: 50%;
}

.header-location-btn.is-granted {
    border-color: #16a34a;
    background: #ecfdf3;
}

.header-location-btn.is-granted .header-action-icon {
    color: #16a34a;
}

.header-location-btn.is-denied {
    border-color: #ef4444;
    background: #fff1f2;
}

.header-location-btn.is-denied .header-action-icon {
    color: #ef4444;
}

.header-login-btn {
    justify-content: center;
}

.header-cta-btn {
    justify-content: center;
    border-color: #02943d;
    background: #02943d;
    color: #ffffff;
}

.header-cta-btn .header-action-icon {
    color: #ffffff;
}

.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cms-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cms-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.btn-modern {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-modern:hover {
    background: var(--secondary-color);
}

/* Advanced Corporate Layout Utilities */
.section-padding {
    padding: 120px 0;
}

.bg-slate {
    background-color: #f1f5f9;
}

.bg-dark-slate {
    background-color: #0f172a;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: #eff6ff;
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    color: white;
}

.image-stack {
    position: relative;
    height: 450px;
}

.image-stack-item {
    position: absolute;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 5px solid white;
}

.image-stack-item-1 {
    width: 80%;
    height: 80%;
    top: 0;
    left: 0;
    z-index: 2;
    object-fit: cover;
}

.image-stack-item-2 {
    width: 60%;
    height: 60%;
    bottom: 0;
    right: 0;
    z-index: 1;
    object-fit: cover;
}

.feature-box {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow);
    color: var(--primary-color);
    font-size: 1.5rem;
}

.cta-banner {
    background: linear-gradient(rgba(37, 99, 235, 0.9), rgba(30, 64, 175, 0.9)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    color: white;
    border-radius: 30px;
    text-align: center;
}

/* Hierarchical Menu / Dropdown */
.menuduzenle ul li {
    position: relative;
}

.menuduzenle ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    display: none;
    padding: 15px 0;
    border-radius: 12px;
    z-index: 100;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.menuduzenle ul li:hover>ul {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.menuduzenle ul li ul li {
    width: 100%;
    display: block;
    padding: 0 20px;
    margin: 0 !important;
}

.menuduzenle ul li ul li a {
    padding: 10px 0;
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.menuduzenle ul li ul li:last-child a {
    border-bottom: none;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



footer {
    background: #f8faf9;
    color: #071122;
    padding: 80px 0 40px;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #071122;
    ;
}

.footer-link {
    color: #071122;
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-link:hover {
    scale: 1.05;
    transition: all 0.3s ease;
}

/* Slider overlay adjustments */
.hero-slider-wrap {
    padding: 20px 0;
}

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

.hero-slide-item img {
    width: auto;
    min-width: 100%;
    max-width: none;
    height: 100%;
    display: block;
    border-radius: 30px !important;
    object-fit: cover;
    object-position: center center;
}

.hero-slide-item-mobile {
    position: relative;
    overflow: hidden;
    border-radius: 0px !important;
    height: 600px;
}

.hero-slide-item-mobile .hero-slide-link {
    display: block;
    height: 100%;
}

.hero-slide-item-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    border-radius: 0 !important;
}

.hero-slide-caption-mobile {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px;
    color: #fff;
}

.hero-slide-caption {
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 55%;
    padding: 20px 20px 20px 60px;
    color: #fff;
}

.hero-slide-caption h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}

.hero-slide-caption p {
    margin: 0;
    font-size: 1rem;
    color: #fff;
}

.hero-main-title {
    font-size: 48px !important;
    font-weight: 700 !important;
    line-height: 1.05;
    margin-bottom: 10px !important;
    color: #03963c !important;
}

.hero-main-title span {
    color: #071122;
}

.hero-main-desc {
    font-size: 20px !important;
    font-weight: 400 !important;
    color: #1f2937 !important;
    margin-bottom: 14px !important;
}

.hero-sector-form {
    margin-bottom: 12px;
}

.hero-sector-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px;
    align-items: stretch;
    gap: 0;
    position: relative;
    width: 100%;
}

.hero-sector-row-mobile {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 70px;
    align-items: stretch;
    gap: 0;
    position: relative;
    width: 80%;
}

.hero-sector-select {
    height: 60px !important;
    width: 100%;
    min-width: 0;
    border: 1px solid #d1d5db;
    background: #fff;
    padding: 0 32px 0 34px;
    font-size: 14px;
    color: #111827;
    border-top-left-radius: 15px !important;
    border-bottom-left-radius: 15px !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.hero-sector-icon {
    position: absolute;
    left: 16px;
    top: 40%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 16px;
    pointer-events: none;
    line-height: 1;
}

.hero-sector-search-btn {
    height: 60px;
    width: 100%;
    border: none;
    background: #03963c;
    color: #fff;
    padding: 0 30px;
    font-size: 20px;
    font-weight: 700;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-top-right-radius: 15px !important;
    border-bottom-right-radius: 15px !important;
}

.hero-cta-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-cta-box {
    min-width: 250px;
    padding: 20px 30px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.1;
    border-radius: 6px;
}

.hero-cta-box-mobile {
    padding: 15px 10px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    line-height: 1.1;

}

.hero-cta-call {
    background: #01933a;
}

.hero-cta-offer {
    background: #fe7607;
}

.hero-cta-title {
    font-size: 17px;
    font-weight: 700;
    display: block;
}

.hero-cta-subtitle {
    font-size: 13px;
    font-weight: 400;
    margin-top: 3px;
    display: block;
}

.hero-cta-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.hero-cta-texts {
    display: flex;
    flex-direction: column;
}

/* ---- Sektör / ilan listesi (views: usta/sektor/index, usta/sektor/category) ---- */
.sector-list-title {
    font-size: 38px;
    font-weight: 700;
    color: #111827;
    line-height: 1.1;
}

.sector-list-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #6b7280;
}

.sector-left-sidebar {
    overflow: visible;
}

.sector-side-box {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    padding: 12px;
}

.sector-side-title {
    margin: 0 0 10px;
    padding: 0;
    display: block;
    text-align: left;
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

.sector-side-list {
    max-height: 260px;
    overflow: auto;
    margin-bottom: 0;
}

.sector-side-link {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    color: #111827;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.sector-side-link:hover {
    background: #f3fbf6;
    color: #03963c;
}

.sector-side-link.is-active {
    background: #e7f7ee;
    color: #03963c;
}

.sector-side-subtitle {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.sector-search-wrap {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0 12px;
    height: 52px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    background: #fff;
}

.sector-search-input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 15px;
    color: #111827;
    background: transparent;
}

.sector-select {
    width: 100%;
    height: 52px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0 14px;
    font-size: 15px;
    color: #111827;
    background: #fff;
}

.sector-search-btn {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 10px;
    background: #02943d;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.sector-toolbar-count {
    color: #6b7280;
    font-size: 14px;
    margin-left: 2px;
}

.sector-filter-box .sector-search-wrap .sector-search-icon {
    font-size: 0.95rem;
    opacity: 0.45;
    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .sector-list-title {
        font-size: 30px;
    }

    .sector-list-subtitle {
        font-size: 17px;
    }

    .sector-left-sidebar {
        margin-bottom: 8px;
    }
}

/* ---- İşletme detay (/isletme/{slug}) ---- */
.company-single-page {
    font-family: 'Outfit', sans-serif;
}

.company-single-breadcrumb {
    font-size: 0.875rem;
}

/* Sağ panel — iletişim kartı (referans UI) */
.company-contact-panel {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid #edf0f5;
    border-radius: 18px;
    background: #fff;
    padding: 1.35rem 1.2rem 1.25rem;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
    z-index: 9;
}

.company-contact-heading {
    float: none;
    clear: both;
    display: block;
    width: 100%;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 800;
    color: #0a1628;
    margin: 0 0 1.15rem;
    padding: 0;
    letter-spacing: -0.02em;
}

.company-contact-profile {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    margin: 0 0 1.25rem;
    min-width: 0;
}

.company-contact-profile-text {
    flex: 1 1 auto;
    min-width: 0;
    text-align: left;
}

.company-contact-avatar {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(145deg, #2563eb 0%, #1d4ed8 55%, #1e40af 100%);
    color: #fff;
    font-weight: 800;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.company-contact-brand {
    font-size: 0.95rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.25;
    letter-spacing: 0.02em;
}

.company-contact-member {
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
}

.company-contact-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    margin-bottom: 1.35rem;
    padding: 12px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.company-contact-stat {
    text-align: center;
    position: relative;
    padding: 0 6px;
}

.company-contact-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 36px;
    background: #e8ecf2;
}

.company-contact-stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
}

.company-contact-stat-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    margin-top: 4px;
    text-transform: capitalize;
}

.company-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.company-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.company-contact-btn:active {
    transform: scale(0.98);
}

.company-contact-btn-msg {
    background: #334155;
    color: #fff !important;
}

.company-contact-btn-msg:hover {
    color: #fff !important;
    filter: brightness(1.05);
}

.company-contact-btn-call {
    background: #334155;
    color: #fff !important;
}

.company-contact-btn-call:hover {
    color: #fff !important;
    filter: brightness(1.05);
}

.company-contact-call-split {
    display: flex;
    align-items: stretch;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.22);
}

.company-contact-call-mask {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.company-contact-call-login-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    max-width: 46%;
    background: #15803d;
    color: #fff !important;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    line-height: 1.25;
}

.company-contact-call-login-pill:hover {
    color: #fff !important;
    background: #166534;
}

.company-contact-btn-wa {
    background: #334155;
    color: #fff !important;
}

.company-contact-btn-wa:hover {
    color: #fff !important;
    filter: brightness(1.05);
}

.company-contact-btn-quote {
    background: #fe7607;
    color: #fff !important;
}

.company-contact-btn-quote:hover {
    background: #fe7607da;
}

.company-contact-email-fallback {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    text-align: center;
    word-break: break-all;
}

.company-contact-email-fallback:hover {
    color: #03963c;
}

.company-contact-share {
    margin-top: 1.35rem;
    padding-top: 1.15rem;
    border-top: 1px solid #f1f5f9;
    text-align: center;
}

.company-contact-share-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 12px;
}

.company-contact-share-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.company-contact-share-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 1.15rem;
    text-decoration: none;
    transition: transform 0.15s ease;
}

.company-contact-share-btn:hover {
    transform: translateY(-2px);
    color: #fff !important;
}

.company-contact-share-wa {
    background: #25d366;
}

.company-contact-share-fb {
    background: #1877f2;
}

.company-contact-share-x {
    background: #111827;
}

.company-contact-share-tg {
    background: #229ed9;
}

.company-single-panel {
    border: 1px solid #edf0f5;
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
    margin: 0 -1rem 0;
}

.company-single-gallery-wrap {
    --company-gallery-height: 420px;
    background: #f1f5f9;
}

.company-single-gallery-carousel {
    position: relative;
}

.company-single-gallery-carousel .carousel-inner {
    overflow: hidden;
}

.company-single-gallery-carousel .carousel-item {
    min-height: var(--company-gallery-height);
}

.company-single-gallery-slide {
    position: relative;
    height: var(--company-gallery-height);
    min-height: var(--company-gallery-height);
    max-height: var(--company-gallery-height);
    box-sizing: border-box;
    overflow: hidden;
    background: #0f172a;
    padding: 0;
}

.company-single-gallery-img {
    display: block;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

@media (max-width: 575.98px) {
    .company-single-gallery-wrap {
        --company-gallery-height: 300px;
    }
}

@media (min-width: 1200px) {
    .company-single-gallery-wrap {
        --company-gallery-height: 480px;
    }
}

.company-single-gallery-indicators {
    margin-bottom: 0.5rem;
    gap: 6px;
}

.company-single-gallery-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-left: 4px;
    margin-right: 4px;
    background-color: #cbd5e1;
    border: none;
    opacity: 1;
}

.company-single-gallery-indicators [data-bs-target].active {
    background-color: #03963c;
}

.company-single-gallery-control {
    width: 44px;
    height: 44px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.company-single-gallery-carousel .carousel-control-prev {
    left: 10px;
}

.company-single-gallery-carousel .carousel-control-next {
    right: 10px;
}

.company-single-gallery-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #111827;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.12);
}

.company-single-gallery-control:hover .company-single-gallery-arrow {
    background: #fff;
    color: #03963c;
}

.company-single-map-section {
    margin-top: 0.25rem;
    border-top: 1px solid #f1f5f9;
}

.company-single-map-toolbar {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.company-single-map-toolbar-title {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.company-single-map-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.company-single-map-toolbar .company-single-directions-btn {
    margin-left: 0;
    flex-shrink: 0;
}

.company-single-map-title {
    float: none;
    clear: both;
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
}

.company-single-directions-btn {
    --bs-btn-color: #03963c;
    --bs-btn-border-color: #03963c;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #03963c;
    --bs-btn-hover-border-color: #03963c;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #027a32;
    --bs-btn-active-border-color: #027a32;
    font-weight: 700;
    font-size: 14px;
    border-radius: 10px;
    padding: 0.45rem 1rem;
}

.company-single-map-frame {
    background: #e5e7eb;
    min-height: 260px;
}

.company-single-map-frame--embed {
    position: relative;
    min-height: 260px;
    aspect-ratio: 16 / 10;
}

.company-single-map-frame--embed .company-single-map-iframe {
    position: relative;
    z-index: 0;
}

.company-single-map-address-overlay {
    position: absolute;
    left: 12px;
    bottom: 12px;
    max-width: min(420px, calc(100% - 24px));
    padding: 10px 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.12);
    z-index: 2;
    pointer-events: none;
    line-height: 1.35;
}

.company-single-map-address-overlay-pin {
    color: #03963c;
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 420px) {
    .company-single-map-toolbar {
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .company-single-map-toolbar-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

.company-single-map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.company-single-name {
    float: none;
    clear: both;
    display: block;
    width: 100%;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.company-single-stars .company-single-star.is-filled {
    color: #f59e0b;
}

.company-single-stars .company-single-star.is-empty {
    color: #e5e7eb;
}

.company-single-review-score {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.company-single-location {
    font-size: inherit;
    font-weight: inherit;
}

.company-single-location:not(.small) {
    font-size: 15px;
    font-weight: 600;
}

.company-single-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #334155;
}

.company-single-desc p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .company-contact-panel.sticky-lg-top {
        position: static !important;
    }
}

/* ---- Üye giriş & panel (/profil) ---- */
.profil-page {
    font-family: 'Outfit', sans-serif;
}

.profil-auth-intro {
    border-radius: 22px;
    padding: 2.5rem 2rem;
    /* Pastel gri tarzda arka plan */
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: #1a1a1a;
    /* Metin rengi okunabilirlik için koyu */
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    /* Yumuşak nötr gölge */
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.profil-auth-intro h2 {
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
}

.profil-auth-intro-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 1.25rem;
}

.profil-auth-intro-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0.95;
}

.profil-auth-intro-link:hover {
    color: #fff;
    opacity: 1;
    text-decoration: underline;
}

.profil-auth-card.profil-auth-card {
    padding: 1.75rem 1.5rem 1.6rem;
}

@media (min-width: 992px) {
    .profil-auth-card.profil-auth-card {
        padding: 2rem 2rem 1.85rem;
    }
}

.profil-form-heading {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0a1628;
    margin: 0 0 1.35rem;
    letter-spacing: -0.02em;
}

.profil-input {
    border-radius: 12px;
    border: 1px solid #d9dee8;
    font-size: 1rem;
}

.profil-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.profil-submit-btn {
    border-radius: 12px;
    border: none;
    font-weight: 700;
    background: #02943d;
    color: #fff;
    transition: background 0.2s ease, transform 0.15s ease;
}

.profil-submit-btn:hover {
    background: #027a33;
    color: #fff;
}

.profil-submit-btn:active {
    transform: translateY(1px);
}

.profil-inline-link {
    color: var(--accent-color);
}

.profil-inline-link:hover {
    color: var(--secondary-color);
}

.profil-dashboard-photo {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
    border: 2px solid #fff;
}

.profil-dashboard-initial.profil-dashboard-initial {
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
}

.profil-dashboard-title {
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0a1628;
}

.profil-dash-tile.profil-dash-tile {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a:hover .profil-dash-tile.profil-dash-tile {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.profil-dash-tile-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #eff6ff;
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.profil-dash-tile-icon--cta {
    background: #ecfdf3;
    color: #059669;
}

.profil-sidebar-panel.profil-sidebar-panel {
    padding: 1.25rem 1.15rem;
}

.profil-sidebar-nav .profil-sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
    transition: background 0.15s ease, color 0.15s ease;
}

.profil-sidebar-nav .profil-sidebar-link i {
    width: 1.25rem;
    text-align: center;
    opacity: 0.85;
}

.profil-sidebar-nav .profil-sidebar-link:hover {
    background: #f1f5f9;
    color: var(--primary-color);
}

.profil-sidebar-nav .profil-sidebar-link.is-active {
    background: #eff6ff;
    color: var(--secondary-color);
}

.profil-sidebar-divider {
    border: 0;
    border-top: 1px solid #edf0f5;
    margin: 1rem 0;
    opacity: 1;
}

.profil-teklif-table thead th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
}

.profil-teklif-table-wrap {
    border-radius: 12px;
    border: 1px solid #edf0f5;
    overflow: hidden;
}

.profil-teklif-detail-btn {
    min-width: 40px;
    padding-inline: 10px;
}

.profil-teklif-status-pill {
    font-weight: 600;
    font-size: 0.8125rem;
}

.profil-teklif-detail-dl dd {
    margin-bottom: 0.65rem;
}

.profil-teklif-gallery-thumb:hover img {
    opacity: 0.92;
}

.profil-teklif-gallery-thumb img {
    transition: opacity 0.2s ease;
}

.profil-firma-teklif-accordion .accordion-item {
    border-color: #edf0f5 !important;
}

.profil-firma-teklif-accordion .profil-firma-teklif-toggle {
    box-shadow: none;
    font-size: 0.9375rem;
}

.profil-firma-teklif-accordion .profil-firma-teklif-toggle:not(.collapsed) {
    background: #f8fafc;
}

.profil-firma-teklif-accordion .profil-firma-teklif-toggle::after {
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.profil-firma-teklif-accordion .accordion-body {
    background: #fff;
    border-top: 1px solid #edf0f5;
}

/* ---- Teklif oluştur: sağ sütun yapışkan (header ~80px + boşluk) ---- */
@media (min-width: 992px) {
    .company-teklif-preview-col-sticky {
        position: sticky;
        top: calc(80px + 1.25rem);
        align-self: flex-start;
        z-index: 10;
    }
}

.company-teklif-preview-desc {
    white-space: pre-wrap;
    word-break: break-word;
    line-height: 1.55;
}

/* Ana sayfa — çoklu talep modalı */
.modal-backdrop.hero-teklif-modal-backdrop {
    backdrop-filter: blur(48px) saturate(1.2);
    -webkit-backdrop-filter: blur(48px) saturate(1.2);
    background-color: rgba(8, 18, 36, 0.55) !important;
}

.hero-teklif-modal .modal-dialog.hero-teklif-modal-dialog {
    max-width: min(1140px, calc(100% - 1.5rem));
}

.hero-teklif-modal .hero-teklif-modal-content {
    border-radius: 22px;
    box-shadow:
        0 25px 50px -12px rgba(15, 23, 42, 0.28),
        0 12px 24px rgba(15, 23, 42, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
}

.hero-teklif-modal .modal-header .modal-title {
    letter-spacing: -0.02em;
}

/* Adım 2 — işletme seçimi */
.hero-teklif-modal .hero-teklif-companies-intro {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e8ecf1;
    border-radius: 14px;
    padding: 1rem 1.1rem;
    margin-bottom: 1.15rem;
}

.hero-teklif-modal .hero-teklif-companies-intro-lead {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.02em;
}

.hero-teklif-modal .hero-teklif-companies-sector {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.hero-teklif-modal .hero-teklif-companies-sector span {
    color: #03963c;
    font-weight: 700;
}

.hero-teklif-modal .hero-teklif-companies-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    width: 100%;
    min-width: 0;
}

@media (min-width: 576px) {
    .hero-teklif-modal .hero-teklif-companies-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (min-width: 992px) {
    .hero-teklif-modal .hero-teklif-companies-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 13px;
    }
}

.hero-teklif-modal .hero-teklif-company-card {
    appearance: none;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: pointer;
    color: inherit;
    font: inherit;
    text-align: left;
    width: 100%;
    min-width: 0;
    border-radius: 14px;
}

.hero-teklif-modal .hero-teklif-company-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    min-height: 100%;
    padding: 0.65rem 0.7rem;
    background: #ffffff;
    border: 1px solid #e8eaef;
    border-radius: 14px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hero-teklif-modal .hero-teklif-company-card:hover .hero-teklif-company-card-inner {
    border-color: #dce3ee;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
    transform: translateY(-1px);
}

.hero-teklif-modal .hero-teklif-company-card.is-selected .hero-teklif-company-card-inner {
    border-color: #03963c;
    box-shadow: 0 6px 18px rgba(3, 150, 60, 0.15);
    background: linear-gradient(180deg, #f0fdf6 0%, #ffffff 65%);
}

.hero-teklif-modal .hero-teklif-company-card-media {
    flex-shrink: 0;
}

.hero-teklif-modal .hero-teklif-company-card-media img {
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 11px;
    object-fit: cover;
    border: 1px solid #eef1f5;
}

.hero-teklif-modal .hero-teklif-company-card-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #dbeafe;
    font-weight: 800;
    font-size: 1rem;
    color: #1e40af;
}

.hero-teklif-modal .hero-teklif-company-card-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 1px;
}

.hero-teklif-modal .hero-teklif-company-card-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.28;
    color: #0f172a;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-word;
}

.hero-teklif-modal .hero-teklif-company-card-loc {
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1.35;
    color: #64748b;
    display: block;
}

.hero-teklif-modal .hero-teklif-company-card:focus-visible .hero-teklif-company-card-inner {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.hero-teklif-modal .hero-teklif-companies-loading {
    border-radius: 12px;
    background: #f8fafc;
}

.hero-teklif-modal .modal-body {
    min-height: 200px;
}

/* Sektör seçimi — ana sayfa category.blade.php karo görünümü ile uyumlu */
.hero-teklif-modal .hero-teklif-sector-picker {
    width: 100%;
    min-width: 0;
}

.hero-teklif-modal .hero-teklif-home-sectors-grid {
    display: grid;
    width: 100%;
    min-width: 0;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (min-width: 576px) {
    .hero-teklif-modal .hero-teklif-home-sectors-grid {
        gap: 12px;
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .hero-teklif-modal .hero-teklif-home-sectors-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (min-width: 992px) {
    .hero-teklif-modal .hero-teklif-home-sectors-grid {
        grid-template-columns: repeat(8, minmax(0, 1fr));
        gap: 13px;
    }
}

.hero-teklif-modal .hero-teklif-sector-btn.hero-teklif-home-sector-tile {
    appearance: none;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: inherit;
    cursor: pointer;
    min-width: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-self: stretch;
}

.hero-teklif-modal .hero-teklif-home-sector-tile-inner {
    flex: 1;
    width: 100%;
    min-height: 0;
    background: #ffffff;
    border: 1px solid #e8eaef;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    padding: 0.45rem 0.35rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.35rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

@media (min-width: 992px) {
    .hero-teklif-modal .hero-teklif-home-sector-tile-inner {
        padding: 0.55rem 0.4rem 0.55rem;
        border-radius: 14px;
    }
}

.hero-teklif-modal .hero-teklif-sector-btn.hero-teklif-home-sector-tile:hover .hero-teklif-home-sector-tile-inner {
    border-color: #dce0e8;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
    transform: translateY(-1px);
}

.hero-teklif-modal .hero-teklif-sector-btn.hero-teklif-home-sector-tile.is-selected .hero-teklif-home-sector-tile-inner {
    border-color: var(--primary-color) !important;
    background: #f0fdf6 !important;
    box-shadow: 0 0 0 2px var(--primary-color) inset, 0 10px 20px rgba(3, 150, 60, 0.15) !important;
    transform: scale(0.98);
}

.hero-teklif-modal .hero-teklif-home-sector-tile-img {
    flex-shrink: 0;
    width: auto;
    height: auto;
    max-width: min(82%, 3.35rem);
    max-height: min(72%, 3rem);
    object-fit: contain;
    display: block;
    order: -1;
}

.hero-teklif-modal .hero-teklif-home-sector-tile-label {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
    color: #071122;
    margin: 0;
    width: 100%;
    max-width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-word;
    text-align: center;
}

.hero-teklif-modal .hero-teklif-sector-btn.hero-teklif-home-sector-tile:focus-visible .hero-teklif-home-sector-tile-inner {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Mesajlar Sayfası Modern Tasarım */
.profil-mobile-messages {
    padding: 20px 15px 50px;
    background: #fff;
    min-height: 100vh;
    margin: 0 -1rem 0;
}

.profil-mobile-msg-list {
    display: flex;
    flex-direction: column;
}

.profil-mobile-msg-item {
    display: flex;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
}

.profil-mobile-msg-item:active {
    background: #f8fafc;
}

.profil-mobile-msg-item:last-child {
    border-bottom: none;
}

.profil-mobile-msg-avatar-group {
    position: relative;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.profil-mobile-msg-company-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    background: #f1f5f9;
}

.profil-mobile-msg-company-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profil-mobile-msg-placeholder {
    width: 100%;
    height: 100%;
    background: #e2e8f0;
}

.profil-mobile-msg-initial {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: #dbeafe;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    border: 2px solid #fff;
}

.profil-mobile-msg-content {
    flex: 1;
    min-width: 0;
}

.profil-mobile-msg-time {
    font-size: 0.75rem;
    color: #64748b;
}

.profil-mobile-msg-preview {
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #64748b;
}

.profil-mobile-msg-status {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.profil-mobile-msg-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 0 2px #fff;
}

@media (max-width: 991.98px) {
    .profil-page .company-single-breadcrumb {
        display: none !important;
    }

    .profil-page .col-lg-3 {
        display: none !important;
    }

    .profil-page {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .profil-page .container {
        padding: 0 !important;
        max-width: 100% !important;
    }
}

/* Konuşma Detay Sayfası */
.profil-mobile-chat-header {
    z-index: 1020;
}

.profil-mobile-chat-avatar {
    width: 38px;
    height: 38px;
    background: #dbeafe;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    margin: 0 auto;
}

.profil-konusma-msg-row {
    margin-bottom: 8px;
}

.profil-konusma-time {
    font-size: 0.75rem;
    color: #94a3b8;
}

.profil-konusma-bubble {
    border-radius: 20px;
    font-size: 0.95rem;
    line-height: 1.4;
    padding: 10px 15px;
}

.profil-konusma-bubble.is-me {
    background-color: #334155 !important;
    color: #fff !important;
    border-bottom-right-radius: 4px;
}

.profil-konusma-bubble:not(.is-me) {
    border-bottom-left-radius: 4px;
    background-color: #f1f5f9;
    color: #1e293b;
}

.profil-mobile-chat-footer {
    z-index: 1010;
}

#profil-konusma-mesaj {
    min-height: 44px;
    padding-top: 10px;
}

@media (min-width: 992px) {
    .profil-konusma-bubble {
        border-radius: 12px;
    }
}

/* Profil Düzenleme Sayfası */
.profil-mobile-edit {
    padding: 20px 15px 50px;
    background: #f8fafc;
    min-height: 100vh;
}

.profil-mobile-edit-card {
    border-color: #f1f5f9 !important;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.profil-mobile-edit .form-label {
    color: #475569;
    font-weight: 500;
}

/* Bildirimler Sayfası Modern Tasarım */
.profil-mobile-notifications {
    padding: 20px 15px 50px;
    background: #fff;
    min-height: 100vh;
    margin: 0 -1rem 0;
}

.profil-mobile-notif-item {
    display: flex;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
    position: relative;
    text-decoration: none;
}

.profil-mobile-notif-item:active {
    background: #f8fafc;
}

.profil-mobile-notif-item.is-unread {
    background-color: #fff9f0;
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
}

.profil-mobile-notif-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.profil-mobile-notif-icon.is-unread {
    background: #fff7ed;
    color: #f97316;
}

.profil-mobile-notif-content {
    flex: 1;
    min-width: 0;
}

.profil-mobile-notif-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.profil-mobile-notif-text {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.4;
}

.profil-mobile-notif-time {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 4px;
    display: block;
}

/* Profil Anasayfa (Dashboard) Modern Tasarım */
.profil-mobile-dashboard {
    padding: 20px 15px 50px;
    background: #f8fafc;
    margin: 1rem -1rem 0;
    min-height: 100vh;
}

.profil-mobile-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.profil-mobile-avatar-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.profil-mobile-avatar {
    width: 80px;
    height: 80px;
    background: #fef2f2;
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    border-radius: 50%;
    flex-shrink: 0;
}

.profil-mobile-action-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    height: 100%;
}

.profil-mobile-action-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #475569;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 6px;
}

.profil-mobile-action-icon-wrap {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profil-mobile-action-icon-wrap img {
    max-height: 100%;
    object-fit: contain;
}

.profil-mobile-action-label {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.95rem;
}

.profil-mobile-banner {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: relative;
}

.profil-mobile-list-item {
    background: #fff;
    border-radius: 20px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.2s;
}

.profil-mobile-list-item:active {
    background: #f8fafc;
    transform: scale(0.98);
}

.profil-mobile-list-item i {
    font-size: 1.1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f8fafc;
    color: #64748b;
    margin-right: 5px;
}

.profil-mobile-list-item.text-danger i {
    background: #fef2f2;
    color: #ef4444;
}

.profil-mobile-list-item .fa-chevron-right {
    background: transparent !important;
    font-size: 0.8rem;
    width: auto;
    height: auto;
    margin-right: 0;
    color: #94a3b8;
}

/* Teklif Detay Sayfası */
.profil-mobile-offer-show {
    padding: 20px 15px 50px;
    background: #f8fafc;
    min-height: 100vh;
    margin: 0 -1rem 0;
}

.profil-mobile-offer-card {
    border-color: #f1f5f9 !important;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.profil-teklif-gallery-thumb {
    transition: transform 0.2s;
}

.profil-teklif-gallery-thumb:hover {
    transform: scale(1.02);
}

/* Tekliflerim Listesi */
.profil-mobile-offers {
    padding: 20px 15px 50px;
    background: #f8fafc;
    min-height: 100vh;
    margin: 0 -1rem 0;
}

.profil-mobile-offer-card {
    border-color: #f1f5f9 !important;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
    background: #fff;
    margin-bottom: 12px;
    padding: 16px;
    display: block;
    text-decoration: none;
}

.profil-mobile-offer-card:active {
    transform: scale(0.98);
    background: #f8fafc;
}

/* Home Trust Strip */
.home-trust-strip {
    padding: 2rem 0 1rem;
    background: transparent;
}

.home-trust-strip__bar {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0;
    background: #f5f6f8;
    border: 1px solid #eceef2;
    border-radius: 14px;
    padding: 1rem 0.75rem;
    overflow: hidden;
}

@media (min-width: 992px) {
    .home-trust-strip__bar {
        flex-wrap: nowrap;
        padding: 50px 20px;
    }
}

.home-trust-strip__item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 0 0 100%;
    min-width: 0;
    padding: 15px;
    position: relative;
}

@media (max-width: 991.98px) {
    .home-trust-strip__item:not(:last-child) {
        border-bottom: 1px solid #eceef2;
    }
}

@media (min-width: 992px) {
    .home-trust-strip__item {
        flex: 1 1 0;
        padding: 0.35rem 1.25rem;
    }

    .home-trust-strip__item:not(:last-child) {
        border-right: 1px solid #dee2e6;
    }
}

.home-trust-strip__icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #03963c;
    margin-top: 0.1rem;
}

.home-trust-strip__texts {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-align: left;
    min-width: 0;
}

.home-trust-strip__title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    line-height: 1.25;
}

.home-trust-strip__desc {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #64748b;
    line-height: 1.35;
}

/* Home Sectors Section */
.home-sectors-section {
    background: transparent;
    text-align: left;
    position: relative;
    z-index: 10;
}

@media (max-width: 767.98px) {
    .home-sectors-section {
        margin-top: -80px;
    }
}

.home-sectors-panel {
    background: #ffffff;
    border: 1px solid #edf0f5;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
    padding: 1.25rem 1rem 1.35rem;
}

@media (min-width: 768px) {
    .home-sectors-panel {
        padding: 1.5rem 1.35rem 1.65rem;
        border-radius: 20px;
    }
}

@media (min-width: 1200px) {
    .home-sectors-panel {
        padding: 1.65rem 1.5rem 1.75rem;
    }
}

.home-sectors-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    min-width: 0;
    gap: 1rem;
}

@media (min-width: 768px) {
    .home-sectors-inner {
        gap: 1.15rem;
    }
}

.home-sectors-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    margin: 0;
    padding: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    flex-shrink: 0;
    width: 100%;
}

@media (min-width: 768px) {
    .home-sectors-heading {
        font-size: 1.25rem;
    }
}

.home-sectors-heading-link {
    display: inline-block;
    max-width: 100%;
    color: #111827;
    text-decoration: none;
    transition: color 0.2s ease;
}

.home-sectors-heading-link:hover {
    color: #03963c;
}

.home-sectors-grid {
    display: grid;
    width: 100%;
    min-width: 0;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (min-width: 576px) {
    .home-sectors-grid {
        gap: 12px;
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .home-sectors-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (min-width: 992px) {
    .home-sectors-grid {
        grid-template-columns: repeat(8, minmax(0, 1fr));
        gap: 13px;
    }
}

@media (min-width: 1200px) {
    .home-sectors-grid {
        grid-template-columns: repeat(10, minmax(0, 1fr));
        gap: 14px;
    }
}

.home-sector-tile {
    color: inherit;
    min-width: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-self: stretch;
}

@media (max-width: 575.98px) {
    .home-sector-tile {
        aspect-ratio: auto;
    }
}

.home-sector-tile-inner {
    flex: 1;
    width: 100%;
    min-height: 0;
    background: #ffffff;
    border: 1px solid #e8eaef;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    padding: 0.45rem 0.35rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.35rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

@media (min-width: 992px) {
    .home-sector-tile-inner {
        padding: 0.55rem 0.2rem 0.55rem;
        border-radius: 14px;
    }
}

.home-sector-tile:hover .home-sector-tile-inner {
    border-color: #dce0e8;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
    transform: translateY(-1px);
}

.home-sector-tile-img {
    flex-shrink: 0;
    width: auto;
    height: auto;
    max-width: min(82%, 3.35rem);
    max-height: min(72%, 3rem);
    object-fit: contain;
    display: block;
    order: -1;
}

.home-sector-tile-inner .home-sector-tile-label {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
    color: #071122;
    margin: 0;
    width: 100%;
    max-width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-word;
    text-align: center;
}

@media (max-width: 575.98px) {
    .home-sector-tile-inner .home-sector-tile-label {
        font-size: 13px;
        line-height: 1.2;
    }

    .home-sector-tile-inner {
        min-height: 95px;
        padding: 10px 4px;
    }
}

.home-sector-tile--all:hover .home-sector-tile-label {
    color: #03963c;
}

/* Home Featured Strip */
.home-featured-strip {
    padding: 60px 0 100px;
    background: transparent;
}

.home-featured-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 1.75rem;
    border-radius: 20px;
    color: white;
    overflow: hidden;
    min-height: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.home-featured-card--1 {
    background: linear-gradient(135deg, #01933a 0%, #03963c 100%);
}

.home-featured-card--2 {
    background: linear-gradient(135deg, #fe7607 0%, #ff8c32 100%);
}

.home-featured-card--3 {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.home-featured-card__visual {
    flex-shrink: 0;
    width: 7.5rem;
    height: 7.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.home-featured-card__img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.home-featured-card__body {
    flex: 1;
    min-width: 0;
}

.home-featured-card__title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.home-featured-card__btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: white;
    color: #111827;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-featured-card__btn:hover {
    background: #fafafa;
    color: #071122;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

@media (max-width: 991.98px) {
    .home-featured-strip {
        padding: 30px 0 50px;
    }

    .home-featured-strip .row>div:not(:last-child) {
        margin-bottom: 15px;
    }
}

@media (max-width: 575.98px) {
    .home-featured-card {
        min-height: 0;
        padding: 1rem;
        gap: 0.85rem;
    }

    .home-featured-card__visual {
        width: 6rem;
        height: 6rem;
    }

    .home-featured-card__brand {
        font-size: 30px;
    }

    .home-featured-card__title {
        font-size: 20px;
    }

    .home-featured-card__btn {
        font-size: 13px;
        padding: 0.35rem 0.75rem;
        margin-top: 0;
    }
}

/* Teklif Modal Styles */


.hero-teklif-modal .modal-dialog {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-teklif-modal .modal-content {
    border-radius: 24px;
    border: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: #f4f5f7;
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .hero-teklif-modal .modal-dialog {
        margin: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        max-width: none !important;
    }

    .hero-teklif-modal .modal-content {
        height: 100vh !important;
        border-radius: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        background: #fff !important;
    }

    .hero-teklif-modal .modal-header {
        padding: 16px 20px !important;
        background: #fff !important;
        border-bottom: 1px solid #f1f5f9 !important;
        text-align: left !important;
        align-items: flex-start !important;
    }

    .hero-teklif-modal .modal-title {
        font-size: 1.15rem !important;
    }

    .hero-teklif-modal .msm-close {
        top: 14px !important;
        right: 14px !important;
        width: 36px !important;
        height: 36px !important;
    }

    .hero-teklif-modal .modal-body {
        flex: 1 !important;
        overflow-y: auto !important;
        padding: 20px 16px !important;
        border-radius: 0 !important;
    }

    .hero-teklif-modal .modal-footer {
        padding: 16px !important;
        background: #fff !important;
        border-top: 1px solid #f1f5f9 !important;
        position: sticky !important;
        bottom: 0 !important;
        z-index: 20 !important;
        border-radius: 0 !important;
    }

    .hero-teklif-companies-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .hero-teklif-company-card {
        padding: 12px !important;
        text-align: center !important;
    }

    .hero-teklif-company-card-inner {
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .hero-teklif-company-card-media {
        margin: 0 auto !important;
    }

    .hero-teklif-company-card-media img,
    .hero-teklif-company-card-fallback {
        width: 64px !important;
        height: 64px !important;
        display: block !important;
        margin: 0 auto !important;
    }

    .hero-teklif-company-card-name {
        text-align: center !important;
        font-size: 0.85rem !important;
    }

    .hero-teklif-company-card-loc {
        justify-content: center !important;
        font-size: 0.75rem !important;
    }

    .hero-teklif-home-sectors-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
    }

    .hero-teklif-home-sector-tile-img {
        width: 44px !important;
        height: 44px !important;
    }

    .hero-teklif-home-sector-tile-label {
        font-size: 0.8rem !important;
    }
}

.hero-teklif-modal .modal-header {
    background: #f4f5f7;
    padding: 24px;
    border: none;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-teklif-modal .modal-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.hero-teklif-modal .msm-close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    z-index: 10;
    padding: 0;
}

.hero-teklif-modal .msm-close:hover {
    background: #f8fafc;
    color: #0f172a;
    transform: rotate(90deg);
}

.hero-teklif-modal .modal-body {
    background: #fff;
    padding: 24px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.hero-teklif-modal .modal-footer {
    background: #fff;
    padding: 20px 24px;
    border: none;
    border-top: 1px solid #f1f5f9;
}

/* Sector Tiles Redesign */
.hero-teklif-home-sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
}

.hero-teklif-home-sector-tile {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 20px 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    cursor: pointer;
}

.hero-teklif-home-sector-tile:hover {
    border-color: #fe7607;
    background: #fffaf0;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(254, 118, 7, 0.08);
}

.hero-teklif-home-sector-tile.is-selected {
    border-color: #fe7607;
    background: #fffaf0;
    box-shadow: 0 0 0 3px rgba(254, 118, 7, 0.15);
}

.hero-teklif-home-sector-tile-img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 12px;
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.hero-teklif-home-sector-tile-label {
    font-weight: 700;
    font-size: 0.95rem;
    color: #0f172a;
}

/* Company Cards Redesign */
.hero-teklif-companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.hero-teklif-company-card {
    background: #fff;
    border: 1.5px solid #f1f5f9;
    border-radius: 20px;
    padding: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    width: 100%;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.hero-teklif-company-card:hover {
    border-color: #fe7607;
    background: #fffaf0;
    transform: translateY(-2px);
}

.hero-teklif-company-card.is-selected {
    border-color: #fe7607;
    background: #fffaf0;
    box-shadow: 0 10px 20px rgba(254, 118, 7, 0.1);
}

.hero-teklif-company-card-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-teklif-company-card-media {
    position: relative;
    flex-shrink: 0;
}

.hero-teklif-company-card-media img,
.hero-teklif-company-card-fallback {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.hero-teklif-company-card-fallback {
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.hero-teklif-company-card-name {
    font-weight: 800;
    font-size: 0.95rem;
    color: #0f172a;
    display: block;
    margin-bottom: 2px;
    line-height: 1.2;
}

.hero-teklif-company-card-loc {
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero-teklif-company-card-loc i {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Selection Badge */
.hero-teklif-company-card-check {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.hero-teklif-company-card.is-selected .hero-teklif-company-card-check {
    background: #fe7607;
    border-color: #fe7607;
    transform: scale(1.1);
}

/* Forms */
.profil-input {
    border-radius: 12px !important;
    border: 1.5px solid #e2e8f0 !important;
    padding: 12px 16px !important;
    font-size: 0.95rem !important;
    transition: all 0.2s !important;
}

.profil-input:focus {
    border-color: #fe7607 !important;
    box-shadow: 0 0 0 4px rgba(254, 118, 7, 0.1) !important;
}

.profil-submit-btn {
    background: #fe7607;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.2s;
}

.profil-submit-btn:hover {
    background: #e66a06;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(254, 118, 7, 0.2);
    color: #fff;
}

/* Backdrop Blur & Sync */
.modal-backdrop.hero-teklif-modal-backdrop {
    background-color: rgba(15, 23, 42, 0.5) !important;
    backdrop-filter: blur(6px);
    opacity: 1 !important;
}

.teklif-file-preview-item {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background: #f1f5f9;
}

.teklif-file-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.teklif-file-preview-remove {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    background: rgba(239, 68, 68, 0.9);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.2s;
    border: 1.5px solid #fff;
}

.teklif-file-preview-remove:hover {
    background: #dc2626;
    transform: scale(1.1);
}

/* Sektörler Sayfası Mobil Filtre */
.sector-mobile-filter-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: all 0.2s;
    flex-shrink: 0;
}

.sector-mobile-filter-btn:active {
    background: #f8fafc;
    transform: scale(0.95);
}

/* Modern Header Redesign (Bionluk Style) */
.main-header {
    background: #fff !important;
    border-bottom: 1px solid #f1f5f9 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02) !important;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-search-form input {
    background: #f8fafc !important;
    transition: all 0.2s ease;
}

.header-search-form input:focus {
    background: #fff !important;
    border-color: #02943d !important;
    box-shadow: 0 0 0 4px rgba(2, 148, 61, 0.1) !important;
}

.category-nav-modern .category-nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b !important;
    transition: all 0.2s;
    padding: 0.75rem 0;
}

.category-nav-modern .category-nav-link:hover {
    color: #02943d !important;
}

.category-nav-modern li:hover .submenu {
    display: block !important;
    animation: headerSlideUp 0.2s ease-out;
}

@keyframes headerSlideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-action-btn-modern {
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-action-btn-modern:hover {
    color: #02943d !important;
}

.header-user-menu-modern .dropdown-toggle::after {
    display: none;
}

.header-user-menu-modern .dropdown-item:hover {
    background-color: #f1f5f9;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

@media (max-width: 991px) {
    .main-header {
        position: relative;
    }
}

/* Animated Location Icon */
.location-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #fef3c7;
    color: #fe7607;
    border-radius: 50%;
    position: relative;
    vertical-align: middle;
}

.location-icon-wrapper i {
    font-size: 1rem;
    animation: pinBounce 2s infinite ease-in-out;
}

.location-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #fef3c7;
    opacity: 0.8;
    animation: pinPing 2s infinite ease-in-out;
    z-index: -1;
}

@keyframes pinBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@keyframes pinPing {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Modern Table Style */
.table.modern-table {
    border-collapse: separate !important;
    border-spacing: 0 10px !important;
    background: transparent !important;
}

.table.modern-table thead th {
    border: 0 !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: #64748b !important;
    padding: 1rem !important;
    background: transparent !important;
}

.table.modern-table tbody tr {
    background-color: #f8fafc !important;
    /* Soft pastel gray-blue */
    border-radius: 16px !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02) !important;
}

.table.modern-table tbody tr:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -2px rgba(0, 0, 0, 0.02) !important;
    background-color: #f1f5f9 !important;
    /* Slightly darker on hover */
}

.table.modern-table tbody td {
    border: 0 !important;
    padding: 1.25rem 1rem !important;
    font-size: 0.95rem !important;
    color: #334155 !important;
    vertical-align: middle !important;
}

.table.modern-table tbody tr td:first-child {
    border-top-left-radius: 16px !important;
    border-bottom-left-radius: 16px !important;
    padding-left: 1.5rem !important;
}

.table.modern-table tbody tr td:last-child {
    border-top-right-radius: 16px !important;
    border-bottom-right-radius: 16px !important;
    padding-right: 1.5rem !important;
}