/* ==========================================================================
   Professional Design System - HesapliKupon.com
   Clean, Modern & Bootstrap Compatible
   ========================================================================== */

/* CSS Variables */
:root {
    --primary: #5e72e4;
    --primary-dark: #4454c3;
    --primary-light: #7889e8;
    --secondary: #8392ab;
    --success: #2dce89;
    --info: #11cdef;
    --warning: #fb6340;
    --danger: #f5365c;
    --light: #f8f9fe;
    --dark: #172b4d;
    --white: #ffffff;
    --gray-100: #f6f9fc;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #8898aa;
    --gray-700: #525f7f;
    --gray-800: #32325d;
    --gray-900: #212529;
    --gradient-primary: linear-gradient(87deg, #5e72e4 0, #825ee4 100%);
    --gradient-success: linear-gradient(87deg, #2dce89 0, #2dcecc 100%);
    --gradient-info: linear-gradient(87deg, #11cdef 0, #1171ef 100%);
    --gradient-warning: linear-gradient(87deg, #fb6340 0, #fbb140 100%);
    --shadow-sm: 0 .125rem .25rem rgba(0,0,0,.075);
    --shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    --shadow-lg: 0 1rem 3rem rgba(0,0,0,.125);
    --shadow-card: 0 15px 35px rgba(50,50,93,.1), 0 5px 15px rgba(0,0,0,.07);
    --shadow-card-hover: 0 20px 40px rgba(50,50,93,.15), 0 10px 20px rgba(0,0,0,.1);
    --transition: all 0.25s ease;
    --border-radius: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
}

/* ==========================================================================
   CATEGORY CARDS - Ana Sayfa
   ========================================================================== */

.categories-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fe 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .subtitle {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background: rgba(94, 114, 228, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.section-header .title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

/* Category Card */
.category-card {
    display: block;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    padding: 30px;
    text-align: center;
    text-decoration: none !important;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid transparent;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(94, 114, 228, 0.1);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover .card-icon {
    transform: scale(1.1);
}

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

/* Card Icon */
.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 3px solid var(--gray-200);
}

/* Card Title */
.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
    transition: var(--transition);
}

/* Card Stats */
.card-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.stat-box {
    text-align: center;
    flex: 1;
}

.stat-box:first-child {
    border-right: 1px solid var(--gray-200);
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Stock Badge */
.stock-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    background: var(--success);
    color: white;
    display: flex;
    align-items: center;
    gap: 4px;
}

.stock-badge.warning {
    background: var(--warning);
}

.stock-badge.danger {
    background: var(--danger);
}

.stock-badge i {
    font-size: 0.6rem;
}

/* Stock Bar */
.stock-bar {
    margin-top: 20px;
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
}

.stock-bar-fill {
    height: 100%;
    background: var(--gradient-success);
    border-radius: 3px;
    transition: width 0.8s ease;
}

.stock-bar-fill.warning {
    background: var(--gradient-warning);
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */

.stats-section {
    background: var(--gradient-primary);
    padding: 60px 0;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--border-radius-lg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
}

.stat-card-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-card-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ==========================================================================
   PRODUCT DETAIL PAGE
   ========================================================================== */

.product-header {
    background: var(--gradient-primary);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
}

.product-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, #f8f9fe, transparent);
}

.product-icon-lg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.product-name {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.product-stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
}

.product-stock-badge i {
    color: #2dce89;
}

/* Purchase Section */
.purchase-section {
    padding: 0 0 60px;
    background: var(--gray-100);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.purchase-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-card);
    padding: 40px;
    max-width: 480px;
    margin: 0 auto;
}

.price-block {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 25px;
}

.price-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.price-amount small {
    font-size: 1.5rem;
    font-weight: 500;
}

/* Quantity Control */
.quantity-block {
    margin-bottom: 25px;
}

.quantity-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 10px;
    display: block;
}

.quantity-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.qty-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-700);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.qty-btn:active {
    transform: scale(0.95);
}

.qty-input {
    width: 80px;
    height: 48px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
    background: var(--white);
}

.qty-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(94, 114, 228, 0.15);
}

/* Total Block */
.total-block {
    background: var(--gray-100);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    margin-bottom: 25px;
}

.total-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 5px;
}

.total-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
}

/* Purchase Button */
.btn-purchase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(94, 114, 228, 0.35);
}

.btn-purchase:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(94, 114, 228, 0.45);
}

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

.btn-purchase i {
    font-size: 1.25rem;
}

/* Balance Info */
.balance-info {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
    color: var(--gray-600);
    font-size: 0.875rem;
}

.balance-info i {
    color: var(--primary);
    margin-right: 5px;
}

.balance-info strong {
    color: var(--dark);
}

/* Description Card */
.description-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    padding: 35px;
    margin-top: 30px;
}

.description-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.description-content {
    color: var(--gray-700);
    line-height: 1.8;
}

.description-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.description-content ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    border-bottom: 1px solid var(--gray-200);
}

.description-content ul li:last-child {
    border-bottom: none;
}

.description-content ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* Product Stats */
.product-stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.product-stat-card {
    flex: 1;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    padding: 25px;
    text-align: center;
}

.product-stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.25rem;
}

.product-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
}

.product-stat-label {
    font-size: 0.8rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   MODERN FOOTER
   ========================================================================== */

.modern-footer {
    background: #1a1f36 !important;
    color: rgba(255, 255, 255, 0.8);
}

.modern-footer .footer-top {
    padding: 60px 0 40px;
}

.modern-footer .footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.modern-footer .footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.modern-footer .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.modern-footer .footer-contact-item i {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.modern-footer .footer-contact-item a {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: var(--transition);
}

.modern-footer .footer-contact-item a:hover {
    color: var(--primary-light) !important;
}

.modern-footer .footer-links-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

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

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

.modern-footer .footer-links a {
    color: rgba(255, 255, 255, 0.6) !important;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.modern-footer .footer-links a:hover {
    color: white !important;
    padding-left: 5px;
}

.modern-footer .footer-links a i {
    font-size: 0.7rem;
    color: var(--primary-light);
}

.modern-footer .footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.modern-footer .copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    border: none;
    padding: 0;
}

.modern-footer .copyright a {
    color: var(--primary-light) !important;
    font-weight: 600;
}

/* ==========================================================================
   FAQ SECTION OVERRIDE
   ========================================================================== */

.faq-modern {
    background: var(--gray-100) !important;
}

.faq-modern .faq-list li {
    background: var(--white) !important;
    border-radius: var(--border-radius) !important;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    margin-bottom: 15px;
}

.faq-modern .faq-list a {
    color: var(--dark) !important;
    font-weight: 600;
}

.faq-modern .faq-list a.collapsed {
    color: var(--gray-700) !important;
}

.faq-modern .faq-list a:hover {
    color: var(--primary) !important;
}

.faq-modern .icon-help {
    color: var(--primary) !important;
}

/* ==========================================================================
   COUNTS SECTION OVERRIDE
   ========================================================================== */

.counts-modern {
    background: var(--gradient-primary) !important;
}

.counts-modern .count-box {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: var(--border-radius-lg) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.counts-modern .count-box i {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}

.counts-modern .count-box span {
    color: white !important;
}

.counts-modern .count-box p {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* ==========================================================================
   DETAILS SECTION OVERRIDE
   ========================================================================== */

.details-modern {
    background: var(--white) !important;
}

.details-modern h3 {
    color: var(--dark) !important;
    font-weight: 700;
}

.details-modern p,
.details-modern li {
    color: var(--gray-700) !important;
}

/* ==========================================================================
   SWEETALERT THEME
   ========================================================================== */

.swal2-popup {
    border-radius: var(--border-radius-lg) !important;
    box-shadow: var(--shadow-lg) !important;
}

.swal2-styled.swal2-confirm {
    background: var(--gradient-primary) !important;
    border-radius: var(--border-radius) !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(94, 114, 228, 0.35) !important;
}

.swal2-styled.swal2-cancel {
    border-radius: var(--border-radius) !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
}

.swal2-input {
    border-radius: var(--border-radius) !important;
    border: 2px solid var(--gray-300) !important;
}

.swal2-input:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(94, 114, 228, 0.15) !important;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 991px) {
    .section-header .title {
        font-size: 1.75rem;
    }

    .categories-section {
        padding: 60px 0;
    }

    .product-header {
        padding: 80px 0 50px;
    }

    .product-name {
        font-size: 1.5rem;
    }

    .purchase-card {
        padding: 30px;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .product-stats {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .card-stats {
        flex-direction: column;
        gap: 15px;
    }

    .stat-box:first-child {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
        padding-bottom: 15px;
    }

    .quantity-control {
        gap: 10px;
    }

    .qty-btn {
        width: 44px;
        height: 44px;
    }

    .qty-input {
        width: 70px;
        height: 44px;
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .category-card {
        padding: 25px 20px;
    }

    .card-icon {
        width: 70px;
        height: 70px;
    }

    .purchase-card {
        padding: 25px 20px;
        margin: 0 15px;
    }

    .price-amount {
        font-size: 2rem;
    }

    .product-icon-lg {
        width: 80px;
        height: 80px;
    }
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */

.text-primary { color: var(--primary) !important; }
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bg-primary-soft { background: rgba(94, 114, 228, 0.1) !important; }
.shadow-card { box-shadow: var(--shadow-card) !important; }

/* ==========================================================================
   HEADER & NAVIGATION OVERRIDE
   ========================================================================== */

#header {
    background: linear-gradient(87deg, #5e72e4 0, #825ee4 100%) !important;
    height: 70px !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

#header.header-scrolled {
    background: linear-gradient(87deg, #4454c3 0, #6f4bc3 100%) !important;
    height: 60px !important;
}

#header .logo img {
    max-height: 45px !important;
    filter: brightness(0) invert(1);
}

/* Navigation Links */
.nav-menu a {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    padding: 8px 16px !important;
    transition: all 0.3s ease !important;
}

.nav-menu a:hover,
.nav-menu .active > a {
    color: #ffffff !important;
}

.nav-menu > ul > li > a:before {
    background-color: #ffffff !important;
}

/* Dropdown Menu */
.nav-menu .drop-down ul {
    background: #ffffff !important;
    border-radius: 8px !important;
    box-shadow: 0 15px 35px rgba(50, 50, 93, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    border: none !important;
    padding: 12px 0 !important;
    min-width: 220px !important;
}

.nav-menu .drop-down ul a {
    color: var(--gray-700) !important;
    padding: 10px 20px !important;
}

.nav-menu .drop-down ul a:hover {
    color: var(--primary) !important;
    background: var(--gray-100) !important;
}

/* Header Buttons */
.nav-menu .btn {
    padding: 8px 20px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    transition: all 0.3s ease !important;
}

.nav-menu .btn-outline-primary {
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    color: #ffffff !important;
    background: transparent !important;
}

.nav-menu .btn-outline-primary:hover {
    background: #ffffff !important;
    color: var(--primary) !important;
    border-color: #ffffff !important;
}

.nav-menu .btn-primary {
    background: #ffffff !important;
    color: var(--primary) !important;
    border: none !important;
}

.nav-menu .btn-primary:hover {
    background: var(--gray-100) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Balance Display */
.nav-menu .btn:not(.btn-outline-primary):not(.btn-primary):not([href]) {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    cursor: default !important;
}

/* Mobile Navigation */
.mobile-nav {
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2) !important;
}

.mobile-nav a {
    color: var(--gray-700) !important;
    padding: 12px 20px !important;
    font-weight: 500 !important;
}

.mobile-nav a:hover,
.mobile-nav .active > a {
    color: var(--primary) !important;
}

.mobile-nav-toggle i {
    color: #ffffff !important;
}

/* ==========================================================================
   HERO SECTION OVERRIDE
   ========================================================================== */

#hero {
    background: linear-gradient(135deg, #5e72e4 0%, #825ee4 50%, #5e72e4 100%) !important;
    position: relative;
}

#hero::before {
    background: transparent !important;
}

#hero h1 {
    color: #ffffff !important;
    font-weight: 700 !important;
}

#hero h1 span {
    border-bottom-color: #ffffff !important;
}

#hero h2 {
    color: rgba(255, 255, 255, 0.85) !important;
}

#hero .btn-get-started {
    background: #ffffff !important;
    color: var(--primary) !important;
    font-weight: 600 !important;
    padding: 14px 36px !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
}

#hero .btn-get-started:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
}

.hero-waves g use {
    fill: rgba(255, 255, 255, 0.1);
}

.hero-waves .wave3 use {
    fill: #f8f9fe;
}

/* ==========================================================================
   GENERAL BUTTONS
   ========================================================================== */

.btn-primary {
    background: var(--gradient-primary) !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(94, 114, 228, 0.35) !important;
    transition: all 0.3s ease !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(94, 114, 228, 0.45) !important;
}

.btn-outline-primary {
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
    border-radius: 6px !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    background: transparent !important;
}

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

/* ==========================================================================
   CARDS & ALERTS
   ========================================================================== */

.card {
    border: none !important;
    border-radius: var(--border-radius-lg) !important;
    box-shadow: var(--shadow-card) !important;
}

.card-header {
    background: var(--gray-100) !important;
    border-bottom: 1px solid var(--gray-200) !important;
    font-weight: 600 !important;
    padding: 15px 20px !important;
}

.alert {
    border: none !important;
    border-radius: var(--border-radius) !important;
}

.alert-info {
    background: rgba(17, 205, 239, 0.1) !important;
    color: #0d6efd !important;
}

.alert-success {
    background: rgba(45, 206, 137, 0.1) !important;
    color: #198754 !important;
}

.alert-warning {
    background: rgba(251, 99, 64, 0.1) !important;
    color: #fd7e14 !important;
}

.alert-danger {
    background: rgba(245, 54, 92, 0.1) !important;
    color: #dc3545 !important;
}

/* ==========================================================================
   FORMS
   ========================================================================== */

.form-control {
    border: 2px solid var(--gray-300) !important;
    border-radius: var(--border-radius) !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
}

.form-control:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(94, 114, 228, 0.15) !important;
}

/* ==========================================================================
   TABLES
   ========================================================================== */

.table {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.table thead th {
    background: var(--gray-100) !important;
    color: var(--gray-700) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    letter-spacing: 0.5px !important;
    border: none !important;
    padding: 15px !important;
}

.table tbody td {
    padding: 15px !important;
    vertical-align: middle !important;
    border-color: var(--gray-200) !important;
}

.table-striped tbody tr:nth-of-type(odd) {
    background: var(--gray-100) !important;
}

/* ==========================================================================
   BACK TO TOP BUTTON
   ========================================================================== */

.back-to-top i {
    background: var(--gradient-primary) !important;
    box-shadow: 0 4px 15px rgba(94, 114, 228, 0.4) !important;
}

.back-to-top i:hover {
    background: var(--gradient-primary) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(94, 114, 228, 0.5) !important;
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */

#preloader:before {
    border-color: var(--primary) !important;
    border-top-color: rgba(94, 114, 228, 0.2) !important;
}

/* ==========================================================================
   USER DASHBOARD PAGES - Hesaplarım, Profilim, Bakiye Yükle
   ========================================================================== */

/* Page Header */
.user-page-header {
    background: var(--gradient-primary);
    padding: 40px 0;
    margin-top: 70px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.user-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.user-page-header .container {
    position: relative;
    z-index: 1;
}

.user-page-header h1 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.user-page-header p {
    color: rgba(255, 255, 255, 0.8);
    margin: 8px 0 0;
    font-size: 0.95rem;
}

.user-page-header .header-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.user-page-header .header-icon i {
    font-size: 28px;
    color: var(--white);
}

/* User Dashboard Card */
.user-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    margin-bottom: 30px;
    overflow: hidden;
    border: none;
}

.user-card .card-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.user-card .card-header .card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-card .card-header .card-title i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #5e72e4 0%, #825ee4 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(94, 114, 228, 0.35);
}

.user-card .card-body {
    padding: 25px;
}

/* Filter Dropdown */
.filter-dropdown .btn {
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    color: var(--gray-700);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
}

.filter-dropdown .btn:hover {
    background: var(--gray-200);
    border-color: var(--gray-400);
}

.filter-dropdown .dropdown-menu {
    border: none;
    box-shadow: var(--shadow-card);
    border-radius: 10px;
    padding: 8px;
    min-width: 150px;
}

.filter-dropdown .dropdown-item {
    border-radius: 6px;
    padding: 10px 15px;
    font-size: 0.875rem;
    color: var(--gray-700);
    transition: var(--transition);
}

.filter-dropdown .dropdown-item:hover {
    background: var(--gray-100);
    color: var(--dark);
}

.filter-dropdown .dropdown-item.active {
    background: rgba(94, 114, 228, 0.1);
    color: var(--primary);
    font-weight: 600;
}

/* User Table */
.user-table {
    margin: 0;
}

.user-table thead th {
    background: var(--gray-100);
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px 20px;
    border: none;
    white-space: nowrap;
}

.user-table tbody td {
    padding: 18px 20px;
    vertical-align: middle;
    border-color: var(--gray-100);
    color: var(--gray-800);
    font-size: 0.9rem;
}

.user-table tbody tr {
    transition: var(--transition);
}

.user-table tbody tr:hover {
    background: rgba(94, 114, 228, 0.03);
}

.user-table .category-name {
    font-weight: 600;
    color: var(--dark);
}

.user-table .date-cell {
    color: var(--gray-600);
    font-size: 0.85rem;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.action-buttons .btn {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
}

.btn-action-primary {
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
}

.btn-action-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(94, 114, 228, 0.4);
    color: var(--white);
}

.btn-action-success {
    background: var(--gradient-success);
    border: none;
    color: var(--white);
}

.btn-action-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 206, 137, 0.4);
    color: var(--white);
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

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

.stat-card .stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-card .stat-icon.primary {
    background: linear-gradient(135deg, #5e72e4 0%, #825ee4 100%);
    box-shadow: 0 6px 20px rgba(94, 114, 228, 0.4);
}

.stat-card .stat-icon.primary i {
    color: #ffffff;
}

.stat-card .stat-icon.success {
    background: linear-gradient(135deg, #2dce89 0%, #26a970 100%);
    box-shadow: 0 6px 20px rgba(45, 206, 137, 0.4);
}

.stat-card .stat-icon.success i {
    color: #ffffff;
}

.stat-card .stat-icon.info {
    background: linear-gradient(135deg, #11cdef 0%, #0da5c0 100%);
    box-shadow: 0 6px 20px rgba(17, 205, 239, 0.4);
}

.stat-card .stat-icon.info i {
    color: #ffffff;
}

.stat-card .stat-icon.warning {
    background: linear-gradient(135deg, #fb6340 0%, #fbb140 100%);
    box-shadow: 0 6px 20px rgba(251, 99, 64, 0.4);
}

.stat-card .stat-icon.warning i {
    color: #ffffff;
}

.stat-card .stat-icon i {
    font-size: 32px;
}

.stat-card .stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    line-height: 1;
}

.stat-card .stat-content p {
    color: var(--gray-600);
    margin: 8px 0 0;
    font-size: 0.9rem;
}

/* Profile Form Styles */
.profile-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.profile-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.profile-card .card-header {
    background: linear-gradient(135deg, #5e72e4 0%, #825ee4 100%) !important;
    padding: 22px 28px !important;
    border: none !important;
    box-shadow: 0 6px 20px rgba(94, 114, 228, 0.4) !important;
    position: relative;
    overflow: hidden;
}

.profile-card .card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%, rgba(0,0,0,0.05) 100%);
    pointer-events: none;
}

.profile-card .card-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.profile-card .card-header h3 {
    color: #ffffff !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.profile-card .card-header h3 i {
    font-size: 1.4rem !important;
    color: #ffffff !important;
    opacity: 1 !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.profile-card .card-body {
    padding: 25px;
}

/* Form Styles */
.modern-form .form-group {
    margin-bottom: 20px;
}

.modern-form .form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
    display: block;
}

.modern-form .form-control {
    padding: 12px 16px;
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: 10px;
    transition: var(--transition);
}

.modern-form .form-control:focus {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(94, 114, 228, 0.1);
}

.modern-form .form-control[readonly] {
    background: var(--gray-200);
    color: var(--gray-600);
}

.modern-form .custom-select {
    padding: 12px 16px;
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: 10px;
    transition: var(--transition);
    height: auto;
}

.modern-form .custom-select:focus {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(94, 114, 228, 0.1);
}

.modern-form .btn-submit {
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
    padding: 12px 30px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.modern-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(94, 114, 228, 0.4);
    color: var(--white);
}

.modern-form .text-danger {
    font-size: 0.8rem;
    margin-top: 6px;
    display: block;
}

/* Bank Table */
.bank-table {
    margin: 0;
}

.bank-table thead th {
    background: var(--gray-100);
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px 18px;
    border: none;
}

.bank-table tbody td {
    padding: 16px 18px;
    vertical-align: middle;
    border-color: var(--gray-100);
    font-size: 0.9rem;
}

.bank-table .bank-name {
    font-weight: 600;
    color: var(--dark);
}

.bank-table .iban-cell {
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.85rem;
    color: var(--gray-700);
    letter-spacing: 0.5px;
}

/* Status Badges */
.status-badge {
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.status-badge.pending {
    background: rgba(251, 99, 64, 0.1);
    color: var(--warning);
}

.status-badge.approved {
    background: rgba(45, 206, 137, 0.1);
    color: var(--success);
}

.status-badge.rejected {
    background: rgba(245, 54, 92, 0.1);
    color: var(--danger);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 30px;
}

.empty-state .empty-icon {
    width: 80px;
    height: 80px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.empty-state .empty-icon i {
    font-size: 36px;
    color: var(--gray-500);
}

.empty-state h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .user-page-header {
        padding: 30px 0;
    }

    .user-page-header h1 {
        font-size: 1.5rem;
    }

    .user-card .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .user-table thead th,
    .user-table tbody td {
        padding: 12px 15px;
        font-size: 0.85rem;
    }

    .action-buttons {
        flex-direction: column;
    }

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

    .stat-card {
        padding: 20px;
    }

    .stat-card .stat-icon {
        width: 55px;
        height: 55px;
    }

    .stat-card .stat-icon i {
        font-size: 24px;
    }

    .stat-card .stat-content h3 {
        font-size: 1.5rem;
    }

    .profile-section {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   WHY CHOOSE US SECTION - Ana Sayfa
   ========================================================================== */

.why-us-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fe 100%);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-300), transparent);
}

.why-us-section .section-desc {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--gray-600);
}

.why-us-content {
    margin-top: 60px;
}

/* Features Showcase */
.features-showcase {
    background: var(--white);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 30px 80px rgba(50,50,93,.08), 0 10px 30px rgba(0,0,0,.04);
    margin-bottom: 60px;
}

.features-image-wrapper {
    position: relative;
    padding: 40px;
}

.features-image {
    background: linear-gradient(135deg, #f0f3ff 0%, #e8ecff 100%);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-image img {
    max-width: 100%;
    height: auto;
    max-height: 350px;
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(50,50,93,.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    font-size: 1.2rem;
    color: var(--primary);
}

.floating-badge.badge-1 {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.floating-badge.badge-2 {
    bottom: 40px;
    left: 0;
    animation-delay: 1.5s;
}

.floating-badge.badge-2 i {
    color: var(--success);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Features List */
.features-list {
    padding-left: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--gray-100);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.feature-item:hover {
    background: var(--white);
    box-shadow: 0 15px 40px rgba(50,50,93,.1);
    transform: translateX(5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-icon.green {
    background: var(--gradient-success);
}

.feature-icon.orange {
    background: var(--gradient-warning);
}

.feature-icon.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 6px;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

.feature-arrow {
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-arrow {
    color: var(--primary);
    transform: translateX(5px);
}

/* Feature Connector - Dashed Line */
.feature-connector {
    width: 2px;
    height: 30px;
    margin-left: 54px;
    background: repeating-linear-gradient(
        to bottom,
        var(--gray-300) 0px,
        var(--gray-300) 6px,
        transparent 6px,
        transparent 12px
    );
    position: relative;
}

.feature-connector::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.5;
}

/* Trust Section */
.trust-section {
    background: var(--white);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 30px 80px rgba(50,50,93,.08), 0 10px 30px rgba(0,0,0,.04);
    margin-bottom: 60px;
}

.trust-image-wrapper {
    padding: 20px;
}

.trust-image {
    background: linear-gradient(135deg, #e8fff0 0%, #d4f7e4 100%);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-image img {
    max-width: 100%;
    height: auto;
    max-height: 320px;
}

.trust-content {
    padding-right: 40px;
}

.trust-badge-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e8fff0 0%, #d4f7e4 100%);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.trust-badge-header i {
    color: var(--success);
    font-size: 1.2rem;
}

.trust-badge-header span {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a7f4b;
}

.trust-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 15px;
}

.trust-content > p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 30px;
}

.trust-content > p strong {
    color: var(--success);
}

.trust-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.trust-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    background: var(--gray-100);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trust-feature:hover {
    background: var(--white);
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.trust-check {
    width: 28px;
    height: 28px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-check i {
    color: var(--white);
    font-size: 0.8rem;
}

.trust-feature span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* Bottom CTA */
.bottom-cta {
    background: var(--gradient-primary);
    border-radius: 24px;
    padding: 50px 60px;
    position: relative;
    overflow: hidden;
}

.bottom-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.cta-text h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 8px;
}

.cta-text p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--primary);
    padding: 18px 35px;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    flex-shrink: 0;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,.2);
    text-decoration: none;
    color: var(--primary-dark);
}

.cta-button i {
    font-size: 1.3rem;
}

/* Responsive - Why Us Section */
@media (max-width: 992px) {
    .features-showcase,
    .trust-section {
        padding: 40px 30px;
    }

    .features-list {
        padding-left: 0;
        margin-top: 40px;
    }

    .trust-content {
        padding-right: 0;
        margin-top: 40px;
    }

    .trust-features {
        grid-template-columns: 1fr;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .bottom-cta {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .why-us-section {
        padding: 60px 0;
    }

    .features-showcase,
    .trust-section {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .feature-item {
        padding: 20px;
        flex-wrap: wrap;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 1.2rem;
    }

    .feature-content h4 {
        font-size: 1rem;
    }

    .feature-arrow {
        display: none;
    }

    .feature-connector {
        margin-left: 44px;
        height: 20px;
    }

    .trust-content h3 {
        font-size: 1.5rem;
    }

    .bottom-cta {
        padding: 30px 20px;
    }

    .cta-text h3 {
        font-size: 1.3rem;
    }

    .cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .floating-badge {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .features-image {
        padding: 25px;
    }
}

/* ==========================================================================
   FAQ SECTION - Modern Design
   ========================================================================== */

.faq-section-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fe 0%, #ffffff 100%);
    position: relative;
}

.faq-section-modern .section-desc {
    max-width: 500px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--gray-600);
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-wrapper {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(50,50,93,.08), 0 10px 30px rgba(0,0,0,.04);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item.active,
.faq-item:hover {
    background: linear-gradient(135deg, #fafbff 0%, #f5f7ff 100%);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-icon {
    flex-shrink: 0;
}

.faq-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    transition: all 0.3s ease;
}

.faq-item.active .faq-number,
.faq-item:hover .faq-number {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(94, 114, 228, 0.35);
}

.faq-question h4 {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h4,
.faq-item:hover .faq-question h4 {
    color: var(--primary);
}

.faq-toggle {
    width: 36px;
    height: 36px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle i {
    font-size: 1rem;
    color: var(--gray-600);
    transition: all 0.3s ease;
}

.faq-toggle .icofont-minus {
    display: none;
}

.faq-item.active .faq-toggle {
    background: var(--gradient-primary);
}

.faq-item.active .faq-toggle i {
    color: var(--white);
}

.faq-item.active .faq-toggle .icofont-plus {
    display: none;
}

.faq-item.active .faq-toggle .icofont-minus {
    display: block;
}

.faq-answer {
    overflow: hidden;
}

.faq-answer-content {
    padding: 0 30px 25px 95px;
}

.faq-answer-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin: 0;
    padding-left: 5px;
    border-left: 3px solid var(--primary);
}

/* FAQ Contact Box */
.faq-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    border-radius: 20px;
    padding: 30px 35px;
    margin-top: 30px;
    box-shadow: 0 15px 50px rgba(50,50,93,.08), 0 5px 20px rgba(0,0,0,.04);
    border: 2px dashed var(--gray-300);
    transition: all 0.3s ease;
}

.faq-contact:hover {
    border-color: var(--primary);
    border-style: solid;
}

.faq-contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0f3ff 0%, #e8ecff 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-contact-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.faq-contact-content {
    flex: 1;
}

.faq-contact-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 5px;
}

.faq-contact-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(94, 114, 228, 0.3);
    flex-shrink: 0;
}

.faq-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(94, 114, 228, 0.4);
    color: var(--white);
    text-decoration: none;
}

.faq-contact-btn i {
    font-size: 1.1rem;
}

/* FAQ Toggle Script - Active State Management */
.faq-item .faq-answer.show + .faq-item {
    border-top: none;
}

/* Responsive - FAQ */
@media (max-width: 768px) {
    .faq-section-modern {
        padding: 60px 0;
    }

    .faq-question {
        padding: 20px;
        gap: 15px;
    }

    .faq-number {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    .faq-question h4 {
        font-size: 0.95rem;
    }

    .faq-answer-content {
        padding: 0 20px 20px 75px;
    }

    .faq-contact {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .faq-contact-content {
        margin-bottom: 15px;
    }

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

@media (max-width: 576px) {
    .faq-answer-content {
        padding: 0 20px 20px 20px;
    }

    .faq-toggle {
        width: 32px;
        height: 32px;
    }

    .faq-toggle i {
        font-size: 0.9rem;
    }
}
