/* FBI Style CSS for Elephant Finance */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

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

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #0a0a0a;
    max-width: 1180px;
    margin: 0 auto;
    overflow-x: hidden;
}

/* Header - Block 1: Offer */
header {
    min-height: 430px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #533483 75%, #e94560 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    opacity: 0.3;
    z-index: 1;
}

header * {
    position: relative;
    z-index: 2;
}

header h1 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
    margin-bottom: 15px;
    letter-spacing: -2px;
}

header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 35px;
    color: #e0e0e0;
    font-weight: 400;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #e94560, #ff6b6b);
    color: #ffffff;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.3);
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(233, 69, 96, 0.4);
    border-color: #ffd700;
}

/* Section Styles */
section {
    padding: 80px 20px;
    margin: 0;
}

section:nth-child(even) {
    background: #111111;
}

section:nth-child(odd) {
    background: #1a1a1a;
}

section h2 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #e94560, #ffd700);
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product {
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.product:hover {
    transform: translateY(-8px);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.product h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.4rem;
    color: #ffd700;
    margin-bottom: 15px;
    font-weight: 600;
}

.product .price {
    font-size: 2rem;
    font-weight: 800;
    color: #e94560;
    margin-bottom: 15px;
    font-family: 'JetBrains Mono', monospace;
}

.product p:last-child {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Article Styling */
.buying-guide {
    background: linear-gradient(135deg, #0f3460, #1a1a2e);
    padding: 50px;
    border-radius: 15px;
    margin-top: 60px;
    border: 2px solid #e94560;
    box-shadow: 0 15px 50px rgba(233, 69, 96, 0.2);
    position: relative;
    overflow: hidden;
}

.buying-guide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(45deg, transparent 49%, rgba(255,215,0,0.05) 49%, rgba(255,215,0,0.05) 51%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(233,69,96,0.05) 49%, rgba(233,69,96,0.05) 51%, transparent 51%);
    background-size: 20px 20px;
    z-index: 1;
}

.buying-guide * {
    position: relative;
    z-index: 2;
}

.buying-guide h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.buying-guide p {
    color: #e0e0e0;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Specialists and Reviews Grid */
.specialists-grid,
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.specialist,
.review {
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.specialist:hover,
.review:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.specialist h3,
.review h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 10px;
}

.specialist p strong {
    color: #e94560;
    font-weight: 600;
}

.rating {
    font-size: 1.2rem;
    margin-top: 15px;
}

/* Form Styling */
#subscribe-form {
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    border: 2px solid #e94560;
    border-radius: 15px;
    margin: 0 20px;
}

#subscribe-form h2 {
    color: #ffffff;
}

#subscribe-form p {
    text-align: center;
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 40px;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
    gap: 20px;
}

input[type="email"] {
    padding: 18px 25px;
    border: 2px solid #333;
    border-radius: 8px;
    background: #2a2a2a;
    color: #e0e0e0;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

input[type="email"]:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

input[type="email"]::placeholder {
    color: #666;
}

button {
    padding: 18px 40px;
    background: linear-gradient(45deg, #e94560, #ff6b6b);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.3);
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(233, 69, 96, 0.4);
}

/* Contact Section */
#contact {
    background: linear-gradient(135deg, #0f3460, #1a1a2e);
    border-radius: 15px;
    margin: 0 20px;
    border: 2px solid #ffd700;
}

.contact-info {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-info strong {
    color: #ffd700;
    font-weight: 600;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Footer */
footer {
    background: #0a0a0a;
    padding: 40px 20px;
    text-align: center;
    border-top: 2px solid #333;
}

footer p {
    font-family: 'JetBrains Mono', monospace;
    color: #666;
    margin-bottom: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    header {
        min-height: 400px;
        padding: 40px 15px;
    }

    header h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    header h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    header p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

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

    section {
        padding: 60px 15px;
    }

    section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .products-grid,
    .specialists-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .buying-guide {
        padding: 30px 20px;
        margin-top: 40px;
    }

    .buying-guide h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .buying-guide p {
        font-size: 1rem;
    }

    form {
        gap: 15px;
    }

    input[type="email"],
    button {
        padding: 15px 20px;
        font-size: 1rem;
    }

    #subscribe-form,
    #contact {
        margin: 0 15px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }

    header h2 {
        font-size: 1.2rem;
    }

    section h2 {
        font-size: 1.8rem;
    }

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

    .product,
    .specialist,
    .review {
        padding: 25px 20px;
    }

    .buying-guide {
        padding: 25px 15px;
    }
}
