/* ==========================================================
   GLOBAL DESIGN VARIABLES & RESET
   ========================================================== */
:root {
    --primary-gold: #B28A44;
    --primary-gold-hover: #967233;
    --navy-dark: #0A111E;
    --navy-deeper: #060B14;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --bg-light: #FAF9F6;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}
html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================
   SHARED NAVIGATION HEADER
   ========================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px 40px;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--navy-dark);
}

.brand-sub {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-gold);
    margin-top: 2px;
}

/* Nav Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--navy-dark);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Header Buttons */
.btn-gold-nav {
    background: var(--primary-gold);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: background 0.3s ease;
}

.btn-gold-nav:hover {
    background: var(--primary-gold-hover);
}

.btn-solid-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-gold);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-solid-gold:hover {
    background: var(--primary-gold-hover);
    transform: translateY(-2px);
}

/* Mobile Hamburger Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--navy-dark);
    transition: all 0.3s ease;
}

/* Subtitle Class */
.subtitle {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 8px;
}

/* ==========================================================
   SHARED FOOTER
   ========================================================== */
.footer {
    background-color: var(--navy-deeper);
    color: #ffffff;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-brand .brand-logo {
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 320px;
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    text-decoration: none;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-newsletter p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.newsletter-form input {
    flex: 1;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #ffffff;
    font-size: 12px;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    background: var(--primary-gold);
    color: #ffffff;
    border: none;
    padding: 0 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--primary-gold-hover);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}

.footer-bottom-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}

/* Footer Contact Info Styling */
.footer-contact-info {
    display: flex;
    flex-direction: column;
}

.footer-contact-info h4 {
    font-family: var(--font-heading, serif);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--primary-gold, #b28a44);
    display: block;
    margin-bottom: 4px;
}

.contact-details-list p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
    margin: 0;
}

.contact-details-list a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details-list a:hover {
    color: var(--primary-gold, #b28a44);
}

/* ==========================================================
   HEADER/FOOTER MOBILE RESPONSIVE
   ========================================================== */
@media (max-width: 992px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .btn-gold-nav {
        display: none;
        /* Hidden on small mobile; accessible inside menu if needed */
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ==========================================================
   SIMPLE SOLUTIONS DROPDOWN MENU
   ========================================================== */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-arrow {
    font-size: 9px;
    margin-left: 3px;
    transition: transform 0.3s ease;
}

/* Hover state on arrow */
.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu Container */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #ffffff;
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(178, 138, 68, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

/* Show Menu on Hover */
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Individual Dropdown Item */
.dropdown-item {
    display: block;
    padding: 10px 20px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--navy-dark);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
    border-left: 2px solid transparent;
}

.dropdown-item:hover {
    background: #fafaf9;
    color: var(--primary-gold);
    border-left-color: var(--primary-gold);
    padding-left: 24px;
}

/* Divider line between items if desired */
.dropdown-item:not(:last-child) {
    border-bottom: 1px solid #f8fafc;
}

/* Mobile Responsive adjustment */
@media (max-width: 992px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding: 6px 0 6px 14px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        /* Controlled by mobile click */
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
}