/* ====================================
   HAMJA GLOBAL LLC - B2B Standard v3.0
==================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f7fb;
    color: #333333;
    line-height: 1.8;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* 5. ANNOUNCEMENT BAR */
.announcement-bar {
    background: #082860;
    color: #ffd54f;
    text-align: center;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: bold;
}

.announcement-bar a {
    color: #ffffff;
    text-decoration: underline;
    margin-left: 5px;
}

/* HEADER & NAV */
.header {
    background: #0b3d91;
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0,0,0,.15);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: white;
}

.logo {
    width: 55px;
    height: 55px;
    object-fit: contain;
    border-radius: 50%;
    background: #ffffff;
    padding: 4px;
}

.header h1 {
    font-size: 22px;
    margin: 0;
}

.header p {
    font-size: 12px;
    color: #d1e0ff;
}

nav {
    display: flex;
    gap: 16px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
}

nav a:hover {
    color: #ffd54f;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("office.jpg");
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
    padding: 120px 20px;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.25;
}

.hero p {
    max-width: 850px;
    margin: auto;
    font-size: 18px;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #ff9800;
    color: #ffffff;
}

.btn-primary:hover {
    background: #e68900;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #0b3d91;
}

/* SECTIONS */
section {
    padding: 70px 0;
}

section h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 35px;
    color: #0b3d91;
}

/* GRID & CARDS */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,.06);
    border-top: 5px solid #0b3d91;
}

.card h3 {
    color: #0b3d91;
    margin-bottom: 10px;
    font-size: 20px;
}

/* 9. TRUST SECTION STYLES */
.trust-icon {
    font-size: 35px;
    color: #ff9800;
    margin-bottom: 15px;
}

.text-center {
    text-align: center;
}

/* PHOTOS */
.photo {
    display: block;
    width: 100%;
    max-width: 700px;
    margin: 25px auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.founder-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
}

/* SECTION BACKGROUNDS */
#about, #values, #services, #categories, #faq {
    background: #ffffff;
}

#mission, #industries, #trust, #founder, #contact {
    background: #eef4ff;
}

/* 3. B2B CONTACT FORM STYLES */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.contact-info h3, .contact-form h3 {
    color: #0b3d91;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #cccccc;
    border-radius: 6px;
    font-size: 14px;
}

.contact-form button {
    width: 100%;
}

/* 4. FLOATING WHATSAPP BUTTON */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
}

/* FOOTER */
footer {
    background: #0b3d91;
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
}

.footer-links {
    margin: 15px 0;
}

.footer-links a {
    color: #d1e0ff;
    text-decoration: none;
    font-size: 14px;
    margin: 0 5px;
}

.footer-links a:hover {
    color: #ffd54f;
}

.social-links {
    margin: 15px 0;
}

.social-links a {
    color: #ffffff;
    font-size: 20px;
    margin: 0 10px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #ffd54f;
}

footer hr {
    margin: 20px auto;
    width: 100px;
    border: 0;
    height: 1px;
    background: rgba(255,255,255,.3);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .hero h2 {
        font-size: 28px;
    }
}
