/* Admin pages: sortable rows visuals */
.dragging {
    opacity: 0.8;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.sortable-placeholder {
    outline: 2px dashed #ccd4ff;
    background: #f7f8ff;
}

.drag-handle {
    color: #64748b;
}

.drag-handle:hover {
    color: #111827;
}

/* Admin page tabs (Temel/İçerik/SEO/Medya/Dosyalar/SSS) */
.login-form .nav-tabs {
    border-bottom: 1px solid #e5e7eb;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.login-form .nav-tabs .nav-link {
    border: 1px solid transparent;
    color: #4b5563;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    white-space: nowrap;
}

.login-form .nav-tabs .nav-link:hover {
    background: #f9fafb;
}

.login-form .nav-tabs .nav-link.active {
    background: #eef2ff;
    color: #111827;
    border-color: #e5e7eb;
}

.login-form .tab-content {
    margin-top: 12px;
}

.login-form .tab-content .tab-pane {
    background: #ffffff;
}

/* Bootstrap tab-pane visibility fallback */
/* For admin page edit, show all panes stacked */
#pageEditTabs {
    display: none;
}

#pageEditTabsContent>.tab-pane {
    display: block !important;
    opacity: 1 !important;
}

#pageEditTabsContent>.tab-pane+.tab-pane {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

/* Admin stacked blocks */
.admin-block .panel-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.admin-block .panel-card__header {
    background: #f9fafb;
    padding: 10px 14px;
    border-bottom: 1px solid #eef2f7;
}

.admin-block .panel-card__title {
    font-weight: 600;
    color: #111827;
}

.admin-block .panel-card__body {
    padding: 16px;
}

.admin-block+.admin-block {
    margin-top: 16px;
}

/* Single save button container */
.login-form .btn.btn-primary {
    padding-left: 18px;
    padding-right: 18px;
}

/* Fixed save bar */
.admin-savebar {
    position: fixed;
    right: 16px;
    bottom: 16px;
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    padding: 8px 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    backdrop-filter: saturate(180%) blur(6px);
    z-index: 1050;
}

.admin-savebar .btn {
    line-height: 1;
}

.admin-savebar .btn .btn-text {
    display: inline;
    margin-left: 6px;
}

@media (max-width: 576px) {
    .admin-savebar .btn .btn-text {
        display: none;
    }
}

/* Admin FAB */
.admin-fab {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 1050;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #111827;
    color: #fff !important;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(17, 12, 46, 0.22);
}

.admin-fab:hover {
    background: #0b1220;
    color: #fff !important;
}

.admin-fab i {
    color: #fff;
}

.admin-fab__text {
    font-weight: 600;
}

/* Admin settings dashboard cards */
.setting-card {
    text-align: center;
    transition: transform .15s ease, box-shadow .15s ease;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.setting-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(17, 12, 46, .12);
}

.setting-icon-wrap {
    display: grid;
    place-items: center;
    margin-bottom: 8px;
}

.setting-icon {
    font-size: 32px;
    color: var(--clr-primary, #6B4EFF);
}

.setting-title {
    margin: 4px 0 4px;
    font-weight: 600;
}

.setting-desc {
    margin: 0;
    font-size: 14px;
}

/* Alternate settings dashboard style (center-left layout with arrow) */
.setting-card .panel-card__body {
    padding: 18px;
}

.setting-card__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px 14px;
    align-items: center;
}

.setting-icon-ring {
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    background: #F3F0FF;
    color: var(--clr-primary, #6B4EFF);
    display: grid;
    place-items: center;
    font-size: 20px;
}

.setting-arrow {
    color: var(--clr-muted, #6B6E76);
}

.setting-title {
    margin: 0;
}

.setting-desc {
    margin: 0;
    color: var(--clr-muted, #6B6E76);
    font-size: 13px;
}

/* SEO settings table tweaks */
.seo-table .seo-page-badge {
    background: #F3F0FF;
    color: var(--clr-primary, #6B4EFF);
}

.seo-table .seo-title {
    font-weight: 600;
}

.seo-table .seo-desc {
    max-width: 420px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--clr-muted, #6B6E76);
}

.seo-edit-row td {
    background: #FBFAFF;
}

.seo-edit-card {
    border: 1px solid var(--clr-border, #E5E1FA);
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(17, 12, 46, .06);
}

/* Admin Support */
.support-table .avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 9999px;
    background: #F3F0FF;
    color: var(--clr-primary, #6B4EFF);
    display: grid;
    place-items: center;
    font-weight: 600;
}

.support-detail-card {
    margin-top: 8px;
}

.support-thread {
    max-height: 360px;
    overflow: auto;
    padding-right: 4px;
}

.support-msg {
    margin-bottom: 10px;
}

.support-msg__bubble {
    display: inline-block;
    padding: 10px 12px;
    border-radius: 12px;
    background: #F8F6FF;
    border: 1px solid #E5E1FA;
}

.support-msg.admin .support-msg__bubble {
    background: #EEFDF5;
    border-color: #C6F6D5;
}

/* Settings system thumbnails */
.setting-thumb {
    margin-top: 6px;
    border: 1px solid #E5E1FA;
    border-radius: 6px;
    background: #fff;
    padding: 2px;
}

.thumb-logo {
    max-width: 100px;
    max-height: 44px;
}

.thumb-favicon {
    width: 30px;
    height: 30px;
}

/* Footer brand logo */
.footer-brand-wrap {
    display: flex;
    align-items: center;
    padding: 8px 0 16px;
}

.footer-logo {
    max-height: 48px;
}

/* Admin CMS Contact - message detail */
.message-detail {
    border: 1px solid var(--clr-border, #E5E1FA);
    border-radius: 12px;
    padding: 12px;
    background: #FBFAFF;
}

.md-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.md-title {
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.md-meta {
    display: flex;
    gap: 6px;
}

.md-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 10px;
}

.md-field {
    background: #fff;
    border: 1px solid #EDEBFF;
    border-radius: 8px;
    padding: 8px;
}

.md-label {
    font-size: 12px;
    color: var(--clr-muted, #6B6E76);
    display: flex;
    align-items: center;
    gap: 6px;
}

.md-value a {
    text-decoration: none;
}

.md-message__label {
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--clr-text, #131022);
}

.md-message__body {
    background: #fff;
    border: 1px solid #EDEBFF;
    border-radius: 8px;
    padding: 10px;
}

@media (max-width: 991.98px) {
    .md-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Tags Filter */
.blog-tags-filter {
    margin-top: 2rem;
}

.tags-title {
    color: var(--clr-text);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.tag-filter {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: var(--clr-bg);
    color: var(--clr-muted);
    text-decoration: none;
    border-radius: var(--radius-pill);
    border: 2px solid var(--clr-border);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

.tag-filter:hover {
    background: var(--clr-hero-tint);
    border-color: var(--clr-primary);
    color: var(--clr-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-float);
}

.tag-filter.active {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: white;
    box-shadow: var(--shadow-float);
}

.tag-filter.active:hover {
    background: var(--clr-primary-dark);
    border-color: var(--clr-primary-dark);
    color: white;
}

/* Blog Pagination */
.blog-pagination-section {
    padding: 3rem 0;
    background: var(--clr-hero-tint);
}

.blog-pagination .pagination {
    margin-bottom: 0;
}

.blog-pagination .page-link {
    color: var(--clr-muted);
    background: var(--clr-bg);
    border: 2px solid var(--clr-border);
    border-radius: var(--radius-small);
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

.blog-pagination .page-link:hover {
    color: var(--clr-primary);
    background: var(--clr-hero-tint);
    border-color: var(--clr-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-float);
}

.blog-pagination .page-item.active .page-link {
    color: white;
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    box-shadow: var(--shadow-float);
}

.blog-pagination .page-item.active .page-link:hover {
    background: var(--clr-primary-dark);
    border-color: var(--clr-primary-dark);
}

.pagination-info {
    color: var(--clr-muted);
    font-size: 0.875rem;
}

/* Section Headers */
.blog-header {
    padding: 2rem 0;
    background: var(--clr-bg);
    text-align: center;
}

.section-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header .section-title {
    color: var(--clr-text);
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    text-align: center;
    line-height: 1.3;
}

.section-header .article-count {
    color: var(--clr-muted);
    font-size: 0.875rem;
    font-weight: 500;
    display: block;
    margin-top: 0.5rem;
}

/* No Articles Section */
.no-articles {
    padding: 4rem 0;
    background: var(--clr-hero-tint);
}

.no-articles .fa-search {
    color: var(--clr-border);
}

.no-articles h3 {
    color: var(--clr-text);
    font-family: var(--font-serif);
    margin-bottom: 1rem;
}

.no-articles p {
    color: var(--clr-muted);
    margin-bottom: 2rem;
}

/* Featured Article Enhancements */
.blog-featured {
    padding: 3rem 0;
}

.blog-featured:nth-child(even) {
    background: var(--clr-hero-tint);
}

.featured-article {
    background: var(--clr-bg);
    border-radius: var(--radius-large);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.featured-article:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-float);
}

.featured-image img {
    border-radius: var(--radius-small);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.featured-meta {
    color: var(--clr-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.featured-title {
    color: var(--clr-text);
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.featured-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-title a:hover {
    color: var(--clr-primary);
}

.featured-excerpt {
    color: var(--clr-muted);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-primary.btn-pill {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    border-radius: var(--radius-pill);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

.btn-primary.btn-pill:hover {
    background: var(--clr-primary-dark);
    border-color: var(--clr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-float);
}

.btn-outline-danger {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    border-radius: var(--radius-pill);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

/* Responsive Design */
@media (max-width: 768px) {
    .tags-list {
        justify-content: center;
    }

    .tag-filter {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .blog-header {
        padding: 1.5rem 0;
    }

    .section-header .section-title {
        font-size: 1.75rem;
    }

    .featured-title {
        font-size: 1.5rem;
    }

    .featured-excerpt {
        font-size: 1rem;
    }

    .featured-article {
        padding: 1.5rem;
    }

    .blog-pagination .page-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .tags-list {
        gap: 0.5rem;
    }

    .tag-filter {
        font-size: 0.75rem;
        padding: 0.35rem 0.875rem;
    }

    .blog-header {
        padding: 1rem 0;
    }

    .section-header .section-title {
        font-size: 1.5rem;
    }

    .section-header .article-count {
        font-size: 0.8rem;
    }

    .featured-title {
        font-size: 1.25rem;
    }

    .blog-pagination .page-link {
        padding: 0.4rem 0.6rem;
        margin: 0 0.1rem;
    }
}

.author-widget {
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-large);
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-card);
}

.author-widget .widget-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--clr-border);
    padding-bottom: 12px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar i {
    color: var(--clr-primary) !important;
    font-size: 48px !important;
}

.author-details {
    flex: 1;
}

.author-name {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: 4px;
}

.author-bio {
    font-size: 14px;
    color: var(--clr-muted);
    margin: 0;
    line-height: 1.4;
}

/* Related Articles Widget */
.related-articles-widget {
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-large);
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-card);
}

.related-articles-widget .widget-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--clr-border);
    padding-bottom: 12px;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-article {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: var(--clr-hero-tint);
    border-radius: var(--radius-small);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.related-article:hover {
    background: var(--clr-bg);
    border-color: var(--clr-border);
    box-shadow: var(--shadow-float);
    transform: translateY(-2px);
}

.related-article-image {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: var(--radius-small);
    overflow: hidden;
}

.related-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-article:hover .related-article-image img {
    transform: scale(1.05);
}

.related-article-content {
    flex: 1;
    min-width: 0;
}

.related-article-title {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.related-article-title a {
    color: var(--clr-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-article-title a:hover {
    color: var(--clr-primary);
}

.related-article-meta {
    font-size: 12px;
}

.related-article-meta .text-muted {
    color: var(--clr-muted) !important;
}

/* Sidebar Widget General */
.sidebar-widget {
    margin-bottom: 32px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

/* Back to Blog Button */
.sidebar-widget .btn-outline-primary {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
    font-weight: 500;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.sidebar-widget .btn-outline-primary:hover {
    background-color: var(--clr-primary);
    border-color: var(--clr-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-float);
}

/* Responsive Design */
@media (max-width: 991.98px) {

    .author-widget,
    .related-articles-widget {
        margin-bottom: 24px;
        padding: 20px;
    }

    .author-info {
        gap: 12px;
    }

    .author-avatar i {
        font-size: 40px !important;
    }

    .author-name {
        font-size: 16px;
    }

    .related-article {
        padding: 12px;
    }

    .related-article-image {
        width: 70px;
        height: 50px;
    }
}

@media (max-width: 575.98px) {
    .author-info {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .related-article {
        flex-direction: column;
        gap: 12px;
    }

    .related-article-image {
        width: 100%;
        height: 120px;
    }
}

/* Ad
min Back Button - Always Visible */
.admin-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f8f9fa;
    color: #495057 !important;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.admin-back-btn:hover {
    background: #e9ecef;
    border-color: #adb5bd;
    color: #212529 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.admin-back-btn i {
    color: #6c757d;
    font-size: 13px;
}

.admin-back-btn:hover i {
    color: #495057;
}

/* Responsive */
@media (max-width: 768px) {
    .admin-back-btn {
        padding: 8px 12px;
        font-size: 13px;
    }

    .admin-back-btn i {
        font-size: 12px;
    }
}

/* A
dmin Action Buttons */
.admin-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.admin-action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Primary Action (View/Detail) */
.admin-action-btn.btn-outline-primary {
    background: #f8f9ff;
    border-color: #e1e7ff;
    color: #4f46e5 !important;
}

.admin-action-btn.btn-outline-primary:hover {
    background: #eef2ff;
    border-color: #c7d2fe;
    color: #3730a3 !important;
}

/* Success Action (Approve) */
.admin-action-btn.btn-outline-success {
    background: #f0fdf4;
    border-color: #dcfce7;
    color: #16a34a !important;
}

.admin-action-btn.btn-outline-success:hover {
    background: #dcfce7;
    border-color: #bbf7d0;
    color: #15803d !important;
}

/* Danger Action (Cancel/Delete) */
.admin-action-btn.btn-outline-danger {
    background: #fef2f2;
    border-color: #fecaca;
    color: #dc2626 !important;
}

.admin-action-btn.btn-outline-danger:hover {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #b91c1c !important;
}

/* Button Group Spacing */
.btn-group .admin-action-btn+.admin-action-btn {
    margin-left: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .admin-action-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

/* Flight Search Page Styles */
.px_flight-search-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

/* Search Hero Section */
.px_search-hero {
    margin-bottom: 3rem;
}

.px_search-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.px_search-header {
    text-align: center;
    margin-bottom: 2rem;
}

.px_search-title {
    color: #2d3748;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.px_search-subtitle {
    color: #718096;
    font-size: 1.1rem;
    margin: 0;
}

/* Trip Type Selector */
.px_trip-type-selector {
    display: flex;
    gap: 0;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: #f1f5f9;
    border-radius: 15px;
    padding: 0.25rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.px_trip-type-selector .form-check {
    margin: 0;
    flex: 1;
}

.px_trip-type-selector .form-check-input {
    display: none;
}

.px_trip-type-selector .form-check-label {
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    background: transparent;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.px_trip-type-selector .form-check-label:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.px_trip-type-selector .form-check-input:checked+.form-check-label {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
    border-color: #667eea;
}

.px_trip-type-selector .form-check-input:checked+.form-check-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    border-radius: inherit;
    pointer-events: none;
}

.px_trip-type-selector .form-check-label i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.px_trip-type-selector .form-check-input:checked+.form-check-label i {
    transform: scale(1.1);
}

/* Input Groups */
.px_input-group {
    margin-bottom: 1rem;
}

.px_input-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.px_airport-input,
.px_date-picker {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.px_airport-input:focus,
.px_date-picker:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Passenger Section */
.px_passenger-section {
    margin-bottom: 1rem;
}

.px_passenger-counter {
    text-align: center;
    background: #f7fafc;
    border-radius: 12px;
    padding: 1rem;
}

.px_passenger-label {
    font-weight: 600;
    color: #2d3748;
    display: block;
    margin-bottom: 0.5rem;
}

.px_counter-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.px_counter-btn {
    width: 32px;
    height: 32px;
    border: 2px solid #667eea;
    background: white;
    color: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.px_counter-btn:hover {
    background: #667eea;
    color: white;
}

.px_counter-input {
    width: 60px;
    text-align: center;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.25rem;
    font-weight: 600;
}

/* Search Button */
.px_search-button {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 15px;
    padding: 1rem 2rem;
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.px_search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

/* Sample Flights Section */
.px_sample-flights {
    margin-bottom: 3rem;
}

.px_section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.px_section-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.px_section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin: 0;
}

/* Flight Cards */
.px_flight-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 100%;
}

.px_flight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.px_flight-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.px_airline-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.px_airline-logo {
    width: 48px;
    height: 48px;
    background: #667eea;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.px_airline-code {
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.px_airline-name {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
}

.px_flight-number {
    color: #718096;
    font-size: 0.875rem;
}

.px_flight-price {
    text-align: right;
}

.px_price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.px_price-note {
    display: block;
    color: #718096;
    margin-top: 0.25rem;
}

/* Flight Route */
.px_flight-route {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 12px;
    position: relative;
}

.px_route-point {
    text-align: center;
    flex: 1;
}

.px_time {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.px_airport {
    font-size: 1rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.125rem;
}

.px_city {
    font-size: 0.875rem;
    color: #718096;
}

.px_route-line {
    flex: 2;
    text-align: center;
    position: relative;
}

.px_duration {
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 0.5rem;
}

.px_direct-line,
.px_connecting-line {
    height: 2px;
    background: #e2e8f0;
    position: relative;
    margin: 0.5rem 0;
}

.px_direct-line i,
.px_connecting-line i {
    background: white;
    color: #667eea;
    padding: 0 0.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.px_stop-dot {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #ffa500;
    border-radius: 50%;
}

.px_stops-info {
    font-size: 0.75rem;
    color: #718096;
}

/* Flight Details */
.px_flight-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    background: #fafbfc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.px_detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #4a5568;
}

/* Flight Actions */
.px_flight-actions {
    display: flex;
    gap: 0.75rem;
}

.px_book-btn {
    flex: 1;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.px_book-btn:hover {
    background: #5a6fd8;
    color: white;
    transform: translateY(-1px);
}

.px_details-btn {
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: #4a5568;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.px_details-btn:hover {
    border-color: #667eea;
    color: #667eea;
}



/* Responsive Design */
@media (max-width: 768px) {
    .px_search-title {
        font-size: 2rem;
    }

    .px_search-card {
        padding: 1.5rem;
    }

    .px_trip-type-selector {
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .px_trip-type-selector .form-check-label {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .px_flight-route {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem;
    }

    .px_flight-details {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
        text-align: center;
    }

    .px_flight-actions {
        flex-direction: column;
    }

    .px_airline-info {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .px_search-title {
        font-size: 1.75rem;
    }

    .px_section-title {
        font-size: 1.5rem;
    }

    .px_flight-card {
        padding: 1rem;
    }

    .px_passenger-counter {
        padding: 0.75rem;
    }

    .px_trip-type-selector {
        padding: 0.2rem;
        border-radius: 12px;
    }

    .px_trip-type-selector .form-check-label {
        padding: 0.625rem 0.875rem;
        font-size: 0.85rem;
        border-radius: 10px;
    }
}

/* Flight Booking Page Styles */
.px_booking-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.px_page-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.px_back-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.px_back-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white !important;
    transform: translateY(-2px);
}

/* Flight Summary */
.px_flight-summary {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.px_summary-title {
    color: #2d3748;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}

.px_flight-info {
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.px_route-header {
    margin-bottom: 1rem;
}

.px_route-header strong {
    color: #2d3748;
    font-size: 1.1rem;
}

.px_flight-date {
    color: #718096;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.px_airline {
    color: #4a5568;
    margin-bottom: 0.75rem;
}

.px_time-info {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    font-weight: 600;
    color: #2d3748;
}

.px_price-summary {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.px_price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.px_total-price {
    color: #667eea;
    font-size: 1.25rem;
}

.px_total-price small {
    font-size: 0.8rem;
    color: #718096;
    font-weight: normal;
}

/* Booking Form */
.px_booking-form {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.px_form-section {
    margin-bottom: 2.5rem;
}

.px_form-section:last-child {
    margin-bottom: 0;
}

.px_section-title {
    color: #2d3748;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}

.px_passenger-card,
.px_contact-card {
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.px_passenger-title {
    color: #4a5568;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.px_form-label {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.9rem;
}

.px_form-input,
.px_form-select {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.px_form-input:focus,
.px_form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.px_passport-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.px_subsection-title {
    color: #4a5568;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Booking Actions */
.px_booking-actions {
    text-align: center;
    padding: 2rem 0;
}

.px_confirm-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    color: white;
    padding: 1rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    cursor: pointer;
}

.px_confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.px_booking-note {
    color: #718096;
    font-size: 0.9rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .px_flight-summary {
        position: static;
        margin-bottom: 2rem;
    }

    .px_booking-form {
        padding: 1.5rem;
    }

    .px_page-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .px_booking-page {
        padding: 1rem 0;
    }

    .px_form-section {
        margin-bottom: 2rem;
    }

    .px_passenger-card,
    .px_contact-card {
        padding: 1rem;
    }

    .px_confirm-btn {
        width: 100%;
        padding: 1rem 2rem;
    }

    .px_back-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .px_page-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .px_flight-summary,
    .px_booking-form {
        padding: 1rem;
    }

    .px_section-title {
        font-size: 1.1rem;
    }

    .px_back-btn {
        margin-bottom: 1rem;
    }
}

.feature-btn {
    margin-top: 20px;
    max-width: 250px;
    text-align: center;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    background: linear-gradient(135deg, #f8f6ff 0%, #f0efff 100%);
    padding: 100px 0;
    position: relative;
}

.reviews-header {
    margin-bottom: 60px;
}

.reviews-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.2;
    color: var(--clr-text);
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.reviews-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--clr-muted);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trustpilot-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.rating-stars {
    display: flex;
    gap: 4px;
    color: #00b67a;
    font-size: 20px;
}

.rating-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--clr-text);
}

.trustpilot-logo {
    height: 24px;
    width: auto;
}

/* ===== REVIEWS SLIDER ===== */
.reviews-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.reviews-slide {
    display: none;
    padding: 0 20px;
    animation: slideIn 0.5s ease-in-out;
}

.reviews-slide.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

/* ===== REVIEW CARD ===== */
.review-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(107, 78, 255, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.review-stars {
    display: flex;
    gap: 2px;
    color: #fbbf24;
    font-size: 16px;
}

.review-date {
    font-size: 14px;
    color: var(--clr-muted);
}

.review-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: 12px;
    line-height: 1.3;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--clr-muted);
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--clr-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 16px;
    color: var(--clr-text);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 14px;
    color: var(--clr-muted);
}

/* ===== NAVIGATION ===== */
.reviews-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.reviews-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--clr-border);
    color: var(--clr-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.reviews-nav-btn:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: white;
    transform: scale(1.05);
}

.reviews-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.reviews-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.reviews-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(107, 78, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-dot.active {
    background: var(--clr-primary);
    transform: scale(1.2);
}

.reviews-dot:hover {
    background: var(--clr-primary);
}

/* ===== RESPONSIVE REVIEWS ===== */
@media (max-width: 991px) {
    .reviews-section {
        padding: 80px 0;
    }

    .reviews-header {
        margin-bottom: 40px;
    }

    .reviews-title {
        font-size: clamp(28px, 5vw, 36px);
    }

    .reviews-description {
        font-size: 16px;
    }

    .trustpilot-rating {
        gap: 12px;
    }

    .review-card {
        padding: 24px;
    }

    .reviews-slide {
        padding: 0 10px;
    }
}

@media (max-width: 767px) {
    .reviews-section {
        padding: 60px 0;
    }

    .reviews-title {
        font-size: clamp(24px, 6vw, 32px);
    }

    .reviews-description {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .trustpilot-rating {
        flex-direction: column;
        gap: 8px;
    }

    .rating-stars {
        font-size: 18px;
    }

    .review-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .review-title {
        font-size: 16px;
    }

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

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .author-info strong {
        font-size: 15px;
    }

    .author-info span {
        font-size: 13px;
    }

    .reviews-navigation {
        gap: 16px;
        margin-top: 32px;
    }

    .reviews-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    /* Mobile'da tek kart göster */
    .reviews-slide .row .col-md-6:nth-child(2) {
        display: none;
    }
}

@media (max-width: 480px) {
    .reviews-slide {
        padding: 0 5px;
    }

    .review-card {
        padding: 16px;
    }

    .reviews-navigation {
        gap: 12px;
    }
}

/* ===== CAMPAIGNS SECTION ===== */
.campaigns-section {
    background: var(--clr-bg);
    padding: 80px 0;
    position: relative;
}

.campaigns-container {
    background: white;
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(107, 78, 255, 0.08);
    border: 1px solid rgba(107, 78, 255, 0.1);
}

.campaigns-header {
    padding: 48px 40px 32px;
    text-align: center;
    background: linear-gradient(135deg, #f8f6ff 0%, #f0efff 100%);
}

.campaigns-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 36px);
    line-height: 1.2;
    color: var(--clr-text);
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.campaigns-description {
    font-size: 16px;
    line-height: 1.5;
    color: var(--clr-muted);
    margin: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== TAB NAVIGATION ===== */
.campaigns-tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid var(--clr-border);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.campaigns-tabs::-webkit-scrollbar {
    display: none;
}

.campaign-tab {
    flex: 1;
    min-width: 200px;
    padding: 20px 16px;
    background: transparent;
    border: none;
    color: var(--clr-muted);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.campaign-tab:hover {
    color: var(--clr-primary);
    background: rgba(107, 78, 255, 0.05);
}

.campaign-tab.active {
    color: var(--clr-primary);
    background: white;
    position: relative;
}

.campaign-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--clr-primary);
}



/* ===== TAB CONTENT ===== */
.campaigns-content {
    position: relative;
    min-height: 400px;
}

.campaign-content {
    display: none;
    padding: 40px;
    animation: fadeIn 0.4s ease-in-out;
}

.campaign-content.active {
    display: block;
}

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

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

/* ===== CAMPAIGN CARD ===== */
.campaign-card {
    width: 100%;
    margin: 0 auto;
}

.campaign-info {
    width: 100%;
}

.campaign-card-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: 16px;
    line-height: 1.3;
}

.campaign-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--clr-muted);
    margin-bottom: 32px;
}



.campaign-btn {
    background: var(--clr-primary);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.campaign-btn:hover {
    background: var(--clr-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 78, 255, 0.3);
}

/* ===== RESPONSIVE CAMPAIGNS ===== */
@media (max-width: 991px) {
    .campaigns-section {
        padding: 60px 0;
    }

    .campaigns-header {
        padding: 40px 32px 24px;
    }

    .campaign-content {
        padding: 32px;
    }

    .campaign-card {
        text-align: center;
    }

    .campaign-tab {
        min-width: 160px;
        padding: 16px 12px;
    }
}

@media (max-width: 767px) {
    .campaigns-header {
        padding: 32px 24px 20px;
    }

    .campaigns-title {
        font-size: clamp(24px, 6vw, 28px);
    }

    .campaigns-description {
        font-size: 15px;
    }

    .campaign-content {
        padding: 24px;
    }

    .campaign-tab {
        min-width: 120px;
        padding: 14px 8px;
        font-size: 13px;
    }





    .campaign-card-title {
        font-size: 20px;
    }

    .campaign-description {
        font-size: 15px;
    }

    .campaign-features {
        margin-bottom: 24px;
    }

    .campaign-feature {
        font-size: 13px;
    }

    .campaign-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .campaigns-header {
        padding: 24px 16px;
    }

    .campaign-content {
        padding: 20px;
    }

    .campaign-tab {
        min-width: 100px;
        padding: 12px 6px;
        font-size: 12px;
    }

    .campaign-tab {
        font-size: 12px;
    }



    .campaign-card-title {
        font-size: 18px;
    }
}

/* Custom Desktop Dropdown */
@media (min-width: 992px) {
    .nav-item.dropdown {
        position: relative;
    }

    .custom-dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        display: none;
        min-width: 160px;
        /* Compact width */
        padding: 8px 0;
        margin-top: 10px;
        background-color: #ffffff;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(0, 0, 0, 0.04);
        animation: customDropdownFadeIn 0.2s ease forwards;
        transform-origin: top left;
    }

    /* Show on hover */
    .nav-item.dropdown:hover .custom-dropdown-menu {
        display: block;
    }

    /* Bridge to prevent closing when moving mouse from link to menu */
    .nav-item.dropdown::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 10px;
        /* Matches margin-top */
    }

    .custom-dropdown-item {
        display: block;
        width: 100%;
        padding: 8px 16px;
        clear: both;
        font-weight: 500;
        color: #4a5568;
        text-align: inherit;
        text-decoration: none;
        white-space: nowrap;
        background-color: transparent;
        border: 0;
        font-size: 0.9rem;
        transition: all 0.2s ease;
    }

    .custom-dropdown-item:hover {
        background-color: #f8f9fa;
        color: var(--primary-color);
        padding-left: 20px;
        /* Subtle slide effect */
    }

    .custom-dropdown-item:first-child {
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }

    .custom-dropdown-item:last-child {
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
    }
}

@keyframes customDropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }

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

/* Improved Feature Cards Design */
.features-section {
    padding: 80px 0;
}

.feature-card {
    margin-bottom: 60px;
    background: #ffffff;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: auto;
    /* Remove fixed height */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-content {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-image {
    height: 100%;
    min-height: 300px;
    /* Ensure visibility on mobile */
    width: 100%;
    position: relative;
    overflow: hidden;
}

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

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

.feature-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.feature-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--clr-muted);
    margin-bottom: 24px;
}

.feature-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background-color: var(--clr-primary);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(107, 78, 255, 0.3);
}

.feature-btn:hover {
    background-color: var(--clr-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(107, 78, 255, 0.4);
    color: white;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .feature-card {
        margin-bottom: 40px;
    }

    .feature-content {
        padding: 30px 20px;
    }

    .feature-image {
        min-height: 250px;
        height: 250px;
    }

    /* Ensure image is always on top on mobile if desired, or keep alternating */
    /* If we want image always top, we need to adjust the HTML order or use flex-direction */
}

/* Special style for Hizmetlerimiz menu item */
.nav-link-btn {
    background-color: var(--clr-primary);
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    margin-top: 4px;
    /* Align with other items */
}

.nav-link-btn:hover {
    background-color: var(--clr-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 78, 255, 0.3);
    color: white !important;
}

/* Adjust dropdown position for the button */
.nav-item.dropdown:has(.nav-link-btn) .custom-dropdown-menu {
    margin-top: 15px;
}

/* Force white color on modal close hover */
.demo-modal-close:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.3) !important;
}

/* Reinforce Hizmetlerimiz button style */
.nav-link-btn {
    background-color: var(--clr-primary) !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
    opacity: 1 !important;
    visibility: visible !important;
}

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

/* Fix modal close button hover state */
.demo-modal-close:hover,
.demo-modal-close:hover i {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.2) !important;
}

/* Ensure Hizmetler button is always visible and styled */
.nav-link-btn {
    background-color: var(--clr-primary) !important;
    color: #ffffff !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(107, 78, 255, 0.3) !important;
}

.nav-link-btn:hover {
    background-color: var(--clr-primary-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(107, 78, 255, 0.4) !important;
    color: #ffffff !important;
}

/* REFINED FIXES FOR UI ISSUES */

/* 1. Modal Close Button - High Specificity */
body .demo-modal-close:hover,
body .demo-modal-close:hover i {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.2) !important;
    opacity: 1 !important;
}

/* 2. Services Button - Better Sizing & Alignment */
.nav-link-btn {
    background-color: var(--clr-primary) !important;
    color: #ffffff !important;
    padding: 8px 20px !important;
    /* Reduced padding */
    border-radius: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    line-height: 1.2 !important;
    margin-top: 0 !important;
    /* Remove top margin to align with text links */
    height: 40px !important;
    /* Fixed height for consistency */
    box-shadow: 0 4px 12px rgba(107, 78, 255, 0.2) !important;
}

.nav-link-btn:hover {
    background-color: var(--clr-primary-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(107, 78, 255, 0.3) !important;
    color: #ffffff !important;
}

/* 3. Dropdown Positioning Fix */
/* Ensure the dropdown appears directly below the button */
.nav-item.dropdown:has(.nav-link-btn) {
    display: flex;
    align-items: center;
}

.nav-item.dropdown:has(.nav-link-btn) .custom-dropdown-menu {
    margin-top: 10px !important;
    /* Standard spacing */
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    /* Center align with button */
    min-width: 200px !important;
    /* Ensure enough width */
}

/* Fallback for browsers not supporting :has */
.nav-item.dropdown .nav-link-btn+.custom-dropdown-menu {
    margin-top: 10px !important;
}

/* FIX: Testimonial Modal Close Button */
.testimonial-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1056;
    /* Ensure it's above everything */
    background: rgba(0, 0, 0, 0.5);
    /* Darker background for visibility */
    border: none;
    color: white !important;
    /* Force white color */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.testimonial-modal-close i {
    color: white !important;
    /* Force icon white */
    font-size: 18px;
}

.testimonial-modal-close:hover {
    background: rgba(0, 0, 0, 0.8) !important;
    transform: rotate(90deg);
}

/* FIX: Testimonial "Our Services" Link as Button */
.testimonial-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: transparent;
    border: 2px solid var(--clr-primary);
    /* Use primary color for border */
    color: var(--clr-primary) !important;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    margin-top: 10px;
    /* Spacing from video button */
}

/* If it's next to the video button, add margin-left instead/also */
@media (min-width: 768px) {
    .testimonial-link {
        margin-top: 0;
        margin-left: 15px;
    }
}

.testimonial-link:hover {
    background-color: var(--clr-primary);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 78, 255, 0.2);
}

/* MATCHING STYLES: Make "Our Services" link identical to "Watch Video" button */
.testimonial-link {
    background: transparent !important;
    border: 2px solid var(--clr-text) !important;
    color: var(--clr-text) !important;
    padding: 14px 28px !important;
    border-radius: 9999px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .testimonial-link {
        margin-top: 0;
        margin-left: 15px;
    }
}

.testimonial-link:hover {
    background: var(--clr-text) !important;
    border-color: var(--clr-text) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: none !important;
    /* Reset any previous shadow */
}

/* LAYOUT FIX: Align buttons side-by-side */
.testimonial-actions {
    flex-direction: row !important;
    /* Force horizontal alignment */
    align-items: center !important;
    gap: 15px !important;
    flex-wrap: wrap;
    /* Allow wrapping on very small screens */
}

/* Remove margins since we use gap */
.testimonial-link {
    margin-top: 0 !important;
    margin-left: 0 !important;
}

/* Appointment Section Typography Fixes */
.appointment-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.2;
    color: var(--clr-text);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.appointment-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.appointment-description {
    color: #718096;
    margin-bottom: 2rem;
}

/* Language Selector Styles */
.language-links {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--clr-text-muted);
    font-size: 14px;
}

.language-links i {
    margin-right: 5px;
}

.lang-link {
    color: var(--clr-text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.lang-link:hover,
.lang-link.active {
    color: var(--clr-primary);
}

.lang-separator {
    color: var(--clr-border);
}

/* ===== APPOINTMENT FORM FIXES ===== */
.appointment-form-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem !important;
    /* Adding padding for better spacing */
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card);
}

/* Fix overlapping labels */
.appointment-form .form-floating>label {
    z-index: 5;
    padding-left: 1.25rem;
    /* Match input padding if needed */
}

/* Ensure label background is solid to prevent text bleed-through if they overlap */
.appointment-form .form-floating>.form-control:focus~label,
.appointment-form .form-floating>.form-control:not(:placeholder-shown)~label {
    background-color: transparent !important;
    /* Or match container bg */
    opacity: 1;
    color: var(--clr-muted);
    transform: scale(0.85) translateY(-0.75rem) translateX(0.15rem);
}

/* Fix input heights and padding for better floating label positioning */
.appointment-form .form-floating>.form-control {
    height: 3.5rem;
    line-height: 1.25;
    padding: 1rem 0.75rem;
}

/* Ensure textareas resize properly */
.appointment-form .form-floating>textarea.form-control {
    height: 120px;
    padding-top: 1.75rem;
    /* Push text down so label fits above */
}

.appointment-form .form-floating>textarea.form-control:focus~label,
.appointment-form .form-floating>textarea.form-control:not(:placeholder-shown)~label {
    transform: scale(0.85) translateY(-0.75rem) translateX(0.15rem);
}