/* =============================================
   TransferPay - Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Mono:wght@700&display=swap');

:root {
    --primary: #0D1B2A;
    --primary-light: #1B2D45;
    --accent: #00D4AA;
    --accent-hover: #00B893;
    --accent-glow: rgba(0, 212, 170, 0.15);
    --danger: #FF4757;
    --warning: #FFA502;
    --success: #2ED573;
    --text: #E2E8F0;
    --text-muted: #94A3B8;
    --bg: #0A1628;
    --card: #111D32;
    --card-border: rgba(255,255,255,0.06);
    --input-bg: #0D1B2A;
    --input-border: rgba(255,255,255,0.1);
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0,0,0,0.3);
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
}

/* ---- Background Effect ---- */
.bg-effect {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.bg-effect::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    top: -200px; right: -100px;
    background: radial-gradient(circle, rgba(0,212,170,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.bg-effect::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    bottom: -150px; left: -100px;
    background: radial-gradient(circle, rgba(0,120,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

/* ---- Header ---- */
.header {
    background: var(--primary);
    border-bottom: 1px solid var(--card-border);
    padding: 18px 0;
    position: relative;
    z-index: 10;
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.logo span { color: var(--text); }
.header-info {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ---- Container ---- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Hero ---- */
.hero {
    text-align: center;
    padding: 60px 20px 30px;
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.hero h1 em {
    font-style: normal;
    color: var(--accent);
}
.hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ---- Transfer Form Section ---- */
.transfer-section {
    position: relative;
    z-index: 1;
    padding: 30px 20px 60px;
}
.transfer-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

/* ---- Form ---- */
.form-section-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--card-border);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394A3B8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

/* ---- Calculation Box ---- */
.calc-box {
    background: linear-gradient(135deg, rgba(0,212,170,0.08), rgba(0,120,255,0.05));
    border: 1px solid rgba(0,212,170,0.2);
    border-radius: var(--radius);
    padding: 24px;
    margin: 24px 0;
}
.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.95rem;
}
.calc-row.total {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 8px;
    padding-top: 16px;
    font-size: 1.15rem;
    font-weight: 700;
}
.calc-row .label { color: var(--text-muted); }
.calc-row .value { font-weight: 600; }
.calc-row.total .value { color: var(--accent); font-size: 1.3rem; }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.btn-primary {
    background: var(--accent);
    color: var(--primary);
    width: 100%;
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0,212,170,0.3);
}
.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}
.btn-secondary {
    background: var(--primary-light);
    color: var(--text);
    border: 1px solid var(--card-border);
}
.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--accent);
}
.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}
.btn-danger {
    background: var(--danger);
    color: #fff;
}

/* ---- Trust Bar ---- */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}
.trust-item {
    text-align: center;
}
.trust-item .icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}
.trust-item .text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ---- Enhanced Header ---- */
.header {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    border-bottom: 1px solid var(--card-border);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}
.logo {
    font-family: 'Space Mono', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
}
.logo:hover {
    transform: scale(1.02);
}
.logo-icon {
    font-size: 1.6rem;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: all 0.2s;
}
.nav-link:hover {
    color: var(--text);
    background: rgba(255,255,255,0.05);
}
.nav-link.nav-contact {
    background: var(--accent-glow);
    color: var(--accent);
    border: 1px solid rgba(0,212,170,0.3);
}
.nav-link.nav-contact:hover {
    background: var(--accent);
    color: var(--primary);
}
.nav-icon {
    font-size: 1rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}
.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s;
}

/* ---- Enhanced Trust Bar ---- */
.trust-bar {
    background: var(--primary);
    padding: 50px 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--card-border);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    transition: all 0.3s;
}
.trust-item:hover {
    background: rgba(0,212,170,0.05);
    border-color: rgba(0,212,170,0.2);
    transform: translateY(-2px);
}
.trust-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border-radius: 50%;
    flex-shrink: 0;
}
.trust-content {
    display: flex;
    flex-direction: column;
}
.trust-content strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}
.trust-content span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ---- Enhanced Footer ---- */
.footer {
    background: var(--bg);
    border-top: 1px solid var(--card-border);
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
}
.footer-brand {}
.footer-logo {
    font-family: 'Space Mono', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.footer-logo span {
    font-size: 1.5rem;
}
.footer-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    max-width: 300px;
}
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-contact-info a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}
.footer-contact-info a:hover {
    color: var(--accent);
}

/* Footer Links */
.footer-links h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 20px;
}
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a:hover {
    color: var(--text);
    padding-left: 5px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--card-border);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* ---- Responsive Header/Footer ---- */
@media (max-width: 900px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    /* Mobile Navigation */
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        border-top: 1px solid var(--card-border);
        display: none;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-link {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Mobile Trust Bar */
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .trust-item {
        padding: 16px;
    }
    .trust-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    /* Mobile Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-tagline {
        max-width: none;
    }
    .footer-contact-info {
        align-items: center;
    }
    .footer-links a {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ---- Success Page ---- */
.success-card {
    text-align: center;
    padding: 60px 40px;
}
.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(46,213,115,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
}
.success-card h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}
.success-card .ref-code {
    font-family: 'Space Mono', monospace;
    font-size: 1.3rem;
    color: var(--accent);
    background: var(--input-bg);
    padding: 12px 24px;
    border-radius: var(--radius);
    display: inline-block;
    margin: 16px 0;
    letter-spacing: 1px;
}

/* ---- Alerts ---- */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.9rem;
}
.alert-error {
    background: rgba(255,71,87,0.12);
    border: 1px solid rgba(255,71,87,0.3);
    color: #FF6B7A;
}
.alert-success {
    background: rgba(46,213,115,0.12);
    border: 1px solid rgba(46,213,115,0.3);
    color: #5AE89A;
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.8rem; }
    .transfer-card { padding: 24px 20px; }
    .trust-bar { flex-direction: column; gap: 20px; }
}

/* =============================================
   ADMIN STYLES
   ============================================= */

/* ---- Admin Layout ---- */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}
.sidebar {
    width: 250px;
    background: var(--primary);
    border-right: 1px solid var(--card-border);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 100;
}
.sidebar-logo {
    padding: 10px 24px 30px;
}
.sidebar-logo a {
    font-family: 'Space Mono', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
}
.sidebar-logo a span { color: var(--text); }
.sidebar-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    padding: 10px 24px;
    font-weight: 600;
}
.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}
.sidebar-nav a:hover {
    color: var(--text);
    background: rgba(255,255,255,0.03);
}
.sidebar-nav a.active {
    color: var(--accent);
    background: var(--accent-glow);
    border-left-color: var(--accent);
}

.admin-main {
    flex: 1;
    margin-left: 250px;
    padding: 30px;
}
.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.admin-header h1 {
    font-size: 1.6rem;
    font-weight: 700;
}

/* ---- Stats Cards ---- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}
.stat-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 24px;
}
.stat-card .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.stat-card .stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 8px;
}
.stat-card .stat-value.accent { color: var(--accent); }
.stat-card .stat-value.success { color: var(--success); }
.stat-card .stat-value.warning { color: var(--warning); }

/* ---- Tables ---- */
.table-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
}
.table-card .card-header {
    padding: 18px 24px;
    border-bottom: 1px solid var(--card-border);
    font-weight: 600;
    font-size: 1rem;
}
table {
    width: 100%;
    border-collapse: collapse;
}
table th {
    text-align: left;
    padding: 12px 18px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
    border-bottom: 1px solid var(--card-border);
}
table td {
    padding: 14px 18px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--card-border);
}
table tr:last-child td { border-bottom: none; }
table tr:hover td { background: rgba(255,255,255,0.02); }

/* ---- Badges ---- */
.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.badge-success { background: rgba(46,213,115,0.15); color: var(--success); }
.badge-warning { background: rgba(255,165,2,0.15); color: var(--warning); }
.badge-danger { background: rgba(255,71,87,0.15); color: var(--danger); }
.badge-info { background: rgba(0,212,170,0.15); color: var(--accent); }

/* ---- Admin Forms ---- */
.admin-form-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 30px;
    max-width: 600px;
}
.currency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}
.currency-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.currency-card .flag {
    font-size: 2rem;
}
.currency-card .info h3 {
    font-size: 1rem;
    font-weight: 600;
}
.currency-card .info p {
    color: var(--text-muted);
    font-size: 0.85rem;
}
.currency-card .rate-input {
    margin-left: auto;
}
.currency-card .rate-input input {
    width: 130px;
    padding: 10px 14px;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-align: right;
}
.currency-card .rate-input input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.currency-card .rate-input label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    text-align: right;
}

/* ---- Login ---- */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.login-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow);
    text-align: center;
}
.login-card h1 {
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 8px;
}
.login-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.9rem;
}
.login-card .form-group { text-align: left; }

/* ---- Admin Responsive ---- */
@media (max-width: 768px) {
    .sidebar { display: none; }
    .admin-main { margin-left: 0; }
    .currency-card { flex-direction: column; text-align: center; }
    .currency-card .rate-input { margin-left: 0; }
}

/* =============================================
   Header / Navbar
   ============================================= */
.navbar {
    background: var(--primary);
    border-bottom: 1px solid var(--card-border);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 1.3rem;
}
.navbar-brand .brand-icon {
    font-size: 1.5rem;
}
.navbar-brand:hover {
    color: var(--accent);
}
.navbar-nav {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}
.navbar-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.navbar-nav a:hover {
    color: var(--accent);
}
.navbar-nav .btn-phone {
    background: var(--accent);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-weight: 600;
}
.navbar-nav .btn-phone:hover {
    background: var(--accent-hover);
    color: white;
}
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.navbar-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: 0.3s;
}

/* ---- Main Content ---- */
.main-content {
    min-height: calc(100vh - 300px);
}

/* =============================================
   Trust Bar
   ============================================= */
.trust-bar {
    background: var(--primary-light);
    padding: 25px 0;
    margin-top: 40px;
}
.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.trust-icon {
    font-size: 2rem;
}
.trust-item span:last-child {
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
}

/* =============================================
   Footer
   ============================================= */
.footer {
    background: var(--primary);
    padding: 50px 0 30px;
    border-top: 1px solid var(--card-border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}
.footer-col ul a:hover {
    color: var(--accent);
}
.footer-bottom {
    border-top: 1px solid var(--card-border);
    padding-top: 25px;
    text-align: center;
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 8px;
}
.powered-by a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.8rem;
}
.powered-by a:hover {
    text-decoration: underline;
}

/* =======================================
   MOBILE STYLES - Header, Footer, Trust Bar
   ======================================= */

@media (max-width: 768px) {
    
    /* ----- HEADER / NAVBAR MOBILE ----- */
    .navbar {
        padding: 12px 0;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
    .navbar .container {
        flex-wrap: wrap;
        padding: 0 15px;
    }
    .navbar-brand {
        font-size: 1.3rem;
    }
    .brand-icon {
        font-size: 1.5rem;
    }
    .navbar-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: rgba(255,255,255,0.1);
        border: none;
        padding: 10px 12px;
        border-radius: 8px;
        cursor: pointer;
    }
    .navbar-toggle span {
        width: 24px;
        height: 3px;
        background: var(--accent);
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    .navbar-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 10px;
        padding: 20px 0 10px;
        margin-top: 15px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .navbar-nav.active {
        display: flex;
    }
    .navbar-nav li {
        width: 100%;
    }
    .navbar-nav a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 14px 20px;
        background: rgba(255,255,255,0.05);
        border-radius: 12px;
        font-size: 1.05rem;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 1px solid rgba(255,255,255,0.08);
    }
    .navbar-nav a:hover,
    .navbar-nav a:active {
        background: var(--accent);
        color: #000;
    }
    .navbar-nav .nav-icon {
        font-size: 1.2rem;
    }
    .navbar-nav .btn-phone {
        background: linear-gradient(135deg, var(--accent), #00c853);
        color: #000;
        font-weight: 600;
        border: none;
        box-shadow: 0 4px 15px rgba(0,230,118,0.3);
    }
    
    /* ----- TRUST BAR MOBILE ----- */
    .trust-bar {
        padding: 25px 15px;
        background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 100%);
    }
    .trust-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .trust-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 18px 12px;
        background: rgba(255,255,255,0.05);
        border-radius: 14px;
        border: 1px solid rgba(255,255,255,0.08);
    }
    .trust-icon {
        font-size: 1.8rem;
    }
    .trust-item span:last-child {
        font-size: 0.85rem;
        color: rgba(255,255,255,0.9);
        text-align: center;
        font-weight: 500;
    }
    
    /* ----- FOOTER MOBILE ----- */
    .footer {
        padding: 40px 15px 30px;
        background: linear-gradient(180deg, #0d0d1a 0%, #000 100%);
    }
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    
    /* Chak Seksyon Footer */
    .footer-col {
        background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
        border-radius: 20px;
        padding: 25px 20px;
        border: 1px solid rgba(255,255,255,0.1);
        text-align: center;
    }
    
    /* Tit Seksyon */
    .footer-col h4 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 1.15rem;
        color: #fff;
        margin-bottom: 18px;
        padding-bottom: 15px;
        border-bottom: 2px solid var(--accent);
    }
    .footer-col h4 .brand-icon {
        font-size: 1.4rem;
    }
    
    /* Deskripsyon */
    .footer-col p {
        font-size: 0.95rem;
        line-height: 1.7;
        color: rgba(255,255,255,0.75);
    }
    
    /* Lis Lyen */
    .footer-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .footer-col ul li {
        margin: 0;
    }
    
    /* Bouton Lyen */
    .footer-col ul a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 16px 20px;
        background: rgba(255,255,255,0.08);
        border-radius: 14px;
        font-size: 1.05rem;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 1px solid rgba(255,255,255,0.12);
        font-weight: 500;
    }
    .footer-col ul a:hover,
    .footer-col ul a:active {
        background: var(--accent);
        color: #000;
        transform: translateY(-2px);
        border-color: var(--accent);
        box-shadow: 0 6px 20px rgba(0,230,118,0.25);
    }
    
    /* Kontakte Nou - Bouton Espesyal */
    .footer-col:last-child ul a {
        background: linear-gradient(135deg, var(--accent) 0%, #00c853 100%);
        color: #000;
        font-weight: 600;
        font-size: 1.1rem;
        padding: 18px 20px;
        border: none;
        box-shadow: 0 4px 20px rgba(0,230,118,0.35);
    }
    .footer-col:last-child ul a:hover,
    .footer-col:last-child ul a:active {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0,230,118,0.45);
    }
    
    /* Copyright */
    .footer-bottom {
        margin-top: 30px;
        padding-top: 25px;
        border-top: 1px solid rgba(255,255,255,0.1);
        text-align: center;
    }
    .footer-bottom p {
        font-size: 0.85rem;
        color: rgba(255,255,255,0.5);
        margin-bottom: 8px;
    }
    .footer-bottom .powered-by {
        font-size: 0.8rem;
    }
    .footer-bottom .powered-by a {
        color: var(--accent);
        text-decoration: none;
    }
}

/* ----- EXTRA SMALL DEVICES (480px) ----- */
@media (max-width: 480px) {
    .navbar .container {
        padding: 0 12px;
    }
    .navbar-brand {
        font-size: 1.15rem;
    }
    .brand-icon {
        font-size: 1.3rem;
    }
    .navbar-toggle {
        padding: 8px 10px;
    }
    .navbar-toggle span {
        width: 20px;
        height: 2px;
    }
    .navbar-nav a {
        padding: 12px 16px;
        font-size: 1rem;
    }
    
    .trust-items {
        gap: 10px;
    }
    .trust-item {
        padding: 15px 10px;
    }
    .trust-icon {
        font-size: 1.5rem;
    }
    .trust-item span:last-child {
        font-size: 0.8rem;
    }
    
    .footer {
        padding: 30px 12px 25px;
    }
    .footer-col {
        padding: 20px 16px;
        border-radius: 16px;
    }
    .footer-col h4 {
        font-size: 1.05rem;
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
    .footer-col p {
        font-size: 0.9rem;
    }
    .footer-col ul a {
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: 12px;
    }
    .footer-col:last-child ul a {
        padding: 16px 18px;
        font-size: 1.05rem;
    }
}
