/* ============================================
   style.css - Design complet de FOUMBOT
   Version finale
   ============================================ */

/* ============================================
   1. VARIABLES
   ============================================ */
:root {
    --primary: #1a3a6b;
    --primary-dark: #0f2a4a;
    --primary-light: #2a5a8b;
    --secondary: #2e8b57;
    --secondary-light: #3cb371;
    --accent: #e67e22;
    --accent-light: #f39c12;
    --bg-light: #f4f7fc;
    --text-dark: #1a2a3a;
    --text-gray: #6b7a8a;
    --text-light: #ffffff;
    --border: #e1e8f0;
    --shadow: 0 2px 12px rgba(26, 58, 107, 0.08);
    --shadow-hover: 0 8px 30px rgba(26, 58, 107, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============================================
   2. RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font);
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
}

/* ============================================
   3. TOP BAR - Logo + Connexion + Hamburger
   ============================================ */
.top-bar {
    background: #ffffff;
    padding: 8px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-bottom: 2px solid var(--border);
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
}

/* Logo */
.top-bar .logo {
    flex-shrink: 0;
}

.top-bar .logo img {
    height: 40px;
    width: auto;
}

/* Actions droite */
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.top-bar-right a {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.top-bar-right a:hover {
    background: var(--bg-light);
    color: var(--primary);
}

/* Bouton Connexion */
.btn-connexion {
    background: var(--primary);
    color: #fff !important;
    border-radius: 50px !important;
    padding: 6px 16px !important;
    font-weight: 600 !important;
}

.btn-connexion:hover {
    background: var(--primary-dark) !important;
    color: #fff !important;
}

.btn-connexion i {
    margin-right: 4px;
}

.btn-deconnexion {
    color: var(--text-gray) !important;
    font-size: 18px !important;
    padding: 4px 8px !important;
}

.btn-deconnexion:hover {
    color: #dc3545 !important;
    background: transparent !important;
}

/* Wallet badge */
.wallet-badge {
    background: var(--secondary);
    color: #fff !important;
    border-radius: 50px !important;
    padding: 4px 12px !important;
    font-size: 12px !important;
}

.wallet-badge:hover {
    background: var(--secondary-light) !important;
}

.wallet-badge span {
    font-size: 12px;
}

/* Notifications */
.notif-badge {
    position: relative;
}

.notif-badge .badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--accent);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Nom utilisateur */
.user-name {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    flex-shrink: 0;
}

.hamburger:hover {
    background: var(--bg-light);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ============================================
   4. BARRE DE RECHERCHE - En dessous
   ============================================ */
.search-section {
    background: var(--bg-light);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
}

.search-section .search-bar form {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid var(--border);
    border-radius: 50px;
    transition: var(--transition);
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto;
}

.search-section .search-bar form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 58, 107, 0.1);
}

.search-section .search-bar input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 20px;
    font-size: 15px;
    background: transparent;
    color: var(--text-dark);
    font-family: var(--font);
    min-width: 80px;
}

.search-section .search-bar input::placeholder {
    color: var(--text-gray);
    font-size: 14px;
}

.search-section .search-bar button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
    flex-shrink: 0;
}

.search-section .search-bar button:hover {
    background: var(--primary-dark);
}

/* ============================================
   5. NAVIGATION PRINCIPALE (Desktop)
   ============================================ */
.main-nav {
    background: var(--primary);
    padding: 0;
    border-bottom: 3px solid var(--accent);
    width: 100%;
}

.nav-list {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    padding: 0 8px;
}

.nav-list > li {
    position: relative;
}

.nav-list > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-light);
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.nav-list > li > a:hover {
    background: rgba(255, 255, 255, 0.08);
    border-bottom-color: var(--accent);
}

.nav-list > li > a i {
    font-size: 13px;
}

/* Dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-hover);
    padding: 6px 0;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 8px 18px;
    color: var(--text-dark);
    font-size: 13px;
    transition: var(--transition);
    border-left: 3px solid transparent;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary);
    border-left-color: var(--accent);
}

/* ============================================
   6. MENU HAMBURGER (Side Menu)
   ============================================ */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

.menu-overlay.active {
    display: block;
}

.side-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
    transition: left 0.35s ease;
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.15);
    -webkit-overflow-scrolling: touch;
}

.side-menu.open {
    left: 0;
}

.side-menu * {
    visibility: visible;
    opacity: 1;
}

.side-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 10;
    min-height: 56px;
}

.side-menu-header .side-logo img {
    height: 32px;
    width: auto;
}

.close-menu {
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    padding: 6px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.close-menu:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Side user */
.side-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}

.side-user .user-avatar {
    font-size: 34px;
    color: var(--primary);
    flex-shrink: 0;
}

.side-user .user-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.side-user .user-wallet {
    font-size: 12px;
    color: var(--secondary);
}

/* Side menu list */
.side-menu-list {
    padding: 4px 0 80px 0;
}

.side-menu-list > li {
    border-bottom: 1px solid #f5f7fa;
}

.side-menu-list > li > a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--text-dark);
    font-size: 14px;
    transition: var(--transition);
    text-decoration: none;
    min-height: 44px;
}

.side-menu-list > li > a:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.side-menu-list > li > a i:first-child {
    width: 20px;
    color: var(--primary);
    font-size: 15px;
    flex-shrink: 0;
}

.side-menu-list .has-submenu > a .fa-chevron-right {
    margin-left: auto;
    transition: var(--transition);
    font-size: 12px;
    flex-shrink: 0;
}

.side-menu-list .has-submenu.open > a .fa-chevron-right {
    transform: rotate(90deg);
}

.submenu {
    display: none;
    background: #f8fafc;
    padding: 2px 0;
}

.submenu.open {
    display: block;
}

.submenu li a {
    display: block;
    padding: 8px 16px 8px 46px;
    font-size: 13px;
    color: var(--text-gray);
    transition: var(--transition);
    text-decoration: none;
}

.submenu li a:hover {
    color: var(--primary);
    background: rgba(26, 58, 107, 0.05);
}

.menu-divider {
    height: 1px;
    background: var(--border);
    margin: 6px 16px;
}

/* ============================================
   7. FOOTER
   ============================================ */
.main-footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 40px 0 0;
    margin-top: auto;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.8;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.footer-contact li i {
    color: var(--accent);
    width: 18px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 12px;
    opacity: 0.7;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links {
    display: flex;
    gap: 16px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 12px;
}

.footer-links a:hover {
    color: var(--accent);
}

/* ============================================
   8. COMPOSANTS GLOBAUX
   ============================================ */

/* Boutons */
.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary);
    color: #fff !important;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 58, 107, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff !important;
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Cartes */
.card {
    background: #ffffff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.card-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-image img {
    transform: scale(1.03);
}

.card-body {
    padding: 16px 18px;
}

.card-body h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.card-body h3 a {
    color: var(--text-dark);
    transition: var(--transition);
}

.card-body h3 a:hover {
    color: var(--primary);
}

.card-body p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 10px;
}

.card-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--text-gray);
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-category {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.grid-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

/* Sections */
.section {
    padding: 40px 0;
}

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

.section-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

.section-header h2 i {
    color: var(--primary);
    margin-right: 8px;
}

.section-header .see-all {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.section-header .see-all:hover {
    color: var(--primary);
}

.section-header .see-all i {
    transition: var(--transition);
}

.section-header .see-all:hover i {
    transform: translateX(4px);
}

.section.bg-light {
    background: var(--bg-light);
}

/* Alertes / Flash messages */
.flash-message {
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    margin: 10px 20px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.flash-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.flash-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.flash-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.flash-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.flash-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    color: inherit;
    padding: 0 4px;
}

.flash-close:hover {
    opacity: 1;
}

/* ============================================
   9. RESPONSIVE
   ============================================ */

/* ---- Tablettes ---- */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex !important;
    }

    /* Cacher le wallet sur tablette si besoin */
    .wallet-badge {
        display: none !important;
    }

    /* Connexion visible sur tablette */
    .btn-connexion {
        display: flex !important;
        padding: 4px 12px !important;
        font-size: 12px !important;
    }

    .search-section .search-bar input {
        font-size: 14px;
        padding: 10px 16px;
    }

    .search-section .search-bar button {
        padding: 10px 16px;
        font-size: 14px;
    }

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

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

/* ---- Mobiles ---- */
@media (max-width: 768px) {
    /* Top bar - mobile */
    .top-bar {
        padding: 6px 0;
    }

    .top-bar .logo img {
        height: 32px;
    }

    .top-bar-right {
        gap: 4px;
    }

    .btn-connexion {
        font-size: 11px !important;
        padding: 4px 10px !important;
    }

    .btn-connexion span {
        display: none;
    }

    .btn-connexion i {
        font-size: 16px;
        margin: 0;
    }

    .wallet-badge span {
        display: none;
    }

    .wallet-badge {
        padding: 4px 8px !important;
        font-size: 14px !important;
    }

    .notif-badge i {
        font-size: 18px;
    }

    .user-name {
        display: none;
    }

    .btn-deconnexion {
        font-size: 16px !important;
        padding: 4px 6px !important;
    }

    .hamburger {
        display: flex !important;
    }

    .hamburger span {
        width: 18px;
        height: 2.5px;
    }

    /* Recherche - mobile */
    .search-section {
        padding: 8px 0;
    }

    .search-section .search-bar input {
        font-size: 13px;
        padding: 8px 14px;
    }

    .search-section .search-bar input::placeholder {
        font-size: 12px;
    }

    .search-section .search-bar button {
        padding: 8px 14px;
        font-size: 13px;
    }

    .side-menu {
        width: 85%;
        max-width: 300px;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .section {
        padding: 25px 0;
    }

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

    .section-header .see-all {
        font-size: 12px;
    }

    .card-body h3 {
        font-size: 14px;
    }

    .card-body p {
        font-size: 13px;
    }
}

/* ---- Très petits mobiles ---- */
@media (max-width: 400px) {
    .top-bar .logo img {
        height: 28px;
    }

    .btn-connexion {
        font-size: 10px !important;
        padding: 3px 8px !important;
    }

    .btn-connexion i {
        font-size: 14px;
    }

    .wallet-badge {
        padding: 3px 6px !important;
        font-size: 12px !important;
    }

    .notif-badge i {
        font-size: 16px;
    }

    .btn-deconnexion {
        font-size: 14px !important;
        padding: 3px 4px !important;
    }

    .hamburger span {
        width: 16px;
        height: 2px;
    }

    .search-section .search-bar input {
        font-size: 12px;
        padding: 6px 12px;
    }

    .search-section .search-bar button {
        padding: 6px 12px;
        font-size: 12px;
    }

    .side-menu {
        width: 90%;
        max-width: 280px;
    }

    .container {
        padding: 0 12px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* ============================================
   10. UTILITAIRES
   ============================================ */
.text-center {
    text-align: center;
}

.text-gray {
    color: var(--text-gray);
}

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

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.hidden {
    display: none !important;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}
/* ============================================
   11. HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
}

.hero-title .highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* Hero actions - boutons avec espacement */
.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-actions .btn-primary {
    background: #fff;
    color: var(--primary) !important;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.hero-actions .btn-secondary {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
}

.hero-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

/* ============================================
   12. RESPONSIVE - HERO
   ============================================ */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 16px;
        padding: 0 10px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 15px;
        justify-content: center;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .hero-actions .btn-secondary {
        border-width: 2px;
    }
}

@media (max-width: 400px) {
    .hero {
        padding: 30px 0;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-actions {
        max-width: 100%;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        padding: 10px 16px;
        font-size: 14px;
    }
}