/* ================= GLOBAL ================= */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f5f7fb; /* soft professional bg */
    color: #1a1a1a;
}

/* ================= NAVBAR ================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;

    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;

    position: sticky;
    top: 0;
    z-index: 1000;

    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
}

/* ================= LOGO ================= */
.logo {
    line-height: 1.2;
}

/* GOLD FIRM NAME (FINAL) */
.logo .firm-name {
    font-size: 30px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    letter-spacing: 1px;
    text-shadow: 0 0 6px rgba(212,175,55,0.4);
}

/* TAGLINE */
.logo .tagline {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #cbd5e1;
    margin-top: 3px;
}
/* ================= NAV LINKS ================= */
.navbar nav a {
    color: #e2e8f0;
    margin-left: 25px;
    text-decoration: none;
    position: relative;
    font-size: 14px;
    transition: 0.3s;
}

.navbar nav a:hover {
    color: #d4af37;
}

.navbar nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #d4af37;
    bottom: -3px;
    left: 0;
    transition: 0.3s;
}

.navbar nav a:hover::after {
    width: 100%;
}

/* ================= HERO ================= */
.hero {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero p {
    font-size: 18px;
    color: #cbd5e1;
}

.highlight {
    color: #d4af37;
    font-weight: 600;
}

/* ================= BUTTON ================= */
button {
    padding: 12px 25px;
    border: none;
    background: #d4af37;
    color: black;
    border-radius: 6px;
    cursor: pointer;
    margin: 10px;
    transition: 0.3s;
    font-weight: 500;
}

button.secondary {
    background: #22c55e;
    color: white;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* ================= SECTION ================= */
.section {
    padding: 80px 20px;
    text-align: center;
}

.section.alt {
    background: #eef2f7;
}

/* ================= GRID ================= */
.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

/* ================= CARD ================= */
.card {
    background: #ffffff;
    padding: 25px;
    width: 270px;
    border-radius: 12px;

    border: 1px solid #e2e8f0;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);

    transition: 0.3s;
    text-align: left;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* ================= ICON ================= */
.icon {
    font-size: 30px;
    color: #d4af37;
    margin-bottom: 10px;
}

/* ================= SERVICE LIST ================= */
.card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card ul li {
    padding: 6px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    color: #334155;
}

/* CHECK ICON */
.card ul li::before {
    content: "✔";
    color: #d4af37;
    margin-right: 8px;
    font-size: 12px;
}

/* ================= CHAT ================= */
.chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #d4af37;
    color: black;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    z-index: 9999;
}

.chat-popup {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 320px;
    height: 420px;
    background: white;
    display: none;
    flex-direction: column;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    z-index: 9999;
}

/* HEADER */
.chat-header {
    background: #0f172a;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    border-radius: 12px 12px 0 0;
}

/* CHAT BOX */
.chat-box {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    background: #f1f5f9;
}

/* MESSAGE */
.message {
    padding: 8px;
    margin: 5px;
    border-radius: 8px;
    max-width: 80%;
    font-size: 14px;
}

.user {
    background: #0f172a;
    color: white;
    margin-left: auto;
}

.bot {
    background: #e2e8f0;
}

/* INPUT */
.chat-input {
    display: flex;
    border-top: 1px solid #ddd;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
}

.chat-input button {
    padding: 10px 15px;
}

/* ================= FOOTER ================= */
footer {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 20px;
}

/* ================= ANIMATION ================= */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-out;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}
.navbar .logo .firm-name {
    color: #d4af37 !important;
}
