/*
Theme Name: BankAuctionList Premium
Theme URI: https://bankauctionlist.com
Description: Premium theme for bank auction listings with modern UI/UX design
Version: 5.1.0
Author: BankAuctionList
Author URI: https://bankauctionlist.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bankauctionlist-premium
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-grad-start: #667eea;
    --primary-grad-end: #764ba2;
    --secondary-grad-start: #f093fb;
    --secondary-grad-end: #f5576c;
    --accent-green: #10B981;
    --accent-orange: #f59e0b;
    --accent-red: #EF4444;
    --accent-blue: #3B82F6;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --border-light: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 3px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 6px 20px rgba(0, 0, 0, 0.12);
}

html, body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #f3f4f6 100%);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============= HEADER ============= */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    padding: 14px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-grad-start), var(--secondary-grad-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-items {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-grad-start);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-grad-start), var(--primary-grad-end));
    color: white;
    border: none;
    padding: 9px 20px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============= HERO SECTION ============= */
.hero {
    padding: 50px 0 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.hero-text h1 .highlight {
    background: linear-gradient(135deg, var(--primary-grad-start), var(--secondary-grad-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 22px;
    line-height: 1.6;
}

/* ============= HERO SEARCH BAR ============= */
.hero-search {
    display: flex;
    gap: 10px;
    margin-top: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    background: white;
    padding: 14px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
    align-items: stretch;
}

.hero-search input {
    flex: 1;
    border: 1px solid var(--border-light);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #f3f4f6;
    color: var(--text-dark);
}

.hero-search input::placeholder {
    color: #9ca3af;
}

.hero-search input:focus {
    outline: none;
    background: white;
    border-color: var(--primary-grad-start);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.hero-search button {
    background: linear-gradient(135deg, var(--primary-grad-start), var(--primary-grad-end));
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.hero-search button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.hero-search button:active {
    transform: translateY(0px);
}

/* ============= HERO STATS WRAPPER - FULL WIDTH ============= */
.hero-stats-wrapper {
    width: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #f3f4f6 100%);
    padding: 40px 20px;
    margin-bottom: 40px;
}

.hero-stats-wrapper .hero-stats {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 30px;
}

.btn-secondary {
    background: white;
    color: var(--primary-grad-start);
    border: 2px solid var(--primary-grad-start);
    padding: 9px 18px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-grad-start);
    color: white;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-card {
    background: white;
    padding: 32px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border-top: 3px solid var(--accent-green);
    transition: all 0.3s ease;
}

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

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-grad-start), var(--primary-grad-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}

.hero-visual {
    position: relative;
}

.visual-card {
    background: white;
    border-radius: 12px;
    padding: 22px;
    box-shadow: var(--shadow-md);
    animation: float 6s ease-in-out infinite;
}

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

/* ============= SEARCH SECTION ============= */
.search-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.search-section {
    background: white;
    border-radius: 12px;
    padding: 26px;
    box-shadow: var(--shadow-md);
    margin: -35px 0 40px 0;
    position: relative;
    z-index: 10;
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.search-input {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.search-input label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
}

.search-input input,
.search-input select {
    padding: 10px 12px;
    border: 1px solid var(--border-light);
    border-radius: 7px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.search-input input:focus,
.search-input select:focus {
    outline: none;
    border-color: var(--primary-grad-start);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-button {
    grid-column: span 4;
    background: linear-gradient(135deg, var(--primary-grad-start), var(--primary-grad-end));
    color: white;
    border: none;
    padding: 12px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.search-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============= FILTERS ============= */
.filters-section {
    margin-bottom: 28px;
}

.filter-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-pill {
    background: linear-gradient(135deg, var(--primary-grad-start), var(--primary-grad-end));
    color: white;
    padding: 8px 14px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow: var(--shadow-sm);
}

.filter-pill .remove {
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s ease;
}

.filter-pill .remove:hover {
    transform: scale(1.2);
}

/* ============= PROPERTIES SECTION ============= */
.properties {
    margin-bottom: 50px;
}

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

.properties-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 800;
}

.sort-options {
    display: flex;
    gap: 10px;
}

.sort-btn {
    padding: 8px 14px;
    border: 1px solid var(--border-light);
    background: white;
    border-radius: 7px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.sort-btn.active {
    background: linear-gradient(135deg, var(--primary-grad-start), var(--primary-grad-end));
    color: white;
    border: none;
}

.sort-btn:hover {
    border-color: var(--primary-grad-start);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 20px;
}

.property-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.property-image {
    height: 160px;
    background: linear-gradient(135deg, var(--primary-grad-start), var(--primary-grad-end));
    position: relative;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
}

.badge-live {
    background: rgba(16, 185, 129, 0.95);
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-upcoming {
    background: rgba(59, 130, 246, 0.95);
    color: white;
}

.badge-closed {
    background: rgba(239, 68, 68, 0.95);
    color: white;
}

.property-header {
    padding: 14px;
    border-bottom: 1px solid var(--border-light);
}

.bank-badge {
    display: inline-block;
    padding: 4px 9px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 7px;
    color: white;
}

.bank-sbi {
    background: linear-gradient(135deg, #0066cc, #0052a3);
}

.bank-hdfc {
    background: linear-gradient(135deg, #008000, #006600);
}

.bank-icici {
    background: linear-gradient(135deg, #cc0000, #990000);
}

.property-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.property-location {
    font-size: 14px;
    color: var(--text-light);
}

.property-body {
    padding: 14px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.property-price {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-grad-start), var(--secondary-grad-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.property-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-light);
}

.meta-item {
    font-size: 13px;
}

.meta-label {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.meta-value {
    color: var(--text-dark);
    font-weight: 800;
    font-size: 15px;
}

.property-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.action-btn {
    flex: 1;
    padding: 9px;
    border: none;
    border-radius: 7px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view {
    background: linear-gradient(135deg, var(--primary-grad-start), var(--primary-grad-end));
    color: white;
}

.btn-view:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn-wishlist {
    background: white;
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    font-weight: 700;
}

.btn-wishlist:hover {
    background: var(--accent-red);
    color: white;
}

/* ============= ALL PROPERTIES - TABLE VIEW ============= */
.all-properties-section {
    padding: 50px 0;
    margin-bottom: 40px;
}

.all-properties-header {
    margin-bottom: 30px;
}

.all-properties-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.all-properties-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.view-all-btn {
    background: linear-gradient(135deg, var(--primary-grad-start), var(--primary-grad-end));
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
    display: inline-block;
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.35);
}

.properties-table-wrapper {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow-x: auto;
}

.properties-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', sans-serif;
}

.properties-table thead {
    background: linear-gradient(135deg, var(--primary-grad-start), var(--primary-grad-end));
}

.properties-table thead th {
    padding: 16px;
    text-align: left;
    color: white;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.properties-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.properties-table tbody tr:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.03));
}

.properties-table tbody td {
    padding: 14px 16px;
    font-size: 15px;
    color: var(--text-dark);
}

.prop-id {
    font-weight: 700;
    color: var(--primary-grad-start);
    font-family: 'Poppins', sans-serif;
}

.prop-bank {
    text-align: center;
}

.bank-badge-table {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
}

.bank-badge-table.sbi {
    background: linear-gradient(135deg, #0066cc, #0052a3);
}

.bank-badge-table.hdfc {
    background: linear-gradient(135deg, #008000, #006600);
}

.bank-badge-table.icici {
    background: linear-gradient(135deg, #cc0000, #990000);
}

.prop-desc {
    max-width: 300px;
}

.prop-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-grad-start), var(--secondary-grad-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prop-date {
    color: var(--text-light);
    font-size: 14px;
}

.prop-status {
    text-align: center;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
}

.status-badge.live {
    background: rgba(16, 185, 129, 0.9);
}

.status-badge.upcoming {
    background: rgba(59, 130, 246, 0.9);
}

.status-badge.closed {
    background: rgba(239, 68, 68, 0.9);
}

.prop-action {
    text-align: center;
}

.action-link {
    display: inline-block;
    color: white;
    background: linear-gradient(135deg, var(--primary-grad-start), var(--primary-grad-end));
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.action-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* ============= FOOTER ============= */
footer {
    background: var(--text-dark);
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 25px;
}

.footer-section h4 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.footer-section a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 1200px) {
    .properties-grid {
        grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    }
}

@media (max-width: 1024px) {
    .search-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .search-button {
        grid-column: span 3;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .properties-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Table responsive - larger tablets */
    .properties-table-wrapper {
        overflow-x: auto;
    }

    .properties-table {
        min-width: 850px;
    }

    .properties-table thead th {
        padding: 14px 10px;
        font-size: 12px;
    }

    .properties-table tbody td {
        padding: 12px 10px;
        font-size: 13px;
    }

    .prop-desc {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .hero-search {
        flex-direction: column;
        max-width: 100%;
        padding: 12px;
        gap: 8px;
    }

    .hero-search input {
        width: 100%;
        padding: 10px 14px;
        font-size: 15px;
    }

    .hero-search button {
        width: 100%;
        padding: 10px 16px;
        font-size: 15px;
    }

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

    .stat-card {
        padding: 24px 16px;
    }

    .search-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-button {
        grid-column: span 2;
    }

    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .all-properties-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .all-properties-header h2 {
        font-size: 22px;
    }

    .view-all-btn {
        padding: 10px 20px;
        font-size: 15px;
    }

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

    /* Table responsive - tablet */
    .properties-table-wrapper {
        overflow-x: auto;
    }

    .properties-table {
        min-width: 900px;
    }

    .properties-table thead th {
        padding: 12px 10px;
        font-size: 13px;
    }

    .properties-table tbody td {
        padding: 10px 8px;
        font-size: 14px;
    }

    .prop-desc {
        max-width: 200px;
    }

    .bank-badge-table {
        padding: 4px 8px;
        font-size: 12px;
    }

    .status-badge {
        padding: 4px 8px;
        font-size: 12px;
    }

    .action-link {
        padding: 6px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 24px;
    }

    .hero-search {
        flex-direction: column;
        max-width: 100%;
        padding: 10px;
        gap: 8px;
        margin-top: 20px;
    }

    .hero-search input {
        padding: 10px 12px;
        font-size: 14px;
        border-radius: 8px;
    }

    .hero-search button {
        padding: 10px 14px;
        font-size: 14px;
        border-radius: 8px;
    }

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

    /* Table responsive - mobile */
    .properties-table-wrapper {
        border-radius: 8px;
        max-height: 600px;
        overflow-y: auto;
    }

    .properties-table {
        min-width: 100%;
        font-size: 12px;
    }

    .properties-table thead {
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .properties-table thead th {
        padding: 10px 6px;
        font-size: 12px;
        white-space: nowrap;
    }

    .properties-table tbody td {
        padding: 8px 6px;
        font-size: 13px;
    }

    .prop-id {
        font-size: 11px;
    }

    .prop-desc {
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .prop-location {
        max-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .prop-price {
        font-size: 12px;
    }

    .prop-date {
        font-size: 10px;
    }

    .bank-badge-table {
        padding: 3px 6px;
        font-size: 11px;
    }

    .status-badge {
        padding: 3px 6px;
        font-size: 11px;
    }

    .action-link {
        padding: 5px 10px;
        font-size: 12px;
    }

    .all-properties-section {
        padding: 20px 0;
    }

    .all-properties-header h2 {
        font-size: 18px;
    }
}

/* ============= ANIMATIONS ============= */
.wishlist-btn {
    border: none;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.wishlist-btn:hover {
    transform: scale(1.2);
}

.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 14px 18px;
    border-radius: 9px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 11px;
    animation: slideInUp 0.3s ease;
    z-index: 9999;
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

.notification.success {
    border-left: 3px solid var(--accent-green);
}

.notification-text {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

/* WordPress Specific */
a {
    color: var(--primary-grad-start);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-grad-end);
}

p {
    margin-bottom: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

/* ============= BROWSE BY CATEGORY ============= */
.category-section {
    padding: 40px 0;
    margin-bottom: 40px;
}

.section-title {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 28px;
    background: linear-gradient(135deg, var(--primary-grad-start), var(--secondary-grad-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.category-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-grad-start);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
}

.category-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: inline-block;
}

.category-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.category-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.4;
}

/* ============= BROWSE BY BANK ============= */
.bank-section {
    padding: 40px 0;
    margin-bottom: 40px;
}

.bank-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.bank-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.bank-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-green);
}

.bank-logo {
    font-size: 28px;
    margin-bottom: 12px;
    display: inline-block;
}

.bank-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.bank-count {
    font-size: 12px;
    color: var(--text-light);
}

/* ============= LATEST INSIGHTS & NEWS ============= */
.insights-section {
    padding: 40px 0;
    margin-bottom: 40px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.insight-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.insight-image {
    height: 160px;
    background: linear-gradient(135deg, var(--primary-grad-start), var(--secondary-grad-end));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.insight-content {
    padding: 20px;
}

.insight-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.insight-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.insight-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 12px;
}

.insight-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-light);
}

.insight-read-more {
    color: var(--primary-grad-start);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.insight-read-more:hover {
    color: var(--secondary-grad-end);
}

/* ============= GUIDES & RESOURCES ============= */
.guides-section {
    padding: 40px 0;
    margin-bottom: 40px;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.guide-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.05));
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.guide-card:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.1));
    transform: translateY(-4px);
    border-color: var(--primary-grad-start);
}

.guide-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.guide-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.guide-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 12px;
}

.guide-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.guide-link:hover {
    gap: 10px;
}

/* ============= TRUST SECTION ============= */
.trust-section {
    padding: 40px 0;
    margin-bottom: 40px;
}

.trust-title {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 28px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 3px solid var(--accent-green);
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.trust-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}
