/* File Path: /assets/css/style.css */

:root {
    --primary-gradient: linear-gradient(135deg, #1a237e 0%, #0d47a1 40%, #4a148c 100%); /* Deep Blue to Purple */
    --card-gradient: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    --accent-blue: #29b6f6;
    --text-light: #f5f5f5;
    --text-dark: #2c3e50;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.98);
}

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

body { 
    font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif; 
    line-height: 1.7; color: var(--text-dark); background: #fff; scroll-behavior: smooth;
}

.container { width: 85%; max-width: 1200px; margin: 0 auto; }
.gradient-bg { background: var(--primary-gradient); color: var(--text-light); }

/* --- Modern BridgeStack Navigation --- */
.main-nav {
    position: fixed; top: 0; width: 100%;
    padding: 15px 0; background: var(--glass);
    backdrop-filter: blur(10px); z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 700; font-size: 1.3rem; color: #1a237e; letter-spacing: 1px; }
.sub-logo { font-weight: 300; font-size: 0.9rem; opacity: 0.7; }

.nav-links { display: flex; list-style: none; gap: 25px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; }
.nav-btn { background: #1a237e; color: #fff !important; padding: 10px 20px; border-radius: 25px; transition: 0.3s; }
.nav-btn:hover { background: var(--accent-blue); }

/* --- Hero Section with Deep Gradient --- */
.hero {
    height: 90vh; display: flex; align-items: center; justify-content: center;
    text-align: center; padding-top: 80px; /* Offset for sticky nav */
}

.hero-content h1 { font-size: 4rem; font-weight: 700; letter-spacing: 2px; line-height: 1.2; margin-bottom: 15px; }
.hero-content p { font-size: 1.2rem; font-weight: 300; max-width: 700px; margin: 0 auto 40px; opacity: 0.9; }
.cta-button { 
    text-decoration: none; padding: 15px 40px; background: transparent; 
    border: 2px solid var(--white); color: var(--white); font-weight: 600; border-radius: 30px; 
    text-transform: uppercase; transition: 0.3s; 
}
.cta-button:hover { background: var(--white); color: #1a237e; }

/* --- Content Typography --- */
.content-block { padding: 100px 0; }
.section-title span { color: var(--accent-blue); font-weight: 600; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; }
.section-title h2 { font-size: 2.8rem; font-weight: 700; color: #1a237e; margin-bottom: 30px; }
.section-title p { color: var(--text-gray); max-width: 700px; }
.center-title { text-align: center; margin-bottom: 60px; }
.center-title p { margin: 10px auto 0; }

/* --- About Grid --- */
.about-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; align-items: start; }
.about-text p { margin-bottom: 20px; color: #555; }
.about-highlight { background: #f4f7f6; padding: 30px; border-left: 4px solid var(--accent-blue); border-radius: 4px; font-weight: 600; color: #1a237e; }

/* --- Trading Grid (Stylized Gradient Cards) --- */
.grid-section { padding: 100px 0; background: #fafafa; }
.trading-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.gradient-card { 
    background: var(--primary-gradient); color: var(--text-light); 
    padding: 50px 30px; border-radius: 8px; box-shadow: 0 10px 30px rgba(13, 71, 161, 0.1); 
    transition: 0.3s ease; 
}
.gradient-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(13, 71, 161, 0.2); }
.card-icon { font-size: 2rem; color: var(--accent-blue); margin-bottom: 20px; font-weight: 700; }
.gradient-card h3 { font-size: 1.5rem; margin-bottom: 15px; letter-spacing: 1px; }
.gradient-card p { font-weight: 300; font-size: 0.95rem; opacity: 0.85; }

/* --- Contact Section (Gradient Form - Screenshot 2) --- */
.contact-section { padding: 100px 0; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-info h2 { font-size: 3rem; font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
.contact-info p { font-size: 1.1rem; font-weight: 300; opacity: 0.8; }

.form-container h3 { font-size: 1.5rem; margin-bottom: 30px; font-weight: 600; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }

/* Transparent Bridgestack Inputs */
input, textarea { 
    width: 100%; padding: 15px; background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.1); color: var(--white); 
    border-radius: 4px; font-family: inherit; font-size: 0.9rem; 
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.6); }
input:focus, textarea:focus { outline: none; border-color: var(--accent-blue); background: rgba(255,255,255,0.1); }

textarea { height: 120px; resize: none; margin-bottom: 20px; }

/* reCAPTCHA Styling Fix */
.g-recaptcha { margin-bottom: 20px; transform: scale(0.9); transform-origin: 0 0; }

#submitBtn { 
    width: 100%; padding: 15px; background: transparent; 
    border: 2px solid var(--white); color: var(--white); 
    cursor: pointer; font-weight: 600; text-transform: uppercase; border-radius: 30px; 
    transition: 0.3s; 
}
#submitBtn:hover { background: var(--white); color: #1a237e; }

/* --- Footer --- */
footer { padding: 40px 0; background: #111; color: rgba(255,255,255,0.5); text-align: center; font-size: 0.8rem; }

/* --- Additional Marketing UI Styles --- */
.hero-btns { display: flex; gap: 20px; justify-content: center; align-items: center; }
.btn-text { color: #fff; text-decoration: none; font-weight: 600; font-size: 0.9rem; }

.stats-box { background: #f1f5f9; padding: 40px; border-radius: 10px; display: flex; flex-direction: column; gap: 30px; }
.stat-item h3 { color: var(--accent); font-size: 1.5rem; margin-bottom: 5px; }

.tech-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature-list { list-style: none; margin-top: 20px; }
.feature-list li { padding: 10px 0; border-bottom: 1px solid #e2e8f0; font-weight: 600; color: #334155; }
.feature-list li::before { content: "✓ "; color: var(--accent); }

.card-gradient { background: var(--bg-gradient) !important; color: #fff; }

/* File Path: /assets/css/style.css */

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(15, 23, 42, 0.95); /* Matches your dark gradient */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    display: none; /* Hidden by default, shown via JS */
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1100px;
    margin: 0 auto;
}

.cookie-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
}

.cookie-btns {
    display: flex;
    gap: 10px;
}

.btn-accept {
    background: #4338ca; /* Your accent purple/blue */
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.btn-decline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* Adds space between form fields so they aren't dense */
form { 
  display: grid; 
  gap: 16px; 
}

/* Styles the small hint text and character counters */
.field-hint {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(255,255,255,0.75);
}

.field-hint-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}