/* 
   Hatay Web Directory Style Sheet
   Aesthetic: Warm Gastronomy & Olive Heritage (Terracotta Orange, Sage Green, Sand Cream, Charcoal)
   Fonts: Outfit (Display), Plus Jakarta Sans (Body)
*/

:root {
    --primary: #E0533C;            /* Terracotta Orange */
    --primary-hover: #C5412C;
    --secondary: #4F5D44;          /* Olive Sage Green */
    --secondary-hover: #3E4935;
    --accent: #DCA134;             /* Gold / Star / Premium Accent */
    --bg-warm: #F8FAFC;            /* Clean corporate background (Slate 50) */
    --card-bg: #FFFFFF;
    --border-color: #E2E8F0;       /* Sharp grey border */
    --text-main: #1A202C;          /* Very dark charcoal for high contrast */
    --text-muted: #4A5568;         /* Clear readable grey */
    --font-display: 'Inter', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    
    --shadow-soft: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-primary: 0 2px 4px rgba(224, 83, 60, 0.15);
    
    --radius-sm: 4px;
    --radius-md: 4px;
    --radius-lg: 4px;
}

/* Base Styles */
body {
    font-family: var(--font-body);
    background-color: var(--bg-warm);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-main);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}
a:hover {
    color: var(--primary-hover);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-warm);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Header Top Bar */
.header-top {
    background-color: var(--secondary);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.top-bar-link:hover {
    color: white;
}

.top-bar-divider {
    width: 1px;
    height: 14px;
    background-color: rgba(255, 255, 255, 0.2);
}

.top-bar-social a {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 12px;
    transition: color 0.3s ease;
}

.top-bar-social a:hover {
    color: var(--primary);
}

/* Main Navbar */
.main-nav {
    background: #FFFFFF !important;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.brand-logo-wrapper {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: none;
}

.brand-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    color: var(--text-main);
    line-height: 1;
    letter-spacing: -0.5px;
}

.brand-subtitle {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

.custom-nav-link {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--text-main) !important;
    font-size: 15px;
    padding: 10px 20px !important;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.custom-nav-link:hover, .custom-nav-link.active {
    background-color: rgba(224, 83, 60, 0.06);
    color: var(--primary) !important;
}

.contact-widget .icon-circle {
    width: 40px;
    height: 40px;
    background-color: rgba(224, 83, 60, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.contact-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: -2px;
}

.contact-number {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-main);
    font-size: 16px;
}

.contact-number:hover {
    color: var(--primary);
}

.hamburger-icon {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-add-business {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px !important;
    border-radius: var(--radius-sm) !important;
}

.btn-add-business i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-add-business:hover i {
    transform: translateX(4px);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary) !important;
    border: none !important;
    border-radius: var(--radius-md) !important;
    font-family: var(--font-display);
    font-weight: 600 !important;
    color: white !important;
    padding: 12px 28px !important;
    box-shadow: var(--shadow-primary) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-primary:hover {
    background-color: var(--primary-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(224, 83, 60, 0.25) !important;
}

.btn-outline-primary {
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
    background: transparent !important;
    border-radius: var(--radius-md) !important;
    font-family: var(--font-display);
    font-weight: 600 !important;
    padding: 10px 24px !important;
    transition: all 0.3s ease !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary) !important;
    color: white !important;
    transform: translateY(-2px);
}

.btn-outline-dark {
    border: 2px solid var(--text-main) !important;
    color: var(--text-main) !important;
    background: transparent !important;
    border-radius: var(--radius-md) !important;
    font-family: var(--font-display);
    font-weight: 600 !important;
    padding: 10px 24px !important;
    transition: all 0.3s ease !important;
}

.btn-outline-dark:hover {
    background-color: var(--text-main) !important;
    color: white !important;
    transform: translateY(-2px);
}

/* Editorial Homepage Hero */
.hero-editorial {
    padding: 100px 0 80px;
    background:
        linear-gradient(135deg, rgba(224, 83, 60, 0.05) 0%, rgba(220, 161, 52, 0.025) 32%, rgba(79, 93, 68, 0.035) 100%),
        var(--bg-warm);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.hero-editorial::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(224, 83, 60, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.hero-editorial::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(79, 93, 68, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(224, 83, 60, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.45;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.9), transparent 88%);
}

.hero-content,
.search-console,
.hero-quick-tags,
.hero-stats {
    position: relative;
    z-index: 1;
}

.hero-editorial h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-description {
    color: #445064;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

.hero-editorial h1 span.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-editorial h1 span.highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 8px;
    background-color: rgba(224, 83, 60, 0.12);
    z-index: -1;
}

/* Directory Search Console */
.search-console {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0;
    box-shadow: var(--shadow-soft);
    margin-top: 40px;
    overflow: hidden;
}

.search-console .form-control, .search-console .form-select {
    border: none;
    border-right: 1px solid var(--border-color);
    border-radius: 0;
    padding: 14px 20px;
    font-size: 15px;
    color: var(--text-main);
    background-color: transparent;
}

.search-console .form-control:focus, .search-console .form-select:focus {
    box-shadow: none;
    background-color: rgba(224, 83, 60, 0.02);
}

.search-console .col-lg-3:last-of-type .form-select, 
.search-console .col-lg-4:last-of-type .form-control {
    border-right: none;
}

.search-console .btn-search {
    border-radius: var(--radius-sm) !important;
    height: 100%;
    padding: 14px 30px !important;
}

.hero-quick-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.hero-quick-tags-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.hero-quick-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 4px;
    background-color: rgba(148, 163, 184, 0.14);
    color: var(--text-main);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
}

.hero-quick-tag:hover {
    background-color: rgba(224, 83, 60, 0.1);
    color: var(--primary);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    margin-top: 34px;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 34px;
    text-align: center;
}

.hero-stat-item + .hero-stat-item {
    border-left: 1px solid rgba(26, 32, 44, 0.12);
}

.hero-stat-item strong {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.hero-stat-item span {
    margin-top: 5px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

/* About Page */
.about-hero-section {
    position: relative;
    padding: 88px 0 74px;
    background:
        linear-gradient(135deg, rgba(224, 83, 60, 0.045) 0%, rgba(220, 161, 52, 0.025) 38%, rgba(79, 93, 68, 0.03) 100%),
        var(--bg-warm);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(79, 93, 68, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(224, 83, 60, 0.025) 1px, transparent 1px);
    background-size: 52px 52px;
    opacity: 0.5;
    pointer-events: none;
}

.about-hero-section .container {
    position: relative;
    z-index: 1;
}

.about-hero-section h1 {
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.about-hero-description {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    color: #445064;
    font-size: 1.08rem;
    line-height: 1.8;
}

.about-story-section {
    background: #F8FAFC;
}

.about-visual-frame {
    position: relative;
    min-height: 560px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    background:
        linear-gradient(160deg, rgba(17, 24, 39, 0.24), rgba(17, 24, 39, 0.76)),
        radial-gradient(circle at 20% 20%, rgba(224, 83, 60, 0.32), transparent 34%),
        radial-gradient(circle at 80% 18%, rgba(220, 161, 52, 0.22), transparent 28%),
        linear-gradient(135deg, rgba(79, 93, 68, 0.9), rgba(26, 32, 44, 0.96));
}

.about-visual-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.1) 0%, transparent 34%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 68px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0, rgba(255, 255, 255, 0.045) 1px, transparent 1px, transparent 68px);
}

.about-visual-overlay {
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    pointer-events: none;
}

.about-visual-badge {
    position: absolute;
    top: 28px;
    left: 28px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    backdrop-filter: blur(8px);
}

.about-visual-content {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 118px;
    z-index: 2;
    color: white;
}

.about-visual-kicker {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.78);
}

.about-visual-content h2 {
    color: white;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    max-width: 420px;
    margin-bottom: 16px;
}

.about-visual-content p {
    max-width: 470px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

.about-visual-card {
    position: absolute;
    z-index: 2;
    max-width: 220px;
    padding: 16px 18px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    color: white;
}

.about-visual-card strong {
    display: block;
    font-size: 15px;
    margin-bottom: 6px;
}

.about-visual-card span {
    display: block;
    font-size: 12.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
}

.about-visual-card-top {
    right: 28px;
    top: 100px;
}

.about-visual-card-bottom {
    right: 28px;
    bottom: 28px;
}

.about-story-copy h2 {
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.about-story-lead,
.about-story-text {
    color: #445064;
    line-height: 1.9;
}

.about-story-lead {
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.about-story-text {
    margin-bottom: 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.about-stat-card {
    padding: 22px 18px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
}

.about-stat-card strong {
    display: block;
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--text-main);
    margin-bottom: 8px;
}

.about-stat-card span {
    display: block;
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 600;
}

.about-values-section {
    background: white;
}

.about-feature-card {
    height: 100%;
    padding: 28px 24px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.about-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(224, 83, 60, 0.2);
}

.about-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: rgba(224, 83, 60, 0.1);
    color: var(--primary);
    font-size: 20px;
}

.about-feature-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.about-feature-card p {
    margin-bottom: 0;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-cta-section {
    margin-bottom: 80px;
}

@media (max-width: 991.98px) {
    .hero-editorial {
        padding: 88px 0 72px;
    }

    .hero-editorial h1 {
        font-size: 3rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        row-gap: 18px;
    }

    .hero-stat-item {
        min-width: 180px;
        padding: 0 22px;
    }

    .about-visual-frame {
        min-height: 500px;
    }

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

    .footer-cta-section {
        margin-bottom: 64px;
    }
}

@media (max-width: 767.98px) {
    .hero-editorial h1 {
        font-size: 2.45rem;
        line-height: 1.12;
    }

    .hero-description {
        font-size: 1rem !important;
        line-height: 1.65;
    }

    .hero-quick-tags {
        gap: 8px;
    }

    .hero-quick-tags-label {
        width: 100%;
        margin-bottom: 2px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 18px;
        margin-top: 28px;
    }

    .hero-stat-item {
        padding: 0;
    }

    .hero-stat-item + .hero-stat-item {
        border-left: none;
        padding-top: 18px;
        border-top: 1px solid rgba(26, 32, 44, 0.12);
    }

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

    .about-hero-section h1 {
        font-size: 2.3rem;
        line-height: 1.12;
    }

    .about-hero-description {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .about-visual-frame {
        min-height: 480px;
    }

    .about-visual-badge {
        left: 18px;
        right: 18px;
        top: 18px;
        font-size: 12px;
        flex-wrap: wrap;
    }

    .about-visual-content {
        left: 22px;
        right: 22px;
        bottom: 140px;
    }

    .about-visual-content h2 {
        font-size: 1.75rem;
    }

    .about-visual-card {
        left: 22px;
        right: 22px;
        max-width: none;
    }

    .about-visual-card-top {
        top: auto;
        bottom: 88px;
    }

    .about-visual-card-bottom {
        bottom: 18px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-cta-section {
        margin-bottom: 48px;
    }
}

/* Category Cards */
.category-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary);
}

.category-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(224, 83, 60, 0.06);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.category-card:hover .category-icon-wrapper {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.category-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-main);
}

.category-subtitle {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.02em;
    display: block;
    margin-top: 2px;
}

/* Directory Page Split Layout */
.filter-sidebar {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 100px;
}

.filter-group {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.filter-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.filter-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
}

.filter-list-item {
    margin-bottom: 8px;
}

.filter-list-item a {
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
}

.filter-list-item a:hover, .filter-list-item.active a {
    color: var(--primary);
    background: rgba(224, 83, 60, 0.05);
    font-weight: 600;
}

/* Premium Business Card Layout */
.business-card-modern {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.business-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(224, 83, 60, 0.3);
}

.card-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    background-color: var(--border-color);
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.business-card-modern:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.badge-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-main);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.badge-premium {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--text-main);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    box-shadow: none;
}

.card-logo-container {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background: white;
    padding: 4px;
    border: 1px solid var(--border-color);
    position: absolute;
    bottom: -30px;
    left: 20px;
    z-index: 5;
    box-shadow: none;
}

.card-logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.card-content-modern {
    padding: 45px 24px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content-modern h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.card-content-modern p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.card-meta-list li {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.card-meta-list li i {
    width: 20px;
    color: var(--primary);
}

.card-actions-wrapper {
    margin-top: auto;
    display: flex;
    gap: 8px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.card-actions-wrapper .btn {
    flex: 1;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border: none;
}
.btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-2px);
}

.btn-call {
    background-color: #F0EDE6;
    color: var(--text-main);
    border: none;
}
.btn-call:hover {
    background-color: var(--border-color);
    transform: translateY(-2px);
}

/* ====== Directory Horizontal List Layout ====== */
.directory-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.directory-list-item {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.directory-list-item:hover {
    border-color: rgba(224, 83, 60, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.directory-item-logo {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: #F8FAFC;
}

.directory-item-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.directory-item-info {
    flex: 1;
    min-width: 0;
}

.directory-item-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.directory-item-header h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.directory-item-header h3 a {
    color: var(--text-main);
    transition: color 0.2s ease;
}

.directory-item-header h3 a:hover {
    color: var(--primary);
}

.badge-premium-inline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    color: #92400E;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid #FDE68A;
    white-space: nowrap;
}

.directory-item-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.directory-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

.directory-item-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.directory-item-meta i {
    color: var(--primary);
    font-size: 12px;
}

.directory-item-actions {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 160px;
}

.btn-call-premium {
    background-color: #1E3A5F;
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-display);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-call-premium:hover {
    background-color: #152C4A;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.btn-whatsapp-premium {
    background-color: #128C7E;
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-display);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-whatsapp-premium:hover {
    background-color: #0D6B5E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(18, 140, 126, 0.3);
}

/* Detail Page Custom Layout (esnaf.php) */
.detail-cover-hero {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.detail-cover-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(44, 37, 32, 0.1), rgba(44, 37, 32, 0.7));
}

.detail-profile-box {
    margin-top: -120px;
    position: relative;
    z-index: 10;
}

.detail-profile-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-medium);
}

.detail-logo {
    width: 110px;
    height: 110px;
    border-radius: var(--radius-sm);
    background: white;
    border: 1px solid var(--border-color);
    padding: 6px;
    box-shadow: var(--shadow-soft);
    object-fit: contain;
}

.sidebar-widget-modern {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-soft);
}

.sidebar-widget-modern h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

/* Page Headers (Hakkimizda, Iletisim) */
.page-header-modern {
    padding: 60px 0;
    background: rgba(79, 93, 68, 0.03);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 50px;
}

.page-header-modern h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

/* Active Filter Badges */
.active-filters-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.filter-badge {
    background-color: var(--primary);
    color: white;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-badge a {
    color: white;
    font-weight: bold;
    font-size: 11px;
    opacity: 0.8;
}
.filter-badge a:hover {
    opacity: 1;
}

.clear-filters-btn {
    background-color: #F0EDE6;
    color: var(--text-main);
    font-size: 13px;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
}
.clear-filters-btn:hover {
    background-color: var(--border-color);
    color: var(--text-main);
}

/* Premium Footer CTA */
.footer-cta-section {
    padding: 60px 0 0;
    position: relative;
    z-index: 10;
}

.cta-wrapper {
    background: var(--secondary);
    border-radius: var(--radius-lg);
    padding: 60px 50px;
    box-shadow: 0 20px 40px rgba(79, 93, 68, 0.2);
}

.cta-bg-shape {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(224, 83, 60, 0.4) 0%, transparent 60%);
    border-radius: 50%;
    opacity: 0.5;
}

/* Corporate Footer */
.corporate-footer {
    background-color: #11100F;
    padding-top: 60px;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    margin-top: 0;
}

.corporate-footer.no-cta {
    padding-top: 60px;
}

.corporate-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.footer-main-row {
    padding-bottom: 60px;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-widget-title {
    font-family: var(--font-display);
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-nav a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 15px;
}

.footer-contact-info i {
    color: var(--primary);
    margin-top: 4px;
    margin-right: 12px;
    font-size: 16px;
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: var(--primary);
}

.footer-bottom {
    background-color: #0A0909;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-text {
    font-size: 14px;
}

.footer-legal-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media (min-width: 768px) {
    .footer-legal-nav {
        justify-content: flex-end;
    }
}

.footer-legal-nav a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal-nav a:hover {
    color: white;
}

/* Mobile Responsiveness for CTA & Footer */
@media (max-width: 768px) {
    .cta-wrapper {
        padding: 35px 24px;
        text-align: center;
    }
    .corporate-footer {
        padding-top: 50px;
    }
    .corporate-footer.no-cta {
        padding-top: 50px;
    }
}

/* Mobile Responsiveness for Directory List */
@media (max-width: 992px) {
    .directory-list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .directory-item-logo {
        width: 56px;
        height: 56px;
    }
    .directory-item-actions {
        flex-direction: row;
        width: 100%;
        min-width: 0;
    }
    .directory-item-actions .btn {
        flex: 1;
    }
    .directory-item-meta {
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .directory-list-item {
        padding: 16px;
    }
    .directory-item-header h3 {
        font-size: 16px;
    }
    .directory-item-desc {
        -webkit-line-clamp: 1;
    }
    .category-card {
        padding: 20px 12px;
    }
    .category-card h4 {
        font-size: 14px;
    }
}

/* Service Marketing Custom Styles */
.transition-hover {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.transition-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px -8px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(224, 83, 60, 0.25) !important;
}

.hero-description-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(224, 83, 60, 0.07);
    color: var(--primary);
    border: 1px solid rgba(224, 83, 60, 0.15);
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 30px;
    letter-spacing: 0.2px;
    font-family: var(--font-display);
    transition: all 0.2s ease;
    text-decoration: none;
}

.service-badge:hover {
    background: var(--primary);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(224, 83, 60, 0.2);
}

/* Navbar Dropdown Styles */
.dropdown-menu {
    border-radius: var(--radius-sm) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
    padding: 8px 0;
    margin-top: 10px !important;
}
.dropdown-item {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-main);
    padding: 8px 20px;
    transition: all 0.2s ease;
}
.dropdown-item:hover {
    background-color: rgba(224, 83, 60, 0.05);
    color: var(--primary) !important;
    padding-left: 24px;
}


