    * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --navy: #1E2B3C; --navy-dark: #141f2c; --gold: #B59A5D; --gold-light: #c9ae6e;
            --white: #FFFFFF; --off-white: #F8F9FA; --grey-light: #EAECEF;
            --text-dark: #1A2A3A; --text-muted: #5a6e7e;
            --transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }
        body { font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 400; color: var(--text-dark); background-color: var(--white); line-height: 1.5; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 {
    font-family: 'playfair display', serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

h1 { font-size: 38px; font-weight: 400; line-height: 1.2; }
h2 { font-size: 26px; font-weight: 400; line-height: 1.25; }
h3 { font-size: 22px; font-weight: 400; }
h4 { font-size: 16px; font-weight: 400; letter-spacing: 1px; text-transform: uppercase; }

@media (max-width: 768px) {
    h1 { font-size: 36px; }
    h2 { font-size: 26px; }
    h3 { font-size: 20px; }
}
p, li { font-size: 14px; line-height: 1.6; color: var(--text-muted); }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
        section { padding: 80px 0; }
        @media (max-width: 768px) { .container { padding: 0 20px; } section { padding: 60px 0; } h1 { font-size: 32px; } h2 { font-size: 24px; } }
        
        .btn-primary { background: var(--gold); color: var(--navy); padding: 12px 28px; font-weight: 500; display: inline-block; transition: var(--transition); text-decoration: none; cursor: pointer; }
        .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
        .btn-outline-gold { background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 10px 24px; display: inline-block; transition: var(--transition); text-decoration: none; font-size: 13px; font-weight: 500; cursor: pointer; }
        .btn-outline-gold:hover { background: var(--gold); color: var(--navy); }
        .read-more-link { color: var(--gold); text-decoration: none; font-weight: 500; font-size: 13px; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
        .read-more-link:hover { gap: 10px; color: var(--gold-light); }
        
        /* Navbar */
        .navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 18px 0; transition: all 0.3s ease; background: rgba(30, 43, 60, 0.92);  }
      /* Add this to your existing styles */
.navbar.nav-hidden {
  transform: translateY(-100%);
}

        .nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1280px; margin: 0 auto; padding: 0 32px; }
        .logo a { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; color: var(--white); text-decoration: none; }
        .logo span { color: var(--gold); }
        .nav-links { display: flex; gap: 36px; align-items: center; }
        .nav-links a { color: var(--white); font-weight: 500; font-size: 14px; text-decoration: none; position: relative; }
        .nav-links a:after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background: var(--gold); transition: 0.3s; }
        .nav-links a:hover:after, .nav-links a.active:after { width: 100%; }
        .nav-cta { background: var(--gold); color: var(--navy) !important; padding: 8px 20px; }
        .nav-cta:after { display: none; }
        .hamburger { display: none; font-size: 28px; color: var(--gold); cursor: pointer; z-index: 1001; }
        @media (max-width: 992px) { .nav-links { display: none; } .hamburger { display: block; } .nav-container { padding: 0 24px; } }
        
        /* Mobile Menu */
        .mobile-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--navy-dark); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 32px; transform: translateX(100%); transition: transform 0.4s ease-in-out; visibility: hidden; }
        .mobile-menu.active { transform: translateX(0); visibility: visible; }
        .mobile-menu a { color: var(--white); font-size: 24px; font-family: 'Playfair Display', serif; text-decoration: none; opacity: 0; transform: translateY(20px); transition: all 0.3s ease; }
        .mobile-menu.active a { opacity: 1; transform: translateY(0); }
        .mobile-menu a:hover { color: var(--gold); }
        .mobile-menu .mobile-cta { background: var(--gold); color: var(--navy) !important; padding: 12px 32px; font-size: 18px; margin-top: 20px; }
        .close-menu { position: absolute; top: 30px; right: 30px; font-size: 32px; color: var(--gold); cursor: pointer; z-index: 2001; transition: var(--transition); }
        .close-menu:hover { transform: rotate(90deg); color: var(--gold-light); }
        
        /* Page Hero */
        .page-hero { background: linear-gradient(135deg, var(--navy) 0%, #15232e 100%); padding: 180px 0 90px; text-align: center; }
        .page-hero h1 { color: var(--white); margin-bottom: 16px; }
        .gold-underline { width: 80px; height: 3px; background: var(--gold); margin: 20px auto 0; }
        .breadcrumb { color: rgba(255,255,255,0.7); margin-bottom: 20px; font-size: 13px; }
        .breadcrumb a { color: var(--gold); text-decoration: none; }
        
        /* Blog Layout */
        .blog-layout { display: grid; grid-template-columns: 2.5fr 1fr; gap: 60px; }
        .featured-post { margin-bottom: 60px; border-bottom: 2px solid var(--gold); padding-bottom: 40px; }
        .featured-image { width: 100%; height: 380px; background-size: cover; background-position: center; filter: grayscale(15%); transition: var(--transition); }
        .featured-post:hover .featured-image { filter: grayscale(0%); }
        .post-category { display: inline-block; color: var(--gold); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin: 20px 0 12px; }
        .featured-post h2 { margin-bottom: 12px; }
        .post-meta { display: flex; gap: 20px; margin: 12px 0 16px; font-size: 12px; color: var(--text-muted); }
        .post-excerpt { margin-bottom: 20px; }
        .posts-grid { display: flex; flex-direction: column; gap: 30px; }
        .blog-post-item { display: grid; grid-template-columns: 120px 1fr; gap: 24px; padding-bottom: 25px; border-bottom: 1px solid var(--grey-light); transition: var(--transition); }
        .blog-post-item:hover { transform: translateX(8px); }
        .post-thumbnail { width: 120px; height: 90px; background-size: cover; background-position: center; filter: grayscale(20%); transition: var(--transition); }
        .blog-post-item:hover .post-thumbnail { filter: grayscale(0%); }
        .post-content h3 { margin-bottom: 6px; font-size: 18px; }
        .post-content h3 a { color: var(--navy); text-decoration: none; transition: var(--transition); }
        .post-content h3 a:hover { color: var(--gold); }
        .post-meta-small { font-size: 11px; color: var(--gold); margin-bottom: 8px; }
        
        .loading-spinner, .no-results { text-align: center; padding: 60px; color: var(--gold); }
        .sidebar { position: sticky; top: 100px; align-self: start; }
        .sidebar-widget { margin-bottom: 48px; }
        .sidebar-widget h4 { color: var(--navy); margin-bottom: 20px; border-left: 3px solid var(--gold); padding-left: 16px; }
        .search-box { display: flex; border: 1px solid var(--grey-light); }
        .search-box input { flex: 1; padding: 12px 16px; border: none; font-family: 'Jost', sans-serif; }
        .search-box input:focus { outline: none; }
        .search-box button { background: var(--navy); border: none; padding: 0 20px; color: var(--gold); cursor: pointer; }
        .category-list { list-style: none; }
        .category-list li { padding: 10px 0; border-bottom: 1px solid var(--grey-light); display: flex; justify-content: space-between; }
        .category-list li a { color: var(--text-muted); text-decoration: none; transition: var(--transition); cursor: pointer; }
        .category-list li a:hover { color: var(--gold); }
        .expert-bio { background: var(--off-white); padding: 28px; text-align: center; }
        .expert-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--navy); margin: 0 auto 16px; background-image: url('https://placehold.co/200x200/2C3E4E/FFFFFF?text=DM'); background-size: cover; }
        .newsletter-box { background: var(--navy); color: white; padding: 28px; text-align: center; }
        .newsletter-box h4 { color: var(--gold); border-left: none; padding-left: 0; }
        .newsletter-box input { width: 100%; padding: 12px; margin: 16px 0; border: none; }
        
        .pagination { display: flex; justify-content: center; gap: 12px; margin-top: 50px; flex-wrap: wrap; }
        .pagination a, .pagination span { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--grey-light); color: var(--text-muted); text-decoration: none; transition: var(--transition); cursor: pointer; }
        .pagination a:hover, .pagination .active { background: var(--gold); color: var(--navy); border-color: var(--gold); }
        
        .footer { background: var(--navy); color: #cfdde6; padding-top: 60px; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 40px; }
        .footer h4 { color: var(--gold); margin-bottom: 20px; font-size: 18px; }
        .footer a { color: #cfdde6; text-decoration: none; }
        .sub-footer { border-top: 1px solid rgba(181,154,93,0.3); padding: 24px 0; display: flex; justify-content: space-between; flex-wrap: wrap; font-size: 12px; gap: 16px; }
        @media (max-width: 768px) { .sub-footer { flex-direction: column; text-align: center; } }
        
        .float-wa { position: fixed; bottom: 25px; right: 25px; background: #25D366; width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 99; box-shadow: 0 4px 15px rgba(0,0,0,0.25); transition: 0.2s; text-decoration: none; }
        .float-wa:hover { transform: scale(1.08); background: #20b358; }
        
        @media (max-width: 900px) { .blog-layout { grid-template-columns: 1fr; gap: 50px; } .featured-image { height: 280px; } .sidebar { position: static; } }
        @media (max-width: 550px) { .blog-post-item { grid-template-columns: 1fr; gap: 12px; } .post-thumbnail { width: 100%; height: 160px; } }
  /* Footer */
/* ================= FOOTER ================= */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.75);
    padding-top: 70px;
    font-size: 14px;
}

/* Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

/* Headings */
.footer h4 {
    color: var(--gold);
    margin-bottom: 16px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Text */
.footer p {
    line-height: 1.6;
}

/* Logo */
.footer-logo {
    width: 200px;
    margin-bottom: 16px;
}

/* Tagline */
.tagline {
    font-size: 13px;
    margin-bottom: 16px;
}

/* ================= LINKS ================= */
.footer a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: 0.2s ease;
}

.footer a:hover {
    color: var(--gold);
}

/* Special link */
.footer-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 500;
    color: var(--gold);
}

/* ================= SOCIALS ================= */
.socials {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(181,154,93,0.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.socials a:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ================= SUB FOOTER ================= */
.sub-footer {
    border-top: 1px solid rgba(181,154,93,0.2);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 12px;
    gap: 12px;
}

/* Developer link */
.dev-link {
    color: var(--gold);
    font-weight: 500;
}

.dev-link:hover {
    text-decoration: underline;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .sub-footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 16px;
    }

    .footer-brand {
        text-align: center;
    }

    .socials {
        justify-content: center;
    }
}

/* Floating WhatsApp */
.float-wa {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    transition: 0.2s;
}
.float-wa:hover { transform: scale(1.08); background: #20b358; }
.float-wa img { width: 30px; height: 30px; filter: brightness(0) invert(1); }
@media (max-width: 768px) {
    .float-wa { width: 50px; height: 50px; bottom: 20px; right: 20px; }
    .float-wa img { width: 26px; height: 26px; }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }

.hide-mobile { display: block; }
@media (max-width: 768px) { .hide-mobile { display: none; } }

.show-mobile { display: none; }
@media (max-width: 768px) { .show-mobile { display: block; } }

/* Prevent body scroll when mobile menu is open */
body.menu-open { overflow: hidden; }

/* Footer contact items */
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

/* Icons */
.footer-contact-item i {
    color: var(--gold);
    font-size: 13px;
    width: 16px;
}

/* Links */
.footer-contact-item a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: 0.2s ease;
}

.footer-contact-item a:hover {
    color: var(--gold);
}

.float-wa {
    position: fixed;
    bottom: 25px;
    right: 25px;

    width: 55px;
    height: 55px;

    background: #25D366;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 999;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);

    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-wa i {
    font-size: 26px;
    color: #fff;
}

.float-wa:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}
    /* ========== NAVBAR ========== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 18px 0;
            transition: all 0.3s ease;
            background: transparent;
            
            
            letter-spacing: 0.5px;
        }
        .navbar.scrolled {
            padding: 10px 0;
            background: transparent;
            color: var(--navy-dark);
            
        }

        .logo a {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-img {
    width: 200px;
    height: 100px;
    object-fit: contain;
}
.logo span { color: var(--gold); }