/* Import Google Fonts - American Style */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=Oswald:wght@400;500;600;700&family=Open+Sans:wght@300;400;600;700&display=swap');

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1180px;
    margin: 0 auto;
    background-color: #f8f9fa;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

h2 {
    font-size: 2.5rem;
    color: #1a365d;
    border-bottom: 3px solid #e53e3e;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.5rem;
    color: #2d3748;
}

/* Hero Section - American Flag Inspired */
#hero {
    min-height: 430px;
    background: linear-gradient(135deg,
        #1e3a8a 0%,
        #3b82f6 25%,
        #ffffff 25%,
        #ffffff 50%,
        #dc2626 50%,
        #dc2626 75%,
        #ffffff 75%,
        #ffffff 100%);
    background-size: 40px 40px;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
        rgba(30, 58, 138, 0.8) 0%,
        rgba(220, 38, 38, 0.6) 50%,
        rgba(30, 58, 138, 0.8) 100%);
    z-index: 1;
}

#hero .container {
    position: relative;
    z-index: 2;
}

#hero h1 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 4rem;
}

#hero h2 {
    color: #f7fafc;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border: none;
    font-weight: 400;
    text-transform: none;
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button - American Style */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #dc2626, #b91c1c);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
    border: 3px solid #ffffff;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.4);
    background: linear-gradient(45deg, #b91c1c, #991b1b);
}

/* Section Styling with Contrast */
section {
    padding: 60px 0;
}

#hero {
    padding: 80px 0;
}

#products {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-top: 5px solid #1e40af;
}

#specialists {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
}

#specialists h2 {
    color: #ffffff;
    border-bottom-color: #dc2626;
}

#reviews {
    background: linear-gradient(135deg, #fef5e7 0%, #fed7aa 100%);
    border-top: 5px solid #dc2626;
}

#subscribe {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    color: white;
}

#subscribe h2 {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

#contact {
    background: linear-gradient(135deg, #374151 0%, #111827 100%);
    color: white;
}

#contact h2 {
    color: #ffffff;
    border-bottom-color: #dc2626;
}

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

.product {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 5px solid #dc2626;
    transition: transform 0.3s ease;
}

.product:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product h3 {
    color: #1a365d;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #dc2626;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 20px;
}

.product ul {
    list-style: none;
    padding: 0;
}

.product li {
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 25px;
}

.product li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

/* Article Styling */
.trading-article {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-left: 8px solid #1e40af;
    margin-top: 40px;
}

.trading-article h3 {
    color: #1a365d;
    font-size: 2rem;
    margin-bottom: 25px;
    border-bottom: 2px solid #dc2626;
    padding-bottom: 10px;
}

.trading-article p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.8;
}

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

.specialist {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.specialist:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.specialist .title {
    color: #fed7aa;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.review {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-top: 5px solid #1e40af;
    position: relative;
}

.review::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #dc2626;
    font-family: serif;
}

.rating {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Form Styling */
form {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    max-width: 600px;
    margin: 0 auto;
}

input[type="email"] {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

input[type="email"]:focus {
    outline: none;
    border-color: #dc2626;
    background: white;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

button[type="submit"] {
    width: 100%;
    background: linear-gradient(45deg, #dc2626, #b91c1c);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.4);
    background: linear-gradient(45deg, #b91c1c, #991b1b);
}

/* Map Container */
.map-container {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #111827 0%, #000000 100%);
    color: white;
    text-align: center;
    padding: 30px 0;
    border-top: 3px solid #dc2626;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    #hero h2 {
        font-size: 1.4rem;
    }

    #hero p {
        font-size: 1rem;
    }

    h2 {
        font-size: 2rem;
    }

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

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

    .trading-article {
        padding: 25px;
    }

    .trading-article h3 {
        font-size: 1.5rem;
    }

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

    form {
        padding: 25px;
    }

    section {
        padding: 40px 0;
    }

    #hero {
        min-height: 350px;
        padding: 60px 0;
    }
}

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

    #hero h2 {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .price {
        font-size: 2rem;
    }

    .trading-article h3 {
        font-size: 1.3rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}
