/* 
   Lotus365 - Ultra Premium Visual System 
   "Real Lotus" High Fidelity
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@600;700;800&display=swap');

:root {
    --primary-green: #006F43;
    --dark-green: #004D33;
    --deep-green: #002e1f;
    --accent-yellow: #ffeb3b;
    /* Lighter, logo-like yellow */
    --accent-gold: linear-gradient(135deg, #ffeb3b 0%, #fbc02d 100%);
    --accent-gold-hover: linear-gradient(135deg, #fff176 0%, #fdd835 100%);
    --white: #FFFFFF;
    --container-width: 1150px;
    --shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-deep: 0 20px 50px rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--deep-green);
}

::-webkit-scrollbar-thumb {
    background: #006F43;
    border-radius: 5px;
    border: 2px solid var(--deep-green);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-yellow);
}

::selection {
    background: var(--accent-yellow);
    color: #000;
}

body {
    font-family: 'Inter', sans-serif;
    color: #fff;
    /* User requested #0F8261 and "thoda sa isse halka" (lighter) */
    background: radial-gradient(circle at 50% 0%, #15a97d 0%, #0F8261 100%);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- BETTING UI --- */
.col-sports li {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.col-sports li:hover,
.col-sports li.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-yellow);
    border-left: 4px solid var(--accent-yellow);
}

.market-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    font-weight: 700;
}

.odds-header {
    display: flex;
    gap: 5px;
    width: 280px;
    /* Fixed width for odds area */
    justify-content: space-around;
}

.match-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}

.match-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.match-info {
    flex: 1;
}

.live-tag {
    background: #e53935;
    color: #fff;
    padding: 2px 6px;
    font-size: 10px;
    border-radius: 4px;
    margin-right: 8px;
    font-weight: 800;
    vertical-align: middle;
    animation: pulse 1.5s infinite;
}

.date-tag {
    color: #999;
    font-size: 11px;
    display: block;
    margin-bottom: 4px;
}

.match-time {
    display: block;
    font-size: 12px;
    color: var(--accent-yellow);
    margin-top: 4px;
}

.match-odds {
    display: flex;
    gap: 5px;
    width: 280px;
}

.odd-btn {
    flex: 1;
    height: 40px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.1s;
}

.odd-btn:active {
    transform: scale(0.95);
}

.odd-btn.back {
    background: #72bbef;
    /* Standard Exchange Blue */
    color: #000;
}

.odd-btn.back:hover {
    background: #4fa3d8;
}

.odd-btn.lay {
    background: #faa9ba;
    /* Standard Exchange Pink */
    color: #000;
}

.odd-btn.lay:hover {
    background: #f08ca0;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

/* --- HEADER --- */
.navbar {
    background-color: #0F8261;
    /* Updated to match new theme */
    height: 70px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}



/* Hero Headline */
.hero-headline-wrapper {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.hero-headline-wrapper h1 {
    font-size: 3.5rem;
    /* Slightly larger */
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    /* Solid white for "real" crisp look, or slight gradient */
    background: linear-gradient(to bottom, #ffffff 30%, #e0e0e0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    line-height: 1.1;
    /* Removed text-shadow as requested */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 42px;
    transition: transform 0.3s;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo img {
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.nav-items {
    display: flex;
    gap: 25px;
    list-style: none;
    /* Removed defaults */
    margin: 0;
    padding: 0;
}

/* Explicitly remove any pseudo-element dots if present */
.nav-items li::before,
.nav-items li::after {
    content: none !important;
    display: none !important;
}

.nav-items a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s;
    position: relative;
}

.nav-items a:hover {
    color: var(--accent-yellow);
}

.nav-items a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--accent-yellow);
    transition: width 0.3s;
}

.nav-items a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 12px;
    margin-left: 25px;
}

/* Premium Buttons */
.btn-login-nav {
    padding: 8px 24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: white;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-login-nav:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
    box-shadow: 0 0 10px rgba(247, 209, 51, 0.3);
}

.btn-register-nav {
    padding: 8px 24px;
    background: var(--accent-gold);
    color: #000;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.btn-register-nav:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-minimal {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-minimal:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-2px);
}


/* --- MOBILE MENU (Glassmorphism) --- */
.hamburger,
.mobile-menu,
.mobile-menu-overlay {
    display: none;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-links,
    .hamburger {
        display: none;
    }

    .hamburger {
        display: block;
        font-size: 26px;
        cursor: pointer;
        color: #fff;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-slider {
        margin-top: 60px;
        /* Space for fixed navbar */
        border-radius: 0;
        aspect-ratio: 16/9;
        /* Taller for mobile */
    }

    .hero-headline-wrapper h1 {
        font-size: 2rem;
        line-height: 1.0;
        /* Reduced line-height for mobile */
        margin-bottom: 5px;
    }

    .section-title h2,
    h2.section-title {
        font-size: 20px !important;
        line-height: 1.2;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 columns on mobile */
    }

    .step-card:last-child {
        grid-column: span 2;
        /* Centered last item */
    }

    .mobile-menu {
        display: flex !important;
        /* Force flex in mobile */
        position: fixed;
        top: 0;
        right: -100%;
        /* Start off-screen */
        width: 85%;
        height: 100vh;
        background: rgba(0, 30, 20, 0.98);
        /* Less transparent for readability */
        backdrop-filter: blur(15px);
        z-index: 9999;
        /* Highest z-index */
        padding: 70px 25px 25px;
        flex-direction: column;
        transition: right 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        /* Specific transition */
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
        gap: 15px;
    }

    .mobile-menu.active {
        right: 0 !important;
        /* Force on-screen */
    }

    .mobile-menu.active {
        right: 0;
    }

    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        cursor: pointer;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: 0.3s;
    }

    .mobile-menu-close:hover {
        background: var(--action-red);
        border-color: var(--action-red);
    }

    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 1999;
        opacity: 0;
        pointer-events: none;
        transition: 0.3s;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-nav-link {
        color: rgba(255, 255, 255, 0.9);
        font-size: 16px;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        text-decoration: none;
        font-weight: 500;
    }

    .mobile-nav-link:hover {
        color: var(--accent-yellow);
        padding-left: 10px;
    }

    .mobile-buttons {
        display: flex;
        gap: 10px;
        margin-top: 25px;
    }

    .mobile-buttons .btn {
        flex: 1;
        text-align: center;
    }
}


/* --- HERO SLIDER --- */
.hero-slider {
    position: relative;
    width: 95%;
    max-width: 1200px;
    max-width: 1200px;
    margin: 20px auto;
    aspect-ratio: 21 / 9;
    max-height: 500px;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    pointer-events: none;
    display: none;
    /* User requested to hide buttons */
}

.control-btn {
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 18px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: 0.3s;
}

.control-btn:hover {
    background: var(--accent-yellow);
    color: #000;
    border-color: var(--accent-yellow);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    margin: 0 4px;
    transition: 0.3s;
}

.dot.active {
    background: var(--accent-yellow);
    width: 24px;
}


/* --- REAL FORM (Green Card) --- */
.section {
    padding: 40px 0;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.reg-card-container {
    background: linear-gradient(180deg, #0F8261 0%, #005c3b 100%);
    padding: 35px 30px;
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
    border-radius: 16px;
    box-shadow: var(--shadow-deep);
    position: relative;
    border-top: 4px solid var(--accent-yellow);
}

.reg-top-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reg-logo-img {
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.reg-vertical-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.reg-input-vertical {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
    border-radius: 0;
    font-family: 'Inter', sans-serif;
}

.reg-input-vertical::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.reg-input-vertical:focus {
    border-bottom-color: var(--accent-yellow);
    padding-left: 5px;
}

.btn-login-white {
    width: 100%;
    padding: 14px;
    background: #fff;
    color: #004D33;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.btn-login-white:hover {
    background: #f2f2f2;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.btn-demo-yellow {
    width: 100%;
    padding: 14px;
    background: var(--accent-gold);
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.btn-demo-yellow:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(247, 209, 51, 0.4);
}


/* --- UI ELEMENTS --- */
/* --- PREMIUM UI ELEMENTS --- */
.glass-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.4);
}

.section-title h2,
h2.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px !important;
    /* Larger for impact */
    background: var(--accent-gold);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    font-weight: 800;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 30px;
    position: relative;
    letter-spacing: -0.5px;
}

/* Fancy Underline (Gold Gradient) */
.section-title h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(247, 209, 51, 0.5);
}

.content-block p,
.content-list li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Pro Table */
.platform-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(0, 0, 0, 0.3);
    /* Transparent dark */
    backdrop-filter: blur(5px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-table td {
    padding: 18px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 15px;
}

.platform-table tr:first-child td {
    background: linear-gradient(90deg, rgba(247, 209, 51, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    font-weight: 700;
    color: #fff;
    border-bottom: 1px solid rgba(247, 209, 51, 0.2);
    font-size: 16px;
}

.platform-table tr:last-child td {
    border-bottom: none;
}

.platform-table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
}

.platform-table strong {
    color: var(--accent-yellow);
}


/* --- SPLIT LAYOUT --- */
.split-container {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-deep);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.split-text {
    flex: 1;
}

@media (max-width: 900px) {
    .split-container {
        flex-direction: column;
    }

    .reverse-mobile {
        flex-direction: column-reverse;
        /* Put image on top if needed, or normal column */
    }
}

/* --- STEPS GUIDE --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.step-card {
    text-align: center;
    padding: 20px 10px !important;
    position: relative;
    overflow: hidden;
}

.step-number {
    font-size: 24px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 5px;
    right: 10px;
    font-family: 'Montserrat', sans-serif;
}

.step-title {
    font-size: 16px;
    color: var(--accent-yellow);
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 700;
}

.step-desc {
    font-size: 13px;
    color: #fff;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid .step-card:last-child {
        grid-column: span 2;
    }
}

/* Game Lobby */
.lobby-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.lobby-sidebar {
    width: 250px;
    background: #fff;
    border-radius: 8px;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.lobby-sidebar-item {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lobby-sidebar-item:hover {
    background: #fafafa;
    color: var(--dark-green);
    padding-left: 25px;
}

.lobby-sidebar-item.active {
    background: #f0fdf4;
    color: var(--primary-green);
    border-left: 4px solid var(--primary-green);
    font-weight: 700;
}

.lobby-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.game-card-red {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: 16/10;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.game-card-red::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.game-card-red:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-yellow);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(247, 209, 51, 0.2);
}

.game-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 15px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}


/* Betting UI */
.betting-ui {
    display: flex;
    background: #004d2b;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-deep);
}

.col-sports {
    width: 220px;
    background: #003820;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.col-sports li {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: 0.2s;
    font-size: 14px;
    opacity: 0.8;
}

.col-sports li:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
}

.col-sports li.active {
    color: var(--accent-yellow);
    font-weight: 700;
    opacity: 1;
    background: rgba(247, 209, 51, 0.1);
    border-left: 3px solid var(--accent-yellow);
}

.col-matches {
    flex: 1;
    padding: 15px;
    background: #004d2b;
}

.match-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid transparent;
    transition: 0.2s;
}

.match-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
}

.odds-btn {
    padding: 6px 15px;
    background: #2a2a2a;
    border-radius: 4px;
    margin-left: 8px;
    color: var(--accent-yellow);
    border: 1px solid #444;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: 0.2s;
}

.odds-btn:hover {
    background: var(--accent-yellow);
    color: #000;
    border-color: var(--accent-yellow);
}

.col-slip {
    width: 260px;
    background: #fff;
    color: #000;
    padding: 20px;
}


/* Footer */
footer {
    background: #002418;
    padding: 60px 0 30px;
    margin-top: 60px;
    border-top: 4px solid var(--accent-yellow);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer h3 {
    color: var(--accent-yellow);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer p,
.footer a {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 12px;
    display: block;
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover {
    color: #fff;
    padding-left: 5px;
}


/* Utils */
.btn-whatsapp-block {
    display: block;
    width: 100%;
    max-width: 400px;
    width: 100%;
    max-width: 400px;
    margin: 30px auto;
    background: var(--accent-gold);
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(247, 209, 51, 0.3);
    transition: 0.3s;
}

.btn-whatsapp-block:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(247, 209, 51, 0.5);
    background: var(--accent-gold-hover);
    color: #000;
}

.text-center {
    text-align: center;
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-yellow);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #fff;
    font-size: 16px;
}

.faq-question h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.faq-toggle {
    font-size: 20px;
    transition: transform 0.3s ease;
    color: var(--accent-yellow);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    /* Adjust as needed */
    padding-bottom: 20px;
    transition: max-height 0.3s ease-in;
}



.text-yellow {
    color: var(--accent-yellow);
}


/* PRECISE MOBILE TWEAKS */
@media (max-width: 768px) {

    .container,
    .section {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* --- MOBILE BETTING UI REFINEMENT (Perfect Fix) --- */

    .betting-ui {
        flex-direction: column;
        height: auto;
        background: transparent;
        /* Remove card bg to let items breathe if needed, but card is fine */
        border: none;
    }

    /* 1. Horizontal Scrolling Sports Menu */
    .col-sports {
        width: 100%;
        border-right: none;
        background: transparent;
        padding: 0 0 10px 0;
        /* Reduced bottom spacing */
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        /* Hide scrollbar structure */
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE/Edge */
    }

    .col-sports::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    /* Fix: Target the UL to make items flow horizontally */
    .col-sports ul {
        display: flex;
        gap: 10px;
        padding-bottom: 0;
        /* Removed padding */
        margin: 0;
        /* Ensure no margin */
    }

    .col-sports li {
        border-bottom: none;
        background: rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        /* Pill shape */
        padding: 8px 16px;
        margin: 0;
        font-size: 13px;
        white-space: nowrap;
        flex-shrink: 0;
        /* Prevent shrinking */
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .col-sports li.active {
        background: var(--accent-yellow);
        color: #000;
        border-color: var(--accent-yellow);
        border-left: 1px solid var(--accent-yellow);
        /* Override default desktop border */
        box-shadow: 0 2px 10px rgba(255, 235, 59, 0.3);
    }

    .sport-icon {
        font-size: 14px;
    }

    /* 2. Match Rows - Compact & Clean */
    .market-header {
        display: none;
    }

    .match-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        background: rgba(0, 0, 0, 0.3);
        margin-bottom: 12px;
        border-radius: 12px;
        padding: 15px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .match-row:hover {
        background: rgba(0, 0, 0, 0.4);
    }

    .match-info {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .teams {
        font-size: 15px;
    }

    .match-time {
        font-size: 12px;
        opacity: 0.8;
    }

    /* 3. Odds Buttons - 6 Grid Perfect Fit */
    .match-odds {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        /* Force 6 columns */
        gap: 6px;
        /* Tighter gap */
    }

    .odd-btn {
        height: 38px;
        font-size: 13px;
        border-radius: 6px;
        padding: 0;
        /* Center text */
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        width: 100%;
        /* Fill grid cell */
    }

    .col-slip {
        display: none;
    }

    /* Grid Lobby */
    .lobby-container {
        flex-direction: column;
    }

    .lobby-sidebar {
        width: 100%;
        display: flex;
        overflow-x: auto;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
    }

    .lobby-sidebar-item {
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 20px;
        padding: 8px 16px;
        margin-right: 10px;
        font-size: 13px;
        white-space: nowrap;
    }

    .lobby-sidebar-item.active {
        background: var(--accent-yellow);
        border: none;
        color: #000;
    }

    .lobby-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
    }
}

/* ---------------------------------
   Full Screen Auth Modal
--------------------------------- */
/* ---------------------------------
   Full Screen Auth Modal (Reference Design)
--------------------------------- */
.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.auth-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.auth-modal-content {
    background: #0d6e4b;
    /* Deep Green from Logo */
    width: 100%;
    max-width: 400px;
    padding: 20px 30px 40px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    border-top: 4px solid #ffd700;
    /* Yellow Top Border */
}

.auth-modal-overlay.active .auth-modal-content {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close-btn:hover {
    color: #fff;
}

/* Tabs (Hidden or Subtle for this design, we keep them for functionality) */
.auth-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.auth-tab-btn {
    flex: 1;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-tab-btn.active {
    color: #ffd700;
    border-bottom: 2px solid #ffd700;
}

/* Modal Form Fields (Underline Style) */
.modal-input-group {
    margin-bottom: 25px;
    text-align: left;
    position: relative;
}

.modal-input-group label {
    display: none;
    /* Reference image hides labels or they are placeholders */
}

.modal-input {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.modal-input::placeholder {
    color: #fff;
}

.modal-input:focus {
    border-bottom-color: #ffd700;
}

/* Buttons */
.btn-login-action {
    width: 100%;
    padding: 15px;
    background: #ffffff;
    color: #0d6e4b;
    font-weight: 900;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 15px;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-demo-action {
    width: 100%;
    padding: 15px;
    background: linear-gradient(90deg, #ffd700, #ffc107);
    color: #000;
    font-weight: 900;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-login-action:hover,
.btn-demo-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modal-footer {
    margin-top: 30px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.auth-modal-content {
    background: linear-gradient(135deg, rgba(8, 59, 44, 0.95), rgba(7, 34, 26, 0.98));
    border: 1px solid rgba(255, 215, 0, 0.2);
    width: 100%;
    max-width: 450px;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.auth-modal-overlay.active .auth-modal-content {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close-btn:hover {
    color: var(--accent-yellow);
}

/* Auth Tabs */
.auth-tabs {
    display: flex;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.auth-tab-btn {
    flex: 1;
    background: none;
    border: none;
    color: #fff;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.auth-tab-btn.active {
    color: var(--accent-yellow);
}

.auth-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-yellow);
    box-shadow: 0 -2px 10px var(--accent-yellow);
}

/* Modal Form Fields */
.modal-input-group {
    margin-bottom: 20px;
    text-align: left;
}

.modal-input-group label {
    display: block;
    color: #fff;
    margin-bottom: 8px;
    font-size: 14px;
}

.modal-input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.modal-input:focus {
    border-color: var(--accent-yellow);
}

.btn-full-width {
    width: 100%;
    margin-top: 10px;
    padding: 14px;
    font-size: 16px;
}

.modal-footer {
    margin-top: 20px;
    font-size: 14px;
    color: #fff;
}

.modal-footer a {
    color: var(--accent-yellow);
    text-decoration: none;
}

/* Hide/Show Wrapper */
.auth-pane {
    display: none;
}

.auth-pane.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------------------------------
   Blog Page Styles
--------------------------------- */
.blog-header {
    padding: 120px 0 60px;
    background: linear-gradient(to bottom, #001a13 0%, #003324 100%);
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-yellow);
}

.blog-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    font-size: 12px;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 700;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: var(--accent-yellow);
}

.blog-excerpt {
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-meta {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    font-size: 0.8rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
}

/* ---------------------------------
   Blog Page Styles
--------------------------------- */
.blog-header {
    padding: 120px 0 60px;
    background: linear-gradient(to bottom, #001a13 0%, #003324 100%);
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.blog-card {
    background: linear-gradient(145deg, rgba(8, 59, 44, 0.6), rgba(0, 30, 20, 0.8));
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-yellow);
}

.blog-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

/* Overlay gradient for image text readability if needed, though we separate text now */
.blog-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0.6;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    display: inline-block;
    font-size: 11px;
    color: #000;
    background: var(--accent-yellow);
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 800;
    align-self: flex-start;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.blog-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: var(--accent-yellow);
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
    opacity: 0.9;
}

.blog-meta {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 15px;
    font-size: 0.85rem;
    color: #ffffff;
    /* Changed to white as requested */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Optional icons via CSS if desired, or simplified text */
.blog-meta span:first-child::before {
    content: '👤';
    filter: grayscale(1);
    font-size: 1.1em;
}

.blog-meta span:last-child::before {
    content: '📅';
    filter: grayscale(1);
    font-size: 1.1em;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-yellow);
}

.blog-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    font-size: 12px;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 700;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: var(--accent-yellow);
}

.blog-excerpt {
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-meta {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    font-size: 0.8rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
}

/* ---------------------------------
   Blog Page Styles
--------------------------------- */
.blog-header {
    padding: 120px 0 60px;
    background: linear-gradient(to bottom, #001a13 0%, #003324 100%);
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.blog-card {
    background: linear-gradient(145deg, rgba(8, 59, 44, 0.6), rgba(0, 30, 20, 0.8));
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-yellow);
}

.blog-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

/* Overlay gradient for image text readability if needed, though we separate text now */
.blog-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0.6;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    display: inline-block;
    font-size: 11px;
    color: #000000;
    background: var(--accent-yellow);
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(255, 235, 59, 0.3);
    align-self: flex-start;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.blog-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: var(--accent-yellow);
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
    opacity: 0.9;
}

.blog-meta {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 15px;
    font-size: 0.85rem;
    color: #ffffff;
    /* Changed to white as requested */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Optional icons via CSS if desired, or simplified text */
.blog-meta span:first-child::before {
    content: '👤';
    filter: grayscale(1);
    font-size: 1.1em;
}

.blog-meta span:last-child::before {
    content: '📅';
    filter: grayscale(1);
    font-size: 1.1em;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-yellow);
}

.blog-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    font-size: 12px;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 700;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: var(--accent-yellow);
}

.blog-excerpt {
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-meta {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    font-size: 0.8rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
}

/* ---------------------------------
   Blog Page Styles
--------------------------------- */
.blog-header {
    padding: 120px 0 60px;
    background: linear-gradient(to bottom, #001a13 0%, #003324 100%);
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.blog-card {
    /* Darker, richer green for better text contrast */
    background: linear-gradient(145deg, #052e22, #001a13);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border-color: var(--accent-yellow);
}

.blog-category {
    display: inline-block;
    font-size: 11px;
    color: #000000 !important;
    /* Force Black Text */
    background: var(--accent-yellow);
    padding: 6px 14px;
    border-radius: 4px;
    /* Slightly less rounded for 'premium' look */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 900;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    align-self: flex-start;
}

.blog-title a {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Better readability */
}

/* WhatsApp Large Button */
.btn-whatsapp-large {
    display: inline-block;
    background: linear-gradient(135deg, #25ba0f 0%, #177a08 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-whatsapp-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    filter: brightness(1.1);
}

/* Removing Floating Button Styles if they exist */
.whatsapp-float {
    display: none !important;
}

.blog-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

/* Overlay gradient for image text readability if needed, though we separate text now */
.blog-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0.6;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    display: inline-block;
    font-size: 11px;
    color: #000000;
    background: var(--accent-yellow);
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(255, 235, 59, 0.3);
    align-self: flex-start;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.blog-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: var(--accent-yellow);
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
    opacity: 0.9;
}

.blog-meta {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 15px;
    font-size: 0.85rem;
    color: #ffffff;
    /* Changed to white as requested */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Optional icons via CSS if desired, or simplified text */
.blog-meta span:first-child::before {
    content: '👤';
    filter: grayscale(1);
    font-size: 1.1em;
}

.blog-meta span:last-child::before {
    content: '📅';
    filter: grayscale(1);
    font-size: 1.1em;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-yellow);
}

.blog-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    font-size: 12px;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 700;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: var(--accent-yellow);
}

.blog-excerpt {
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-meta {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    font-size: 0.8rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
}

/* ---------------------------------
   Blog Page Styles
--------------------------------- */
.blog-header {
    padding: 120px 0 60px;
    background: linear-gradient(to bottom, #001a13 0%, #003324 100%);
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.blog-card {
    /* Darker, richer green for better text contrast */
    background: linear-gradient(145deg, #052e22, #001a13);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border-color: var(--accent-yellow);
}

.blog-category {
    display: inline-block;
    font-size: 11px;
    color: #000000 !important;
    /* Force Black Text */
    background: var(--accent-yellow);
    padding: 6px 14px;
    border-radius: 4px;
    /* Slightly less rounded for 'premium' look */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 900;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    align-self: flex-start;
}

.blog-title a {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Better readability */
}

/* WhatsApp Large Button */
/* WhatsApp Large Button */
.btn-whatsapp-large {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffc107);
    /* Yellow Gradient */
    color: #000;
    /* Black Text */
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
}

.btn-whatsapp-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #ffc107, #ffb300);
}

.btn-whatsapp-large img {
    filter: none !important;
    /* Original color (or rely on logo) */
}

@media (max-width: 768px) {
    .btn-whatsapp-large {
        font-size: 14px;
        padding: 15px 25px;
        width: 90%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
}

/* Removing Floating Button Styles if they exist */
.whatsapp-float {
    display: none !important;
}

.blog-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

/* Overlay gradient for image text readability if needed, though we separate text now */
.blog-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0.6;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    display: inline-block;
    font-size: 11px;
    color: #000000;
    background: var(--accent-yellow);
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(255, 235, 59, 0.3);
    align-self: flex-start;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.blog-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: var(--accent-yellow);
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
    opacity: 0.9;
}

.blog-meta {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 15px;
    font-size: 0.85rem;
    color: #ffffff;
    /* Changed to white as requested */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Optional icons via CSS if desired, or simplified text */
.blog-meta span:first-child::before {
    content: '👤';
    filter: grayscale(1);
    font-size: 1.1em;
}

.blog-meta span:last-child::before {
    content: '📅';
    filter: grayscale(1);
    font-size: 1.1em;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-yellow);
}

.blog-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    font-size: 12px;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 700;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: var(--accent-yellow);
}

.blog-excerpt {
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-meta {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    font-size: 0.8rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
}

/* ---------------------------------
   About Us Page Styles
--------------------------------- */

.about-header {
    padding: 100px 0 60px;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, #004D33 0%, #002e1f 100%);
}

.about-page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.about-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    padding: 60px 0;
}

.about-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--accent-yellow);
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    font-size: 1rem;
    line-height: 1.8;
}

/* Features Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
    backdrop-filter: blur(10px);
}

.about-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--accent-yellow);
}

.about-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-card p {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Values Grid (Security, Responsible, Support) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.value-item {
    text-align: left;
    padding: 30px;
    border-left: 3px solid var(--accent-yellow);
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
}

.value-item h3 {
    color: var(--accent-yellow);
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.value-item p {
    color: #fff;
    line-height: 1.7;
}

/* CTA Section */
.about-cta {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(to top, #001a13 0%, transparent 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about-cta h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.btn-join-large {
    display: inline-block;
    padding: 18px 50px;
    background: var(--accent-gold);
    color: #000;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-join-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    background: var(--accent-gold-hover);
}

/* ---------------------------------
   Contact Page Styles
--------------------------------- */

.contact-header {
    padding: 100px 0 40px;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, #004D33 0%, #002e1f 100%);
}

.contact-page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.contact-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 40px;
}

.contact-highlight {
    color: var(--accent-yellow);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    display: block;
}

.contact-form-section {
    padding: 0 0 100px;
    display: flex;
    justify-content: center;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 50px;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    color: var(--accent-yellow);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-yellow);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--accent-gold);
    color: #000;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form-card {
        padding: 30px;
        margin: 0 20px;
    }
}

/* ---------------------------------
   Contact Page Styles
--------------------------------- */

.contact-hero-image {
    max-width: 100%;
    height: auto;
    max-height: 280px;
    /* Increased size as requested */
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.contact-page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.contact-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 40px;
}

.contact-highlight {
    color: var(--accent-yellow);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    display: block;
}

.contact-form-section {
    padding: 0 0 100px;
    display: flex;
    justify-content: center;
}

.contact-form-card {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    width: 100%;
    max-width: 600px;
}

.form-group {
    margin-bottom: 35px;
}

.form-label {
    display: block;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    /* Subtle glass background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    /* Rounded corners */
    color: #fff;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-yellow);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: auto;
    padding: 15px 50px;
    /* Minimal width */
    background: var(--accent-yellow);
    color: #000;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.btn-submit:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form-card {
        padding: 30px;
        margin: 0 20px;
    }
}   
 
/* --- ADVANCED FOOTER (SEO) --- */
.footer-advanced {
    background: #001a13;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    color: #ccc;
    position: relative;
    z-index: 10;
}

.footer-grid-advanced {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 20px;
    font-size: 28px;
    display: block;
}

.footer-logo img {
    display: block;
}

.footer-desc {
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.8;
    max-width: 300px;
}

.footer-heading {
    color: var(--accent-yellow);
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-yellow);
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-yellow);
    transform: translateX(5px);
}

.footer-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-icon {
    color: var(--accent-yellow);
    font-weight: bold;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    transition: 0.3s;
}

.social-icon:hover {
    background: var(--accent-yellow);
    color: #000;
    border-color: var(--accent-yellow);
}

.payment-methods {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.6;
}

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

.footer-bottom-links a {
    color: #999;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
}

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

/* Mobile Footer */
@media (max-width: 768px) {
    .footer-grid-advanced {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-desc {
        margin: 0 auto 25px;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-col {
        align-items: center;
    }
}
