/* 
    NEW DREAM FZCO - LUXURY TECH DISTRIBUTION
    Theme: Dreaming Forward / Elegant Professionalism
*/

:root {
    --navy: #0E1F41;         /* From Logo 'DREAM' */
    --navy-light: #4066B0;   /* From Logo 'NEW' */
    --brand-grey: #6E6F71;   /* From Logo 'Trading' */
    --gold: #4066B0;         /* Replaced Gold with the lighter Logo Blue */
    --white: #FFFFFF;
    --soft-gray: #F4F7FA;
    --text-main: #1A1A1A;
    --text-muted: #6E6F71;
    --border: rgba(14, 31, 65, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo .new { font-weight: 800; color: var(--navy); font-size: 1.5rem; letter-spacing: 2px; }
.logo .dream { font-weight: 300; color: var(--gold); font-size: 1.5rem; letter-spacing: 4px; }
.logo .legal { font-size: 0.6rem; color: var(--text-muted); margin-top: 8px; letter-spacing: 2px; }

.logo-img { height: 100px; width: auto; transition: 0.3s; }

.nav-links { display: flex; gap: 40px; }
.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-links a:hover { color: var(--navy-light); }

.mobile-toggle { display: none !important; }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--navy);
    color: white;
    padding-top: 140px; /* Space for the 100px logo + navbar padding */
    padding-bottom: 80px;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('im/hero.png') center/cover no-repeat;
    opacity: 0.6; /* Increased for better text contrast */
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, var(--navy) 20%, rgba(14, 31, 65, 0.4) 100%);
    z-index: 2;
}

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

.hero .hero-badge {
    display: inline-block;
    font-weight: 800;
    letter-spacing: 4px;
    color: #FFFFFF;
    font-size: 0.75rem;
    margin-bottom: 25px;
    padding: 10px 25px;
    background: rgba(64, 102, 176, 0.1);
    border: 1px solid var(--navy-light);
    border-radius: 5px;
    text-transform: uppercase;
}

h1 {
    font-family: 'Lora', serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem); /* Fully responsive headline */
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 30px;
}

.navy-gradient {
    background: linear-gradient(90deg, var(--navy-light), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Brands Bar */
.brands-bar { background: var(--soft-gray); padding: 40px 0; border-bottom: 1px solid var(--border); }
.brand-items { 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    opacity: 0.6; 
}

.brand-items i { font-size: 2.5rem; color: var(--navy); }

.brand-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: var(--navy);
}

.brand-items > * { transition: 0.3s; cursor: pointer; }
.brand-items > *:hover { opacity: 1; transform: scale(1.1); color: var(--navy-light); }

.btn-navy-light { background: var(--navy-light); color: white; }
.btn-brand { background: var(--navy-light); color: white; border: none; cursor: pointer; }

/* Product Visual */
.section-grid-large { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.visual-img img { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.check-list { list-style: none; margin-top: 30px; }
.check-list li { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; font-weight: 600; }
.check-list i { color: var(--navy-light); }

.hero p {
    font-size: 1.3rem;
    opacity: 0.8;
    max-width: 600px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-cta { display: flex; gap: 20px; }

.btn {
    padding: 18px 40px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: 0.4s;
}

.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #E5BE48; transform: translateY(-5px); }

.btn-outline { 
    border: 1px solid var(--navy-light); 
    color: white; 
    background: rgba(255,255,255,0.1); 
    backdrop-filter: blur(5px);
}
.btn-outline:hover { background: var(--navy-light); color: white; }

/* Sections */
section { padding: 140px 0; }
.section-tag {
    color: var(--gold);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

h2 {
    font-family: 'Lora', serif;
    font-size: 3.5rem;
    margin-bottom: 30px;
}

.navy { color: var(--navy); }

/* About */
.flex-row {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-text { flex: 1; }
.about-visual { flex: 1; position: relative; }
.about-visual img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 20px 20px 50px rgba(0,0,0,0.1);
}

.floating-badge {
    position: absolute;
    top: -20px; left: -20px;
    background: var(--navy);
    color: white;
    padding: 30px;
    border-left: 5px solid var(--gold);
}

.floating-badge span { font-weight: 800; font-size: 1.5rem; color: var(--gold); display: block; }

.verbatim { color: var(--text-muted); margin-bottom: 25px; font-size: 1.1rem; }

/* Services */
.services { background: var(--soft-gray); }
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.s-card {
    background: white;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: 0.4s;
    border-top: 3px solid transparent;
}

.s-card:hover { transform: translateY(-10px); border-top-color: var(--gold); }
.s-card i { font-size: 3rem; color: var(--navy); margin-bottom: 30px; }

/* Contact */
.contact-box {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    background: var(--navy);
    color: white;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 50px;
}

.contact-info { padding: 90px 70px; }
.contact-info h2 .navy { color: var(--navy-light); }
.contact-info h2 { color: #FFFFFF; font-size: 3rem; margin-bottom: 20px; }
.contact-items { margin-top: 50px; }
.c-item { display: flex; gap: 20px; margin-bottom: 40px; }
.c-item i { color: var(--gold); font-size: 1.5rem; margin-top: 5px; }
.c-item h4 { color: var(--gold); font-size: 0.9rem; margin-bottom: 5px; text-transform: uppercase; }

.contact-form-side { padding: 90px 70px; background: rgba(255,255,255,0.03); }
.contact-form-side form input, .contact-form-side form textarea {
    width: 100%;
    padding: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
    color: white;
    border-radius: 4px;
}

.map-wrap { 
    margin-top: 50px; 
    border-radius: 4px; 
    overflow: hidden; 
    border: 1px solid rgba(255,255,255,0.1);
    height: 450px;
    width: 100%;
    background: #000; /* Placeholder for loading */
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.btn-navy { background: var(--gold); color: var(--navy); width: 100%; border: none; cursor: pointer; }

/* Footer */
.footer { padding: 60px 0; border-top: 1px solid var(--border); }
.footer-wrap { display: flex; justify-content: space-between; align-items: center; }
.copyright { font-size: 0.8rem; color: var(--text-muted); }

/* Responsive */
/* Animations & Reveal */
.reveal-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .nav-links {
        position: absolute;
        top: 100%; left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        padding: 40px 0;
        transition: 0.4s;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.active { left: 0; }
    .mobile-toggle { display: block; font-size: 1.5rem; color: var(--navy); cursor: pointer; }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2.5rem; }
    .flex-row { flex-direction: column; }
    .service-grid { grid-template-columns: 1fr; }
    .contact-box { grid-template-columns: 1fr; }
}
