@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   Root Variables
   ========================================================================== */
:root {
    --primary-color: #44b8cc;
    --secondary-color: #102044;

    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Inter', sans-serif;

    --text-color: #333333;
    --bg-color: #ffffff;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
body {
    background-color: var(--bg-color);
    font-family: var(--font-primary);
    color: var(--text-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
}

/* ==========================================================================
   HOMEPAGE TEMPLATES UI CSS
   ========================================================================== */
body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.absolute-top {
    position: absolute;
    top: 0;
}

.z-3 {
    z-index: 3;
}

.z-2 {
    z-index: 2;
}

.z-1 {
    z-index: 1;
}

.z-0 {
    z-index: 0;
}

.min-vh-75 {
    min-height: 75vh;
}

.blur-9xl {
    filter: blur(100px);
}

.shadow-primary {
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.25);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hover-white {
    transition: color 0.3s ease;
}

.hover-white:hover {
    color: #ffffff !important;
}

.form-control:focus {
    box-shadow: none !important;
}

.placeholder-white-50::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    filter: brightness(0.9);
}

/* Layout V1 */
.layout-v1 .glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

.layout-v1 .icon-box {
    transition: transform 0.3s ease;
}

.layout-v1 .glass-card:hover .icon-box {
    transform: scale(1.1);
}

/* Layout V2 */
.layout-v2 {
    background-color: #080b12;
}

.layout-v2 .text-gradient-primary {
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.layout-v2 .glow-text {
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.layout-v2 .neon-border {
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.layout-v2 .hover-glow {
    transition: all 0.3s ease;
}

.layout-v2 .hover-glow:hover {
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5) !important;
    transform: translateY(-5px);
}

/* Layout V3 */
.layout-v3 {
    background-color: #060c18;
}

.layout-v3 .grid-bg {
    background-size: 40px 40px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
}

.layout-v3 .flash-anim {
    animation: flash 2s infinite;
}

@keyframes flash {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.layout-v3 .pulse-glow {
    animation: pulse-glow 4s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% {
        filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
    }

    100% {
        filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.6));
    }
}

.layout-v3 .floating-city {
    background: rgba(10, 15, 30, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

.layout-v3 .floating-city:hover {
    transform: scale(1.1) translateY(-10px);
    z-index: 15;
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3) !important;
    border-color: #3b82f6 !important;
}

.card-istanbul {
    animation: float-1 6s ease-in-out infinite;
}

.card-hannover {
    animation: float-2 7s ease-in-out infinite;
}

.card-dubai {
    animation: float-3 8s ease-in-out infinite;
}

.card-shanghai {
    animation: float-4 5s ease-in-out infinite;
}

@keyframes float-1 {

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

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

@keyframes float-2 {

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

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

@keyframes float-3 {

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

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

@keyframes float-4 {

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

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


/* ==========================================================================
   HOMEPAGE MAP & HERO STYLES
   ========================================================================== */
.jvm-zoom-btn {
    display: none !important;
}

.jvm-container svg {
    position: relative !important;
    z-index: 1 !important;
}

.jvm-tooltip {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.fuar-custom-tooltip {
    position: absolute;
    background-color: #ffffff;
    color: #333;
    font-family: 'Inter', sans-serif;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    z-index: 999999;
    display: none;
}

.jvm-marker {
    transition: all 0.3s ease;
    pointer-events: none !important;
}

.jvm-marker:hover {
    transform: scale(1.2);
}

.jvm-marker-ripple {
    fill: none;
    stroke-width: 0.5px;
    transform-box: fill-box;
    transform-origin: center;
    animation: ringRipple 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    pointer-events: none;
}

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

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

/* Yeni SÃƒÂ¼slemeler */
.bg-dot-pattern {
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.premium-badge {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.02) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #2563eb;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
    font-weight: 600 !important;
    letter-spacing: 0.5px;
}

.floating-glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 1.25rem;
    position: absolute;
    z-index: 5;
    animation: float 6s ease-in-out infinite;
}

.card-top-right {
    top: 8%;
    right: -5%;
    animation-delay: 0s;
}

.card-bottom-left {
    bottom: 15%;
    left: 5%;
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

.jvm-container {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.06));
}

.navbar-nav .nav-link {
    font-size: 15px;
}

.nav-item .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.nav-item .nav-link {
    position: relative;
    padding-bottom: 10px !important;
}

.mockup-badge {
    background-color: #f0f4ff;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 14px;
}

.mockup-title {
    color: var(--secondary-color);
    letter-spacing: -1px;
    font-size: 3.5rem;
}

.mockup-search {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    padding: 8px !important;
}

.mockup-btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.mockup-btn-secondary {
    background-color: var(--secondary-color);
    color: #ffffff !important;
    border: 1px solid var(--secondary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.mockup-btn-secondary:hover {
    background-color: #1e3a8a !important;
    border-color: #1e3a8a !important;
}

/* ==========================================================================
   POPULAR SECTORS SLIDER SECTION
   ========================================================================== */
.sectors-section {
    background-color: #ffffff;
}

.container-custom {
    padding-left: 150px;
    padding-right: 150px;
}

.sectors-slider-wrapper {
    overflow: visible;
    padding: 20px 0;
}

.sectors-slider-container {
    overflow: hidden;
    margin-right: calc(-50vw + 50%);
    padding: 10px 0;
    /* GÃƒÂ¶lgelerin kesilmemesi iÃƒÂ§in ufak boÃ…Å¸luk */
}

.sectors-slider {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    padding-right: calc(50vw - 50% + 24px);
}

.slider-card {
    flex: 0 0 320px;
    /* Fixed width to ensure half-cut visibility */
    height: 320px;
    /* Increased height for the new layout */
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.slider-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

.sector-card-img {
    height: 180px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.sector-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.sector-card-title {
    background: transparent !important;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    line-height: 1.4;
}

.sector-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.slider-card:hover .sector-card-link {
    color: var(--primary-color, #0ea5e9);
}

.slider-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    color: #333;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.prev-btn {
    left: -24px;
}

.next-btn {
    right: 24px;
}

/* Pull it slightly inside the bleed area */

/* Custom Scrollbar */
.custom-scrollbar-track {
    background-color: #f1f5f9;
    height: 4px;
    border-radius: 4px;
    position: relative;
    margin-top: 40px;
    width: calc(100% - 150px);
    /* Don't bleed the scrollbar */
    overflow: hidden;
}

.custom-scrollbar-thumb {
    background-color: var(--secondary-color);
    height: 100%;
    width: 20%;
    /* Will be dynamically updated by JS */
    border-radius: 4px;
    position: absolute;
    left: 0;
    top: 0;
    transition: transform 0.1s linear;
    cursor: grab;
}

.custom-scrollbar-thumb:active {
    cursor: grabbing;
}

@media (max-width: 1200px) {
    .container-custom {
        padding-left: 40px;
        padding-right: 40px;
    }

    .custom-scrollbar-track {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .container-custom {
        padding-left: 20px;
        padding-right: 20px;
    }

    .slider-card {
        flex: 0 0 280px;
        height: 320px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .container-custom {
        padding-left: 15px;
        padding-right: 15px;
    }

    .slider-card {
        flex: 0 0 85vw;
        height: 320px;
    }
}

/* ==========================================================================
   FEATURED FAIRS SECTION
   ========================================================================== */
.featured-fairs-section {
    background-color: #f8fafc;
}

.fuar-card-new {
    background: #f4f7f9;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    color: #4b5563;
}

.fuar-card-new:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.fuar-card-cover {
    height: 170px;
    background-color: #fff;
    position: relative;
    border-bottom: 2px solid #e2e8f0;
}

.fuar-card-cover img.cover-img {
    width: 100%;
    height: 100%;
}

.fuar-freq-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 20px;
    backdrop-filter: blur(2px);
}

.fuar-flag {
    position: absolute;
    bottom: -15px;
    left: 15px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    padding: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.fuar-flag img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.fuar-card-body {
    padding: 25px 15px 20px 15px;
    background: #f4f7f9;
}

.fuar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2b3445;
    margin-bottom: 6px;
}

.fuar-desc {
    font-size: 0.8rem;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fuar-date {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0ea5e9;
}

.fuar-loc,
.fuar-cat {
    font-size: 0.8rem;
}

.fuar-loc i,
.fuar-cat i,
.fuar-date i {
    margin-right: 4px;
}

/* ==========================================================================
   MODERN FAIR CARDS (Moved from anasayfa.php)
   ========================================================================== */
.fuar-card-modern {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px;
    background: #fff;
}

.fuar-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.fuar-modern-top {
    height: 120px;
    border-radius: 16px 16px 0 0;
    background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 15px 15px;
}

.fuar-modern-logo {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.fuar-modern-badge {
    font-size: 0.7rem;
    padding: 6px 12px;
    border-radius: 20px;
    background: #fff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.fuar-modern-title {
    font-size: 1.05rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em;
}

.fuar-modern-desc {
    font-size: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fuar-cat-text {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Fuar SektÃ¶r Etiketi */
.fuar-sektor-label {
    background-color: #f1f3f5;
    color: #495057;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.70rem;
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.fuar-sektor-label:hover {
    background-color: #e2e6ea;
    color: #212529;
}

/* Custom Footer CSS */
.fuar-footer {
    background-color: #111827;
    color: #9ca3af;
}

.fuar-footer h5 {
    color: #f9fafb !important;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #60a5fa;
    padding-left: 5px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #374151;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.social-btn:hover {
    background-color: #3b82f6;
    color: #fff;
    transform: translateY(-3px);
}

.footer-newsletter input {
    padding-right: 110px;
    height: 48px;
}

.footer-newsletter input:focus {
    box-shadow: none;
    border-color: #3b82f6;
}

.footer-newsletter button {
    height: 48px;
    padding-left: 20px;
    padding-right: 20px;
}

/* Navigation Dropdown Customizations */
.custom-nav-dropdown .active-dropdown-link {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--primary-color) !important;
}

.custom-dropdown-menu {
    border-radius: 12px !important;
    padding: 15px 0 !important;
    min-width: 320px;
    margin-top: 15px !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
}

.custom-dropdown-menu .dropdown-item {
    padding: 12px 24px;
    color: #4b5563;
    font-size: 0.95rem;
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: normal;
    line-height: 1.4;
}

.custom-dropdown-menu .dropdown-item:hover {
    background-color: #f3f4f6;
    color: #111827;
}

.custom-dropdown-menu .dropdown-divider {
    margin: 8px 0;
    border-top: 1px solid #e5e7eb;
}

@media (max-width: 991.98px) {
    .custom-dropdown-menu {
        border: none !important;
        box-shadow: none !important;
        padding-left: 1rem !important;
        min-width: auto;
        background-color: transparent !important;
        margin-top: 0 !important;
    }

    .custom-dropdown-menu .dropdown-item {
        padding: 8px 16px;
    }
}

/* Dropdown Hover and Font Size Fixes */
@media (min-width: 992px) {
    .custom-nav-dropdown .custom-dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s ease;
        transform: translateY(10px);
        pointer-events: none;
    }

    .custom-nav-dropdown:hover .custom-dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}

.custom-dropdown-menu .dropdown-item {
    color: #333;
    font-size: 0.88rem;
    font-weight: 500;
}

/* Fix Dropdown Hover Gap */
.custom-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

/* Responsive Container Padding */
@media (min-width: 1400px) {
    .custom-container-px {
        padding-left: 150px !important;
        padding-right: 150px !important;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .custom-container-px {
        padding-left: 80px !important;
        padding-right: 80px !important;
    }
}

@media (max-width: 1199.98px) {
    .custom-container-px {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}


/* Stats Section Margin */
.custom-stats-margin {
    z-index: 10;
    margin-top: -100px;
}

@media (max-width: 991.98px) {
    .custom-stats-margin {
        margin-top: -50px;
    }
}

@media (max-width: 767.98px) {
    .custom-stats-margin {
        margin-top: -20px;
    }
}

/* Custom Breadcrumb Section */
.custom-breadcrumb-section {
    padding-top: 40px;
    padding-bottom: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 991.98px) {
    .custom-breadcrumb-section {
        padding-top: 45px;
        padding-bottom: 45px;
    }
}

@media (max-width: 767.98px) {
    .custom-breadcrumb-section {
        padding-top: 35px;
        padding-bottom: 35px;
    }
}


/* Breadcrumb Updates */
.custom-breadcrumb-section {
    background-image: url('../fuar_bg.png');
    background-size: cover;
    background-position: center;
}

.custom-breadcrumb-overlay {
    background: rgba(16, 33, 66, 0.75);
}

.custom-breadcrumb-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.6) 50%, rgba(13, 27, 42, 0) 100%);
    z-index: 1;
}

.custom-breadcrumb-section .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.custom-breadcrumb-section .breadcrumb-item a {
    color: #ffffff;
    font-size: 14px;
    opacity: 0.9;
}

.custom-breadcrumb-section .breadcrumb-item a:hover {
    opacity: 1;
    color: #ffffff;
}

.custom-breadcrumb-section .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}



.country-card-modern {
    background: #fff;
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    border: 1px solid transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 100%;
}

.country-card-modern:hover {
    background: #fcfdfe;
    /* Very subtle tint */
    border-color: rgba(68, 184, 204, 0.3);
    /* Subtle primary border */
    box-shadow: 0 8px 24px rgba(68, 184, 204, 0.08);
}

.country-card-modern .flag-wrapper {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f8f9fa;
    border: 1px solid #f1f1f1;
}

.country-card-modern .country-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2b3445;
    margin-bottom: 14px;
    line-height: 1.3;
}

.country-card-modern .fuar-badge {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 4px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}


.country-card-modern {
    background: #fff;
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    height: 100%;
}

.country-card-modern:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.country-card-modern .flag-wrapper {
    font-size: 3rem;
    margin-bottom: 12px;
    display: inline-block;
    border-radius: 4px;
    overflow: hidden;
}

.country-card-modern .country-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.4;
}


/* ==========================================================================
   FUAR LISTESI SAYFASI (fuar-list-wrapper)
   ========================================================================== */
.fuar-list-wrapper {
    background-color: #f8fafc !important;
}

/* Header Area */
.fuar-list-wrapper .fuar-view-switcher {
    display: flex;
    gap: 10px;
    background: #fff;
    padding: 5px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.fuar-list-wrapper .btn-view {
    background: transparent;
    border: none;
    color: #64748b;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.fuar-list-wrapper .btn-view.active {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
}

/* Sidebar Area */
.fuar-list-wrapper .fuar-sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    margin-bottom: 24px;
}

.fuar-list-wrapper .fuar-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.fuar-list-wrapper .fuar-sidebar-header h5 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1e293b;
}

.fuar-list-wrapper .fuar-sidebar-header .btn-clear {
    color: #64748b;
    font-size: 13px;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
}

.fuar-list-wrapper .fuar-sidebar-header .btn-clear:hover {
    color: #ef4444;
}

/* Form Elements in Sidebar */
.fuar-list-wrapper .fuar-form-group {
    margin-bottom: 20px;
}

.fuar-list-wrapper .fuar-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
    display: block;
}

.fuar-list-wrapper .fuar-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    color: #1e293b;
    background-color: #fff;
    transition: border-color 0.3s;
}

.fuar-list-wrapper .fuar-select {
    width: 100%;
    padding: 10px 36px 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13px;
    color: #64748b;
    background-color: #fff;
    transition: border-color 0.3s;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
}

.fuar-list-wrapper .fuar-input:focus,
.fuar-list-wrapper .fuar-select:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.fuar-list-wrapper .fuar-input::placeholder {
    font-size: 12.5px;
    color: #94a3b8;
}

@media (min-width: 992px) {
    .fuar-list-wrapper #filterSidebar.collapse:not(.show) {
        display: block;
    }
}

.fuar-list-wrapper .fuar-search-wrapper {
    position: relative;
    margin-bottom: 24px;
}

.fuar-list-wrapper .fuar-search-wrapper .mdi-magnify {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 18px;
}

.fuar-list-wrapper .fuar-search-wrapper .fuar-input {
    padding-left: 38px;
}

/* Dates */
.fuar-list-wrapper .fuar-date-row {
    display: flex;
    gap: 10px;
}

.fuar-list-wrapper .fuar-date-col {
    flex: 1;
    position: relative;
}

.fuar-list-wrapper .fuar-date-col .mdi-calendar-blank-outline {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
    pointer-events: none;
    z-index: 2;
}

.fuar-list-wrapper .fuar-date-col .fuar-input {
    padding-right: 32px;
}

/* Card Hover Effect */
.fuar-card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.fuar-card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 0 1.5px var(--primary-color), 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Action Buttons */
.fuar-list-wrapper .btn-fuar-filter {
    width: 100%;
    background-color: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    transition: background-color 0.3s;
}

.fuar-list-wrapper .btn-fuar-filter:hover {
    background-color: #0b5ed7;
}

.fuar-list-wrapper .btn-fuar-clear-all {
    width: 100%;
    background-color: #fff;
    color: #475569;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.fuar-list-wrapper .btn-fuar-clear-all:hover {
    background-color: #f1f5f9;
    color: #1e293b;
}

/* Promoter Banner */
.fuar-list-wrapper .fuar-promoter-banner {
    background: #eff6ff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #bfdbfe;
    position: relative;
    overflow: hidden;
}

.fuar-list-wrapper .fuar-promoter-icon {
    width: 40px;
    height: 40px;
    background: #dbeafe;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
}

.fuar-list-wrapper .fuar-promoter-banner h6 {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.fuar-list-wrapper .fuar-promoter-banner p {
    font-size: 13px;
    color: #475569;
    margin-bottom: 16px;
    line-height: 1.5;
}

.fuar-list-wrapper .fuar-promoter-banner a {
    color: #2563eb;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.fuar-list-wrapper .fuar-promoter-banner a:hover {
    text-decoration: underline;
}

/* Main Grid Area */
.fuar-list-wrapper .fuar-main-content {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e2e8f0;
}

.fuar-list-wrapper .fuar-top-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.fuar-list-wrapper .fuar-category-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.fuar-list-wrapper .fuar-cat-btn {
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.fuar-list-wrapper .fuar-cat-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.fuar-list-wrapper .fuar-cat-btn.active {
    background: var(--primary-color, #0d6efd);
    color: #fff;
    border-color: var(--primary-color, #0d6efd);
}

.fuar-list-wrapper .fuar-cat-btn i.star-icon {
    color: #f59e0b;
}

.fuar-list-wrapper .fuar-cat-btn i.calendar-icon {
    color: #3b82f6;
}

.fuar-list-wrapper .fuar-cat-btn i.globe-icon {
    color: #6366f1;
}

.fuar-list-wrapper .fuar-cat-btn img.flag-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    object-fit: cover;
}

.fuar-list-wrapper .fuar-sort-dropdown {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: #475569;
    font-weight: 500;
    outline: none;
    min-width: 200px;
}

.fuar-list-wrapper .fuar-results-count {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
}

/* Fair Card */
.fuar-list-wrapper .fuar-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fuar-list-wrapper .fuar-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.fuar-list-wrapper .fuar-card-img-wrap {
    height: 160px;
    position: relative;
    background: #1e293b;
}

.fuar-list-wrapper .fuar-card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.fuar-list-wrapper .fuar-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.fuar-list-wrapper .fuar-card-badge.featured {
    background: #fef3c7;
    color: #d97706;
}

.fuar-list-wrapper .fuar-card-badge.upcoming {
    background: #dcfce7;
    color: #15803d;
}

.fuar-list-wrapper .fuar-card-badge.international {
    background: #e0e7ff;
    color: #4338ca;
}

.fuar-list-wrapper .fuar-card-badge.domestic {
    background: #fee2e2;
    color: #b91c1c;
}

.fuar-list-wrapper .fuar-card-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fuar-list-wrapper .fuar-card-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.fuar-list-wrapper .fuar-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fuar-list-wrapper .fuar-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.fuar-list-wrapper .fuar-card-category {
    font-size: 13px;
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 16px;
}

.fuar-list-wrapper .fuar-card-info {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #475569;
}

.fuar-list-wrapper .fuar-card-info i {
    color: #94a3b8;
    font-size: 16px;
}

.fuar-list-wrapper .fuar-card-footer {
    padding: 16px 20px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fuar-list-wrapper .fuar-attendees {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fuar-list-wrapper .fuar-avatar-group {
    display: flex;
}

.fuar-list-wrapper .fuar-avatar-group img {
    width: 24px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
    object-fit: cover;
}

.fuar-list-wrapper .fuar-avatar-group img:first-child {
    margin-left: 0;
}

.fuar-list-wrapper .fuar-attendees-count {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.fuar-list-wrapper .fuar-btn-go {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    text-decoration: none;
    transition: all 0.3s;
}

.fuar-list-wrapper .fuar-btn-go:hover {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

/* ==========================================================================
   BLOG PAGE REDESIGN
   ========================================================================== */

/* Blog Cards */
.fuar-blog-card {
    background-color: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    border: 1px solid transparent !important;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fuar-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 0 1.5px var(--primary-color), 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Blog Image & Hover Scale */
.fuar-blog-img-wrap {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.fuar-blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fuar-blog-card:hover .fuar-blog-img-wrap img {
    transform: scale(1.08);
}

/* Floating Date Badge */
.fuar-blog-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Blog Content */
.fuar-blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fuar-blog-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s;
}

.fuar-blog-card:hover .fuar-blog-title {
    color: var(--primary-color);
}

.fuar-blog-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.fuar-blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.fuar-blog-views {
    font-size: 0.85rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 5px;
}

.fuar-blog-readmore {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.fuar-blog-card:hover .fuar-blog-readmore {
    gap: 8px;
}

/* Blog Sidebar Widgets */
.fuar-sidebar-widget {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    margin-bottom: 1.5rem;
}

.fuar-sidebar-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

/* Sidebar Search */
.fuar-sidebar-search {
    position: relative;
}

.fuar-sidebar-search input {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 15px 12px 45px;
    width: 100%;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.fuar-sidebar-search input:focus {
    outline: none;
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.fuar-sidebar-search i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.95rem;
}

/* Sidebar Categories */
.fuar-cat-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border-radius: 8px;
    color: #475569;
    background: #f8fafc;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    text-decoration: none;
}

.fuar-cat-link i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.fuar-cat-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateX(5px);
}

.fuar-cat-link:hover i {
    color: #fff;
    transform: translateX(3px);
}

/* Sidebar Recent Posts */
.fuar-recent-post {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.fuar-recent-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.fuar-recent-img {
    width: 75px;
    height: 75px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.fuar-recent-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.fuar-recent-post:hover .fuar-recent-img img {
    transform: scale(1.1);
}

.fuar-recent-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 6px;
}

.fuar-recent-content h6 a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s;
}

.fuar-recent-post:hover .fuar-recent-content h6 a {
    color: var(--primary-color);
}

.fuar-recent-date {
    font-size: 0.8rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Blog Detay Sosyal Paylasim Alani */
.social-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-area h6 {
    margin: 0;
    font-weight: 600;
    font-size: 16px;
}

.social-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
}

.social-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #495057;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-list li a:hover {
    background-color: var(--primary-color, #07a1e2);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Blog Detay Onceki / Sonraki Butonlari */
.border-top-light {
    border-top: 1px solid #eaeaea;
}

.hover-shadow-1 {
    transition: all 0.3s ease;
    background: #fff;
    border: 1px solid #eaeaea !important;
    text-decoration: none;
}

.hover-shadow-1:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
    border-color: transparent !important;
}

.text-light-1 {
    color: #6c757d !important;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.text-17 {
    font-size: 17px;
    color: #110f0f;
    margin-top: 5px;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.y-gap-30 {
    margin-top: -15px;
    margin-bottom: -15px;
}

.y-gap-30>* {
    padding-top: 15px;
    padding-bottom: 15px;
}

/* Spacing Utilities for Blog Detay */
.mt-40 {
    margin-top: 40px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.blog-content-text p {
    font-family: inherit !important;
}

/* Premium Contact Page (Old, can be kept) */
.fuar-contact-premium {
    background-color: #f8fafc;
}

.fuar-contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.fuar-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d6efd 0%, #3b82f6 100%);
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease;
}

.fuar-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.fuar-contact-card:hover::before {
    opacity: 1;
}

.fuar-cc-icon {
    width: 70px;
    height: 70px;
    background: #f1f5f9;
    color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.fuar-contact-card:hover .fuar-cc-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.fuar-cc-content h5 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.fuar-cc-content p,
.fuar-cc-content a {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 5px;
    display: block;
    text-decoration: none;
    transition: all 0.4s ease;
}

.fuar-contact-card:hover .fuar-cc-content h5,
.fuar-contact-card:hover .fuar-cc-content p,
.fuar-contact-card:hover .fuar-cc-content a {
    color: #fff;
}

.fuar-contact-form-wrap {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.fuar-cf-subtitle {
    color: #0d6efd;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    display: inline-block;
    padding: 6px 12px;
    background: #eff6ff;
    border-radius: 20px;
}

.fuar-input-group {
    position: relative;
    margin-bottom: 5px;
}

.fuar-input-group input,
.fuar-input-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    font-size: 15px;
    color: #1e293b;
    transition: all 0.3s ease;
}

.fuar-input-group input:focus,
.fuar-input-group textarea:focus {
    outline: none;
    border-color: #0d6efd;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.fuar-input-group label {
    position: absolute;
    left: 20px;
    top: 16px;
    color: #94a3b8;
    font-size: 15px;
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
}

.fuar-input-group input:focus~label,
.fuar-input-group input:not(:placeholder-shown)~label,
.fuar-input-group textarea:focus~label,
.fuar-input-group textarea:not(:placeholder-shown)~label {
    top: -10px;
    left: 15px;
    font-size: 12px;
    color: #0d6efd;
    background: #fff;
    padding: 0 6px;
    font-weight: 600;
}

.fuar-submit-btn {
    padding: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.fuar-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.25);
}

.fuar-contact-map-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    min-height: 450px;
}

.fuar-contact-map-wrap iframe {
    flex-basis: auto !important;
    height: 100% !important;
    min-height: 450px;
    border: 0;
}

/* Bento Contact Template */
.fuar-bento-contact {
    background-color: #f4f6f8;
}

.fuar-bento-box {
    background: #fff;
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    overflow: hidden;
}

.fuar-bento-box:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.fuar-bento-map {
    min-height: 400px;
}

.fuar-bento-map iframe {
    flex-basis: auto !important;
    height: 100% !important;
    border: none !important;
    border-radius: 32px;
    filter: saturate(1.2) contrast(1.1);
}

.fuar-bento-gradient-1 {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #bfdbfe;
}

.fuar-bento-gradient-2 {
    background: linear-gradient(135deg, #fdf4ff 0%, #fae8ff 100%);
    border: 1px solid #f5d0fe;
}

.fuar-bento-dark {
    background: #0f172a;
    border: 1px solid #1e293b;
    position: relative;
    z-index: 1;
}

.fuar-bento-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
    z-index: -1;
}

.bento-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #1e293b;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.bento-icon-light {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    backdrop-filter: blur(10px);
}

.bento-link {
    text-decoration: none;
    color: #1e293b;
    transition: color 0.3s;
}

.bento-link:hover {
    color: #3b82f6;
}

.bento-social {
    display: flex;
    gap: 15px;
}

.bento-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s;
}

.bento-social a:hover {
    background: #3b82f6;
    transform: translateY(-3px);
}

.fuar-bento-form .form-control {
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    padding: 1rem 1.25rem;
}

.fuar-bento-form .form-control:focus {
    background: #fff;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.fuar-bento-form .form-floating label {
    padding: 1rem 1.25rem;
    color: #64748b;
}

/* Classic Exact Contact Layout */
.fuar-classic-contact {
    background-color: #fff;
}

.fuar-c-title {
    font-size: 32px;
    color: #111;
}

.fuar-c-input {
    border-radius: 4px;
    border: 1px solid #e5e7eb;
    padding: 10px 15px;
    font-size: 14px;
    box-shadow: none !important;
}

.fuar-c-input:focus {
    border-color: #dc3545;
}

.fuar-c-btn {
    background-color: #e60023;
    border-color: #e60023;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.fuar-c-btn:hover {
    background-color: #cc0020;
    border-color: #cc0020;
}

.fuar-c-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 14px;
    color: #4b5563;
}

.fuar-c-list .c-icon {
    width: 24px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #dc3545;
    color: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.fuar-c-list .c-text {
    line-height: 1.6;
}

.fuar-c-list strong {
    color: #111;
    font-weight: 600;
}

.fuar-c-social {
    display: flex;
    gap: 10px;
}

.fuar-c-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f3f4f6;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
}

.fuar-c-social a:hover {
    background-color: #dc3545;
    color: #fff;
}

.fuar-c-map-fluid {
    width: 100%;
    height: 400px;
}

.fuar-c-map-fluid iframe {
    flex-basis: auto !important;
    height: 100% !important;
    border: none !important;
    filter: grayscale(100%);
}

/* Dashboard Contact Layout */
.fuar-dashboard-contact {
    font-family: var(--font-primary), sans-serif;
}

.bg-contact-icon {
    background-color: #f1f5f9 !important;
    color: var(--secondary-color) !important;
}

.icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.dashboard-input {
    border: 1px solid #dee2e6;
    background-color: transparent;
    font-size: 15px;
    padding: 0.8rem 1.2rem;
    box-shadow: none !important;
    color: #212529;
    font-weight: 500;
}

.dashboard-input:focus {
    border-color: #0d6efd;
    background-color: #fff;
}

.dashboard-input::-webkit-input-placeholder {
    color: #6c757d;
    opacity: 1;
    font-weight: 400;
    font-size: 14px;
}

.dashboard-input::-moz-placeholder {
    color: #6c757d;
    opacity: 1;
    font-weight: 400;
    font-size: 14px;
}

.dashboard-input:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
    font-weight: 400;
    font-size: 14px;
}

.dashboard-input::-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
    font-weight: 400;
    font-size: 14px;
}

.dashboard-input::placeholder {
    color: #6c757d;
    opacity: 1;
    font-weight: 400;
    font-size: 14px;
}

.dashboard-badge-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    font-size: 12px;
}

.dashboard-badge-secondary {
    background-color: #e2e3e5;
    color: #383d41;
    border: 1px solid #d6d8db;
    font-size: 12px;
}

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

.fuar-dashboard-contact h6 {
    font-size: 17px !important;
}

/* ==============================================================
   KURUMSAL SAYFA (CORPORATE PAGE) STYLES
============================================================== */
.kurumsal-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.kurumsal-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    animation: rotateBg 30s linear infinite;
    pointer-events: none;
}

@keyframes rotateBg {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.kurumsal-hero .display-4 {
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.kurumsal-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 1rem;
}

.kurumsal-stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.kurumsal-service-card {
    transition: all 0.4s ease;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

.kurumsal-service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-blue-1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.kurumsal-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

.kurumsal-service-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.kurumsal-service-icon-box {
    width: 65px;
    height: 65px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(53, 84, 209, 0.08);
    /* Primary color opacity */
    color: var(--color-blue-1);
    transition: all 0.4s ease;
}

.kurumsal-service-card:hover .kurumsal-service-icon-box {
    background: var(--color-blue-1);
    color: #fff;
    transform: rotateY(360deg);
}

.kurumsal-list-card {
    transition: all 0.3s ease;
}

.kurumsal-list-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05) !important;
}

.kurumsal-list-item {
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.kurumsal-list-item:hover {
    background-color: rgba(0, 0, 0, 0.02);
    transform: translateX(5px);
}

.kurumsal-mission-card {
    background: linear-gradient(135deg, var(--color-blue-1) 0%, #1e3a8a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.kurumsal-mission-card::after {
    content: '\F0433';
    /* mdi-rocket-launch */
    font-family: "Material Design Icons";
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 150px;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
    transform: rotate(-15deg);
}

.kurumsal-mission-card .kurumsal-list-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* =========================================
   PREMIUM NEWSLETTER MODAL STYLES
   ========================================= */
.bulten-modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    background-color: #fff;
}

.bulten-modal-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #081124 100%);
    color: #fff;
    border-bottom: none;
    padding: 1.5rem 2rem;
    position: relative;
}

.bulten-modal-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, transparent 100%);
    z-index: 10;
}

.bulten-modal-header .modal-title {
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    color: #fff !important;
}

.bulten-modal-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.bulten-modal-header .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.bulten-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.bulten-icon-wrapper i {
    font-size: 1.5rem;
    color: #fff;
}

.bulten-modal-body {
    background-color: #fcfdfd;
}

.bulten-subtitle {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.bulten-form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
    display: block;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.bulten-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.bulten-input-group i {
    position: absolute;
    left: 1rem;
    font-size: 1.25rem;
    color: #94a3b8;
    transition: color 0.3s ease;
    z-index: 5;
}

.bulten-form-control {
    width: 100%;
    padding: 0.9rem 1.2rem 0.9rem 3rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #334155;
    background-color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
}

.bulten-form-control:focus {
    border-color: var(--primary-custom);
    box-shadow: 0 0 0 4px rgba(29, 118, 136, 0.1);
    outline: none;
}

.bulten-form-control:focus+i,
.bulten-input-group:focus-within i {
    color: var(--primary-custom);
}

.bulten-form-control::placeholder {
    color: #cbd5e1;
}

.bulten-submit-btn {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #081124 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(16, 32, 68, 0.2);
}

.bulten-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(16, 32, 68, 0.3);
    color: #fff;
}

.bulten-submit-btn:active {
    transform: translateY(0);
}

/* Custom Sector Card Styles */
.custom-sector-card {
    display: flex;
    flex-direction: column;
    min-height: 480px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    background: #fff;
    text-decoration: none;
}

.custom-sector-card .sector-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.custom-sector-card .sector-card-img {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.custom-sector-card:hover .sector-card-img {
    transform: scale(1.05);
}

.custom-sector-card .sector-fuar-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: #1a65f0;
    color: #fff;
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.custom-sector-card .sector-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.custom-sector-card .sector-label {
    background-color: #eef2f6;
    color: #102044;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    font-weight: 700;
    border-radius: 4px;
}

.custom-sector-card .sector-card-title {
    font-size: 1.25rem;
    line-height: 1.3;
    margin-top: 0.5rem;
    color: #212529;
    font-weight: 700;
}

.custom-sector-card .sector-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6c757d;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.custom-sector-card .fuar-gor-btn {
    border: 1px solid #e5e7eb;
    color: #102044;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-sector-card:hover .fuar-gor-btn {
    background-color: #1a65f0;
    color: #fff;
    border-color: #1a65f0;
}

.custom-sector-card .fuar-gor-btn i {
    transition: color 0.3s ease;
}

.custom-sector-card:hover .fuar-gor-btn i {
    color: #fff !important;
}

/* Extra hover styles moved from anasayfa.php */
.custom-sector-card {
    transition: all 0.3s ease;
}

.custom-sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.custom-sector-card:hover .fuar-gor-btn {
    border-color: #102044 !important;
    background-color: #f8f9fa;
    color: #102044 !important;
}

.custom-sector-card:hover .fuar-gor-btn i {
    color: #102044 !important;
}

.custom-sector-card:hover .sector-card-img {
    transform: scale(1.05);
}

/* Universal Custom Button */
.btn-custom-secondary {
    color: var(--secondary-color) !important;
    background-color: #eef5ff !important;
    border-radius: 8px;
    font-size: 0.95rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.btn-custom-secondary:hover {
    background-color: var(--secondary-color) !important;
    color: #ffffff !important;
    border-color: var(--secondary-color) !important;
}

.btn-custom-secondary:hover i {
    color: #ffffff !important;
}

/* Section Header Styles */
.section-subtitle-populer {
    letter-spacing: 1px;
    font-size: 0.85rem;
    color: #1a65f0 !important;
}

.section-title-populer {
    font-size: 2.2rem;
    color: #102044 !important;
}

/* Sektorler Page Specific Card Adjustments */
.sektorler-page-card {
    min-height: 360px;
}

.sektorler-page-card .sector-img-wrapper {
    height: 180px;
}

/* Custom Offcanvas Navbar Styles */
.custom-hamburger-btn {
    width: 26px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}

.custom-hamburger-btn .hamburger-lines {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}



.custom-hamburger-btn .line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #000000;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.custom-hamburger-btn .line2 {
    width: 60%;
    align-self: flex-start;
}

@media (max-width: 1199px) {
    .custom-offcanvas-menu {
        width: 320px !important;
        border-left: none;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        border-radius: 0;
    }

    .custom-offcanvas-menu .offcanvas-header {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .custom-offcanvas-menu .btn-close {
        font-size: 1.2rem;
        opacity: 0.8;
    }

    .custom-offcanvas-menu .nav-link {
        font-size: 0.95rem;
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .custom-offcanvas-menu .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .custom-offcanvas-menu .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        border-radius: 0;
        padding-left: 2rem;
        background: rgba(0, 0, 0, 0.02);
        margin-top: 0;
    }

    .custom-offcanvas-menu .dropdown-item {
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
        font-size: 1.0rem;
    }
}








@media (min-width: 1200px) {
    .custom-offcanvas-menu.offcanvas {
        position: static !important;
        visibility: visible !important;
        transform: none !important;
        display: flex !important;
        flex-direction: row !important;
        background: transparent !important;
        height: auto !important;
        flex-basis: auto !important;
        flex-grow: 1 !important;
        z-index: auto !important;
    }
}

@media (max-width: 575.98px) {
    #newsletterEmailInput {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
        font-size: 0.9rem;
    }

    #footerNewsletterForm button {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }

    #footerNewsletterForm button {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        font-size: 0.9rem;
    }
}


/* Newsletter Responsive Fixes */
.newsletter-input-pr {
    padding-right: 1.5rem !important;
}

.btn-newsletter-submit {
    position: static;
    width: 100%;
    margin-top: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
}

@media (min-width: 576px) {
    .newsletter-input-pr {
        padding-right: 140px !important;
    }

    .btn-newsletter-submit {
        position: absolute !important;
        top: 0;
        right: 0;
        height: 100%;
        width: auto;
        margin-top: 0;
    }
}



@media (max-width: 575.98px) {
    #newsletterEmailInput {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
        font-size: 0.9rem;
    }

    #footerNewsletterForm button {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
        font-size: 0.95rem;
    }
}

.rounded-pill {
    border-radius: 8px !important;
}

.mockup-btn-primary:hover {
    background-color: var(--secondary-color) !important;
    border: 1px solid var(--secondary-color) !important;
}

/* ==========================================================================
   HOMEPAGE RESPONSIVE UPDATES (Based on Mockup Breakpoints)
   ========================================================================== */

/* Mobile (0 - 575.98px) */
@media (max-width: 575.98px) {

    /* Hero Typography */
    .mockup-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    /* Hero Buttons */
    .hero-actions-wrapper {
        flex-direction: column;
    }

    .hero-actions-wrapper .custom-hero-btn {
        width: 100%;
        margin-bottom: 5px;
    }

    /* Stats Section */
    .stats-row {
        /* Mobile is already 2x2 grid because of col-6 */
    }

    .stat-item {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    .stat-icon-wrapper {
        width: 48px !important;
        height: 48px !important;
        margin-right: 12px;
        margin-bottom: 0 !important;
    }

    .stat-icon-wrapper i {
        font-size: 1.5rem !important;
    }

    .stat-number {
        font-size: 1.2rem !important;
    }

    .stat-label {
        font-size: 0.8rem !important;
    }

    .stat-col {
        border-right: none !important;
    }
}

/* Tablet & Desktop (576px and up) */
@media (min-width: 576px) {

    /* Hero Buttons */
    .hero-actions-wrapper {
        flex-direction: row;
    }

    .hero-actions-wrapper .custom-hero-btn {
        width: auto;
    }

    /* Stats Section */
    .stat-item {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: left;
    }

    .stat-text {
        text-align: left !important;
    }

    .stat-icon-wrapper {
        width: 48px;
        height: 48px;
        margin-bottom: 0 !important;
        margin-right: 15px !important;
    }

    .stat-icon-wrapper i {
        font-size: 1.5rem !important;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-col {
        border-right: 1px solid #e9ecef;
    }

    .stat-col:last-child {
        border-right: none;
    }
}

/* Tablet Specific adjustments if needed (576px - 991.98px) */
@media (min-width: 576px) and (max-width: 991.98px) {
    .mockup-title {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 22px;
    }
}

/* General Typography Overrides */
.mockup-title span {
    color: var(--primary-color) !important;
    background: none !important;
    -webkit-text-fill-color: var(--primary-color) !important;
}


/* ==========================================================================
   CUSTOM COMPONENT SIZING (Buttons & Search)
   ========================================================================== */
.custom-rounded {
    border-radius: 8px !important;
}

.custom-hero-btn {
    padding: 10px 24px;
    font-size: 14px;
}

.custom-search-btn {
    padding: 14px 32px;
    font-size: 15px;
}

.custom-search-input {
    font-size: 15px !important;
}

@media (max-width: 575.98px) {
    .custom-hero-btn {
        padding: 8px 16px;
        font-size: 13px;
        margin-bottom: 8px;
    }

    .custom-search-btn {
        padding: 10px 24px !important;
        font-size: 14px;
    }

    .custom-search-input {
        font-size: 13px !important;
    }

    .custom-search-box {
        margin-bottom: 1.5rem !important;
    }
}


@media (max-width: 575.98px) {
    .hero-section {
        padding-bottom: 0 !important;
    }

    .min-vh-75 {
        min-height: 500px !important;
    }

    .stats-section {
        margin-top: 10px !important;
        padding-top: 0 !important;
    }

    .section-title-populer {
        font-size: 1.5rem !important;
    }

    .section-subtitle-populer {
        font-size: 0.85rem !important;
    }

    .featured-fairs-section .text-muted.fs-6 {
        font-size: 0.9rem !important;
    }
}
/* Tur Paketleri Akordeon Tasarýmý */
#accordionPaketler .accordion-button:not(.collapsed) {
    background-color: #ffffff;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}
#accordionPaketler .accordion-button::after {
    display: none;
}
#accordionPaketler .paket-goster-yazi i {
    transition: transform 0.3s ease;
}
#accordionPaketler .accordion-button:not(.collapsed) .paket-goster-yazi i {
    transform: rotate(180deg);
}
#accordionPaketler .accordion-button:not(.collapsed) .paket-goster-yazi span {
    content: "Detaylarý gizle";
}
#accordionPaketler .accordion-item {
    transition: all 0.2s ease-in-out;
}
#accordionPaketler .accordion-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
}

/* TEK FIYAT MODELI TASARIMI (GELISMIS) */
.tek-fiyat-seyahat-card {
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    padding: 24px;
    background-color: #fff;
    margin-bottom: 2rem;
}
.tek-fiyat-seyahat-card .fuar-seyahat-label {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}
.tek-fiyat-seyahat-card .fuar-seyahat-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}
.tek-fiyat-seyahat-card .fuar-seyahat-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}
.tek-fiyat-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}
.tek-fiyat-section-title i {
    color: #0056b3;
}
.tek-fiyat-section-title.orange-icon i {
    color: var(--primary-color);
}
.seyahat-price-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
}
.seyahat-price-box {
    flex: 1;
    min-width: 200px;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    background: #fafafa;
    transition: all 0.2s ease;
}
.seyahat-price-box:hover {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 4px 12px rgba(68, 184, 204, 0.1);
}
.seyahat-price-box .price-label {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 5px;
    font-weight: 600;
}
.seyahat-price-box .price-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
}
.seyahat-price-note {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
    margin-bottom: 25px;
}
.seyahat-hotel-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f6fbfd;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    margin-bottom: 30px;
}
.seyahat-hotel-card .hotel-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}
.seyahat-hotel-card .hotel-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}
.seyahat-hotel-card .hotel-info .stars {
    color: var(--primary-color);
    font-size: 0.9rem;
}
.seyahat-hotel-card .hotel-info .hotel-location {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 10px;
}
.seyahat-hotel-card .hotel-info .hotel-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}
.tur-programi-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.tur-programi-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f1f1;
}
.tur-programi-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.tur-programi-item .gun-box {
    width: 50px;
    height: 55px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tur-programi-item .gun-box span:first-child {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.8;
}
.tur-programi-item .gun-box span:last-child {
    font-size: 1.2rem;
    font-weight: 800;
}
.tur-programi-item .gun-info h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}
.tur-programi-item .gun-info p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

