/* 
    RICH TRADING FZCO - LIGHT THEME
    Aesthetics: Elegant, Transparent Header, Professional Flow
*/

:root {
    --blue: #2980B9;
    --blue-light: #3498DB;
    --red: #E74C3C;
    --red-dark: #C0392B;
    --blue-glow: #3498DB;
    --dark: #FFFFFF;
    --obsidian: #F9FAFB;
    --silver: #4B5563;
    --white: #111827;
    --gray: #6B7280;
    --glass: rgba(0, 0, 0, 0.02);
    --border: rgba(52, 152, 219, 0.1);
}

* { margin:0; padding:0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--dark);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1400px; margin: 0 auto; padding: 0 50px; }

/* Navbar - STICKY MERGED */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    z-index: 1000;
    padding: 25px 0;
    background: transparent;
    transition: 0.4s ease-in-out;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 120px; width: auto; transition: 0.3s; filter: drop-shadow(0 0 15px rgba(255,255,255,0.5)); }
.navbar.scrolled .logo img { filter: none; }

.nav-links { display: flex; list-style: none; gap: 45px; }
.nav-links a {
    text-decoration: none;
    color: #FFFFFF !important; /* Force pure white on Hero */
    font-weight: 800; /* Extra bold for clarity */
    font-size: 0.9rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: 0.3s;
    position: relative;
    text-shadow: 0 2px 15px rgba(0,0,0,0.8); /* Strong shadow for depth */
}
.navbar.scrolled .nav-links a { 
    color: #111827 !important; 
    text-shadow: none;
}
.navbar.scrolled .nav-links a { 
    color: #111827; 
    text-shadow: none;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 2px;
    background: var(--red);
    transition: 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.menu-btn { display: none; font-size: 1.8rem; color: var(--blue); cursor: pointer; }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-underlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    /* Darkening the very top for link legibility */
    background: 
        linear-gradient(rgba(0,0,0,0.2) 0%, transparent 25%),
        linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.5)), 
        url('im/hero.png') center/cover no-repeat;
    z-index: 1;
}

.hero-content { position: relative; z-index: 10; max-width: 900px; }

.premium-badge {
    display: inline-block;
    color: var(--blue);
    border: 1px solid var(--blue);
    padding: 8px 18px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 25px;
    background: rgba(41, 128, 185, 0.05);
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #111;
    text-shadow: 0 10px 30px rgba(255,255,255,0.5); /* Subtle lift */
}

.blue-text { 
    background: linear-gradient(91deg, var(--blue-light), var(--red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero p { font-size: 1.3rem; color: #374151; margin-bottom: 45px; max-width: 650px; opacity: 1; font-weight: 500; }

.cta-row { display: flex; gap: 25px; }

.btn {
    padding: 20px 45px;
    border-radius: 4px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: 0.4s;
    border: none;
}

.btn-blue { 
    background: linear-gradient(135deg, var(--blue), var(--red)); 
    color: white; 
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.2); 
}
.btn-blue:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(52, 152, 219, 0.3); }

.btn-outline { border: 2px solid var(--blue-light); color: var(--blue); background: transparent; }
.btn-outline:hover { background: var(--blue-light); color: white; }

/* Brands Bar */
.brands-bar { padding: 45px 0; background: var(--obsidian); border-bottom: 1px solid var(--border); }
.brand-items { display: flex; justify-content: space-between; align-items: center; opacity: 0.6; }
.brand-logo-text { font-weight: 800; letter-spacing: 5px; font-size: 0.85rem; cursor: pointer; transition: 0.3s; color: #111; }
.brand-logo-text:hover { opacity: 1; color: var(--blue); transform: scale(1.1); }

/* About Section */
.about { padding: 160px 0; }
.grid-2 { display: grid; grid-template-columns: 1.1fr 1fr; gap: 100px; align-items: center; }

.tag { color: var(--blue); font-weight: 800; letter-spacing: 3px; font-size: 0.75rem; margin-bottom: 20px; text-transform: uppercase; }
h2 { font-family: 'Playfair Display', serif; font-size: 4rem; margin-bottom: 35px; color: #111; }

.verbatim { font-size: 1.2rem; color: var(--silver); margin-bottom: 30px; line-height: 1.8; font-weight: 400; }
.gold-standard { position: relative; padding-left: 20px; border-left: 3px solid var(--blue); }

.features-grid { display: flex; gap: 40px; margin-top: 50px; }
.feat { display: flex; align-items: center; gap: 15px; }
.feat i { font-size: 1.5rem; color: var(--red); }
.feat h4 { font-size: 0.9rem; letter-spacing: 1px; color: #111; }

.image-stack img { width: 100%; border-radius: 4px; box-shadow: 0 40px 80px rgba(0,0,0,0.1); border: 1px solid var(--border); }

/* Inventory Grid */
.inventory { background: var(--obsidian); padding: 160px 0; }
.text-center { text-align: center; margin-bottom: 100px; }

.inventory-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.inv-card {
    background: #FFF;
    padding: 70px 40px;
    border: 1px solid var(--border);
    transition: 0.5s;
    text-align: center;
    border-radius: 8px;
}
.inv-card:hover { border-color: var(--blue); transform: translateY(-15px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }

.img-wrap { width: 100%; height: 200px; overflow: hidden; margin-bottom: 30px; border-radius: 4px; border: 1px solid var(--border); }
.img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.inv-card:hover .img-wrap img { transform: scale(1.15); }
.inv-card h3 { font-size: 1.3rem; margin-bottom: 15px; font-weight: 700; color: #111; }
.inv-card p { color: var(--silver); font-size: 1rem; }

/* Optimized Ultra Contact Section */
.contact-box-ultra {
    background: #FFF;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.05);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    border-bottom: 1px solid var(--border);
}

.c-info-text { padding: 80px; border-right: 1px solid var(--border); }
.c-info-text h2 { margin-bottom: 20px; font-size: 3.5rem; color: #111; }

.blue-text-alt {
    background: linear-gradient(135deg, var(--blue-light) 40%, var(--red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.c-details-list { margin-top: 40px; }
.c-detail { display: flex; gap: 20px; margin-bottom: 30px; align-items: center; }
.c-detail i { color: var(--red); font-size: 1.5rem; width: 30px; text-align: center; }
.c-detail p { color: #111; font-weight: 500; }

.c-form-wrap { padding: 80px; background: #F9FAFB; }

input, textarea {
    width: 100%;
    background: #FFF;
    border: 1px solid #DDD;
    padding: 22px;
    color: #111;
    font-family: inherit;
    border-radius: 6px;
    transition: 0.3s;
    margin-bottom: 15px;
}

input:focus, textarea:focus { 
    border-color: var(--blue-light); 
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.2);
    outline: none; 
}

.btn-brand-split {
    background: linear-gradient(90deg, var(--blue-light), var(--red));
    color: white;
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.2);
    transition: 0.4s;
}

.btn-brand-split:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(52, 152, 219, 0.3); }

.contact-map-inner iframe { display: block; opacity: 0.9; }

/* Refined Professional Footer */
.footer { padding: 80px 0; border-top: 1px solid var(--border); background: #FFF; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; }

.f-col h4 { font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 25px; color: #111; }

.f-brand img { height: 100px; width: auto; margin-bottom: 20px; } /* Slightly smaller for balance */
.f-brand p { color: var(--gray); font-size: 0.95rem; line-height: 1.8; max-width: 300px; }

.f-link-grid { display: grid; gap: 12px; }
.f-link-grid a { text-decoration: none; color: var(--silver); font-weight: 500; font-size: 0.9rem; transition: 0.3s; }
.f-link-grid a:hover { color: var(--red); padding-left: 5px; }

.f-legal p { color: #111; font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; }
.f-copy { margin-top: 25px; color: var(--gray); font-size: 0.85rem; border-top: 1px solid #EEE; padding-top: 20px; }

/* Mobile Optimizations */
@media (max-width: 992px) {
    .container { padding: 0 30px; }
    h1 { font-size: 3.2rem; }
    .grid-2, .inventory-grid, .contact-info-grid { grid-template-columns: 1fr; }
    .c-info-text, .c-form-wrap { padding: 60px 40px; }
    .c-info-text { border-right: none; border-bottom: 1px solid var(--border); }
    
    .nav-links {
        position: fixed;
        top: 0; left: -100%;
        width: 100%; height: 100vh;
        background: var(--dark);
        flex-direction: column;
        padding: 100px 0;
        text-align: center;
        transition: 0.4s;
        display: flex;
        gap: 25px;
    }
    .nav-links.active { left: 0; }
    .menu-btn { display: block; }
}
