@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
    --primary: #b8860b;
    --primary-light: #d4a017;
    --primary-dark: #8b6914;
    --primary-glow: rgba(184, 134, 11, 0.12);
    --primary-ghost: rgba(184, 134, 11, 0.06);

    --secondary: #0f1729;
    --secondary-soft: #1e293b;

    --bg-main: #fefefe;
    --bg-warm: #faf8f5;
    --bg-cool: #f7f8fa;
    --bg-cream: #f5f0e8;
    --bg-glass: rgba(255, 255, 255, 0.7);

    --text-dark: #111827;
    --text-body: #374151;
    --text-muted: #6b7280;
    --text-light: #9ca3af;

    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --border-warm: rgba(184, 134, 11, 0.15);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.1), 0 8px 20px rgba(0, 0, 0, 0.06);
    --shadow-gold: 0 8px 30px rgba(184, 134, 11, 0.2);
    --shadow-gold-lg: 0 16px 50px rgba(184, 134, 11, 0.25);

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--secondary);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul { list-style: none; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

::selection {
    background-color: var(--primary);
    color: #fff;
}

/* ===== Container ===== */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 2.4rem;
    border-radius: var(--radius-full);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: var(--transition-fast);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--secondary);
    background: var(--secondary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.4rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    padding: 0.7rem 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
}

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

.logo a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    letter-spacing: -0.03em;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-item { position: relative; }

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-body);
    letter-spacing: 1.2px;
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-full);
    position: relative;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary);
    background: var(--primary-ghost);
}

.nav-item.active .nav-link {
    color: var(--primary);
    background: var(--primary-glow);
}

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #fff;
    min-width: 260px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 0.8rem;
    z-index: 10;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.2rem;
    color: var(--text-body);
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--primary-ghost);
    color: var(--primary);
    padding-left: 1.5rem;
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.hamburger:hover { background: var(--bg-cool); }

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--secondary);
    margin: 5px auto;
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== Footer ===== */
.footer {
    background: var(--secondary);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-top {
    padding: 6rem 0 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
    gap: 3.5rem;
}

.footer-col h3 {
    font-size: 1rem;
    margin-bottom: 1.8rem;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-col p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.2rem;
    display: inline-block;
    letter-spacing: -0.02em;
}

.footer-logo span { color: var(--primary); }

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
    color: #94a3b8;
    font-size: 0.95rem;
    padding: 0.3rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: var(--transition);
}

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

.footer-links a:hover::before {
    width: 16px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: #94a3b8;
    font-size: 0.95rem;
}

.contact-info i {
    color: var(--primary);
    margin-top: 0.25rem;
    font-size: 0.95rem;
    width: 18px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 2rem;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-link:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #64748b;
    font-size: 0.88rem;
}

.footer-bottom a { color: var(--primary); }
.footer-bottom a:hover { text-decoration: underline; }

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 1rem;
        right: 1rem;
        background: #fff;
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.3rem;
        box-shadow: var(--shadow-xl);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-light);
    }

    .nav-links.active { display: flex; }

    .hamburger { display: flex; }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: var(--bg-cool);
        transform: none;
        display: none;
        border: none;
        border-radius: var(--radius-md);
        min-width: auto;
    }

    .dropdown.active .dropdown-menu { display: block; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
    .container { padding: 0 1.2rem; }
    .footer-grid { grid-template-columns: 1fr; }
}
/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--secondary);
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    transition: transform 0.4s var(--ease-out);
}

.top-bar.hidden {
    transform: translateY(-100%);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.top-bar-item:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.top-bar-item i {
    color: var(--primary);
    font-size: 0.7rem;
}

.top-bar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.12);
    margin: 0 0.3rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.top-bar-social {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 0.75rem;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.top-bar-social:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.06);
}

/* ============================================
   NAVBAR - ENHANCED
   ============================================ */
.navbar {
    position: fixed;
    top: 36px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s var(--ease-out);
    background: transparent;
}

.navbar.top-bar-hidden {
    top: 0;
}

.navbar.scrolled {
    padding: 0.6rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
}

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

/* Logo */
.logo a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
}

.logo-text span {
    color: var(--primary);
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 0.3rem;
    align-items: center;
}

.nav-item { position: relative; }

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-body);
    letter-spacing: 1.2px;
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-full);
    position: relative;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-arrow {
    font-size: 0.6rem;
    transition: transform 0.3s var(--ease-out);
    opacity: 0.5;
}

.dropdown:hover .nav-arrow,
.dropdown.active .nav-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-link:hover {
    color: var(--primary);
    background: var(--primary-ghost);
}

.nav-item.active .nav-link {
    color: var(--primary);
    background: var(--primary-glow);
}

/* Enhanced Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #fff;
    min-width: 320px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-out);
    padding: 0.6rem;
    z-index: 10;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: #fff;
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
    border-radius: 3px 0 0 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-header {
    padding: 0.6rem 1rem 0.8rem;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 0.4rem;
}

.dropdown-header span {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1rem;
    color: var(--text-body);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--primary-ghost);
}

.dropdown-item-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-warm);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.95rem;
    flex-shrink: 0;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.dropdown-item:hover .dropdown-item-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}

.dropdown-item-content {
    flex: 1;
    min-width: 0;
}

.dropdown-item-content strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.15rem;
    transition: var(--transition-fast);
}

.dropdown-item:hover .dropdown-item-content strong {
    color: var(--primary);
}

.dropdown-item-content span {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.4;
}

.dropdown-external {
    font-size: 0.65rem;
    color: var(--text-light);
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--transition-fast);
}

.dropdown-item:hover .dropdown-external {
    opacity: 1;
    transform: translateX(0);
}

/* Nav CTA Button */
.nav-cta-item {
    display: none;
}

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.6rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    white-space: nowrap;
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
    color: #fff;
}

.nav-cta-btn i {
    font-size: 0.7rem;
    transition: transform 0.3s var(--ease-out);
}

.nav-cta-btn:hover i {
    transform: translateX(3px);
}

.nav-right-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Hamburger Enhanced */
.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    position: relative;
    z-index: 1002;
}

.hamburger:hover {
    background: var(--bg-cool);
}

.hamburger-box {
    width: 22px;
    height: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--secondary);
    border-radius: 2px;
    transition: all 0.35s var(--ease-out);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s var(--ease-out);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   FOOTER - ENHANCED
   ============================================ */

/* Footer CTA Strip */
.footer-cta {
    background: var(--bg-warm);
    padding: 3rem 0;
    position: relative;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 2.5rem 3rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.footer-cta-content h3 {
    font-size: 1.6rem;
    color: var(--secondary);
    margin-bottom: 0.3rem;
    font-family: 'Cormorant Garamond', serif;
}

.footer-cta-content p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.footer-cta-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.footer-cta-phone {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition-fast);
}

.footer-cta-phone:hover {
    transform: translateY(-2px);
}

.phone-icon-wrap {
    width: 48px;
    height: 48px;
    background: var(--primary-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
    transition: var(--transition);
    border: 1px solid var(--border-warm);
}

.footer-cta-phone:hover .phone-icon-wrap {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    box-shadow: var(--shadow-gold);
}

.phone-text small {
    display: block;
    font-size: 0.72rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.phone-text strong {
    font-size: 0.95rem;
    color: var(--secondary);
    font-weight: 700;
}

/* Footer Main */
.footer-main {
    background: var(--secondary);
    padding: 5rem 0 3rem;
    position: relative;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

/* Footer Logo */
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.footer-logo:hover {
    transform: translateY(-2px);
}

.footer-logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    box-shadow: var(--shadow-gold);
}

.footer-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.footer-logo-text span {
    color: var(--primary);
}

.footer-brand-col > p {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Trust Badges */
.footer-trust-badges {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 600;
    transition: var(--transition-fast);
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: #cbd5e1;
}

.trust-badge i {
    color: var(--primary);
    font-size: 0.7rem;
}

/* Footer Columns */
.footer-col h3 {
    font-size: 0.88rem;
    margin-bottom: 1.8rem;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* Footer Links */
.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.92rem;
    padding: 0.35rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition-fast);
}

.footer-links a i {
    font-size: 0.55rem;
    color: var(--text-light);
    transition: var(--transition-fast);
    opacity: 0.5;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-links a:hover i {
    color: var(--primary);
    opacity: 1;
}

/* Contact Info Enhanced */
.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.3rem;
}

.contact-info-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.85rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.contact-info li:hover .contact-info-icon {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.contact-info li div:last-child strong {
    display: block;
    color: #cbd5e1;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info li div:last-child span {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-info li div:last-child a {
    color: #94a3b8;
    transition: var(--transition-fast);
}

.contact-info li div:last-child a:hover {
    color: var(--primary);
}

/* Footer Bottom Enhanced */
.footer-bottom {
    background: rgba(0, 0, 0, 0.15);
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #64748b;
}

.footer-bottom-links a {
    color: #64748b;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: #94a3b8;
}

.developer-link {
    color: var(--primary) !important;
    font-weight: 600;
}

.developer-link:hover {
    text-decoration: underline;
}

.footer-bottom-sep {
    color: #475569;
}

.footer-social-links {
    display: flex;
    gap: 0.5rem;
}

.footer-social-links .social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 0.85rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-social-links .social-link:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: #fff;
    color: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold-lg);
}

/* ============================================
   UTILITY
   ============================================ */
.desktop-only {
    display: inline-flex;
}

/* ============================================
   RESPONSIVE - HEADER & FOOTER
   ============================================ */
@media (max-width: 991px) {
    .top-bar { display: none; }

    .navbar {
        top: 0;
        padding: 0.8rem 0;
    }

    .navbar.top-bar-hidden { top: 0; }

    .desktop-only { display: none; }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 5rem 1.5rem 2rem;
        gap: 0.3rem;
        z-index: 999;
        overflow-y: auto;
        transition: right 0.4s var(--ease-out);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
        right: 0;
    }

    .nav-cta-item {
        display: block;
        margin-top: auto;
        padding-top: 1rem;
        border-top: 1px solid var(--border-light);
    }

    .nav-cta-item .nav-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 0.9rem;
    }

    .hamburger { display: flex; }

    /* Dropdown mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        transform: none;
        display: none;
        border: none;
        background: var(--bg-cool);
        border-radius: var(--radius-md);
        min-width: auto;
        padding: 0.4rem;
        margin-top: 0.3rem;
    }

    .dropdown-menu::before { display: none; }

    .dropdown.active .dropdown-menu { display: block; }

    .dropdown-header { display: none; }

    .dropdown-external { display: none; }

    /* Footer responsive */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .footer-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .footer-cta-actions .btn {
        width: 100%;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        width: 100%;
    }

    .footer-cta-inner {
        padding: 1.5rem;
    }

    .footer-trust-badges {
        justify-content: center;
    }

    .footer-cta-content h3 {
        font-size: 1.3rem;
    }
}