:root {
    --navy: #001a33;
    --gold: #d4af37;
    --gold-hover: #b8962e;
    --white: #ffffff;
    --gray-text: #a0aec0;
    --light-bg: #f8fafc;
}

html,
body {
    margin: 0;
    padding: 0;
    /* IMPORTANT: Do NOT use overflow: hidden here */
    overflow-x: hidden;
    /* This is okay to prevent side-scrolling */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}
.disclaimer-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.disclaimer-content {
  background: #fff;
  padding: 30px;
  max-width: 600px;
  border-radius: 10px;
  text-align: center;
}

.disclaimer-content h2 {
  margin-bottom: 15px;
}

.disclaimer-content ul {
  text-align: left;
  margin: 15px 0;
}

.disclaimer-content button {
  background: #0b5ed7;
  color: white;
  border: none;
  padding: 10px 25px;
  cursor: pointer;
  border-radius: 5px;
}

body {
    background-color: var(--white);
    color: #333;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Target the placeholder directly */
#header-placeholder {
    position: sticky;
    top: 0;
    z-index: 2000;
    /* Higher than hero content */
    width: 100%;
    background: white;
    /* Matches navbar background */
}

/* Ensure the navbar inside it takes full width */
.navbar {
    width: 100%;
    /* Keep your existing padding and shadow */
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


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

.logo h2 {
    font-size: 1.5rem;
    color: var(--navy);
}

.logo p {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #666;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
}

.btn-gold-nav {
    background: var(--gold);
    padding: 10px 20px;
    border-radius: 4px;
    color: black !important;
}

/* Hero Section */
.hero {
    background: var(--navy);
    padding: 100px 0;
    color: white;
    position: relative;
}

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

.hero-text {
    flex: 1;
    padding-right: 50px;
}

.badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin: 20px 0;
    line-height: 1.1;
}

.hero-p {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-gold {
    background: var(--gold);
    color: black;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

.btn-outline {
    border: 1px solid white;
    color: white;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
}

.hero-stats {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--gray-text);
}

.hero-stats i {
    color: var(--gold);
}

/* Floating Card */
.hero-card {
    background: white;
    color: black;
    padding: 40px;
    border-radius: 8px;
    width: 400px;
    transform: rotate(1deg);
}

.hero-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.mini-feature {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

.mini-feature i {
    font-size: 1.5rem;
    color: var(--navy);
}

.btn-dark-full {
    width: 100%;
    background: var(--navy);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Services Section */
.practice-areas {
    padding: 100px 0;
    background: var(--light-bg);
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.section-subtitle {
    color: #666;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 45px 40px;
    border-radius: 12px;
    /* Changed from transparent to a light grey so the transition works */
    border: 2px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
}

/* This makes the border turn Gold */
.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold) !important;
    /* Force the color change */
    box-shadow: var(--hover-shadow);
}

/* This makes the "Learn More" text turn Gold */
.service-card:hover .learn-more {
    color: var(--gold) !important;
}

/* This moves the arrow and makes it Gold */
.service-card:hover .learn-more i {
    color: var(--gold);
    transform: translateX(5px);
}

.service-card i {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card a {
    color: var(--navy);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Footer */
.main-footer {
    background: var(--navy);
    color: white;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.gold-text {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-grid h4 {
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid li {
    margin-bottom: 12px;
}

.footer-grid a {
    color: var(--gray-text);
    text-decoration: none;
}

.footer-contact p {
    margin-bottom: 15px;
    color: var(--gray-text);
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--gold);
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 0.8rem;
    color: var(--gray-text);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
}

.legal a {
    margin-left: 20px;
    color: var(--gray-text);
    text-decoration: none;
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* About Hero */
.about-hero {
    background: var(--navy);
    /* Use a dark professional background image */
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: white;
    text-align: center;
}

/* Firm Overview */
.firm-overview {
    padding: 100px 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.overview-text h2 {
    color: var(--navy);
    margin-bottom: 25px;
    font-size: 2.2rem;
}

.overview-text p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    border-left: 3px solid var(--gold);
    padding-left: 20px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--navy);
}

.stat-label {
    font-size: 0.75rem;
    font-weight: bold;
    color: #888;
    text-transform: uppercase;
}

/* Values Card */
.values-card {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
    position: relative;
}

.value-badge {
    position: absolute;
    top: -25px;
    right: 30px;
    background: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.values-list {
    list-style: none;
    margin-top: 20px;
}

.values-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.values-list li i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 5px;
}

.values-list strong {
    display: block;
    color: var(--navy);
    margin-bottom: 5px;
}

.values-list p {
    font-size: 0.9rem;
    color: #666;
}

/* Leadership */
.leadership {
    padding: 100px 0;
    background: #fff;
}

.leadership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.leader-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.leader-header {
    height: 120px;
    background: var(--navy);
    position: relative;
}
/* Add this to your style.css for the images */
.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.leader-photo {
    position: absolute;
    bottom: -40px;
    left: 30px;
    width: 80px;
    height: 80px;
    background: #eee;
    border-radius: 50%;
    border: 4px solid white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    color: #999;
}

.leader-info {
    padding: 60px 30px 40px;
}

.leader-title {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.leader-bio {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}

.linkedin-link {
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: #f4f7fa;
}

.cta-section h2 {
    color: var(--navy);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-section p {
    color: #666;
    margin-bottom: 35px;
}

/* Services Hero */
.services-hero {
    background: var(--navy);
    padding: 100px 0;
    color: white;
    text-align: center;
}

/* Service Row Layout */
.service-detail-row {
    padding: 100px 0;
}

.alt-bg {
    background-color: var(--light-bg);
}

.detail-flex {
    display: flex;
    gap: 80px;
    align-items: center;
}

.detail-flex.reversed {
    flex-direction: row-reverse;
}

/* Info Card Style */
.service-info-card {
    flex: 0 0 380px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: #fff8e1;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.service-info-card h2 {
    color: var(--navy);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.who-is-it-for {
    margin: 30px 0;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
}

.who-is-it-for strong {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #888;
}

.who-is-it-for p {
    font-size: 0.95rem;
    margin-top: 5px;
}

/* Offerings List Style */
.offerings-list {
    flex: 1;
}

.offerings-list h3 {
    margin-bottom: 30px;
    color: var(--navy);
}

.offerings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.offerings-grid ul {
    list-style: none;
}

.offerings-grid li {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.offerings-grid li i {
    color: var(--gold);
    margin-top: 4px;
}

.value-add {
    margin-top: 40px;
    border-left: 4px solid var(--gold);
    padding-left: 20px;
}

.value-add strong {
    display: block;
    color: var(--navy);
    margin-bottom: 5px;
}

/* Services CTA */
.services-cta {
    padding: 80px 0;
    background: var(--navy);
    color: white;
    text-align: center;
}

.services-cta h2 {
    margin-bottom: 15px;
}

.services-cta p {
    color: var(--gray-text);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.offerings-grid li i {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 4px; /* Aligns with the first line of text */
}

/* Ensure the Value We Add gold border is consistent */
.value-add {
    margin-top: 40px;
    border-left: 3px solid var(--gold);
    padding-left: 20px;
}

/* Ensure the "reversed" class works for alternating rows */
.detail-flex.reversed {
    flex-direction: row-reverse;
}

/* Style the check icons to be hollow like the screenshots */
.offerings-grid li i {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Ensure images/icons in the card are centered and colored correctly */
.info-icon {
    width: 60px;
    height: 60px;
    background: #fff9e6; /* Soft gold background */
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 25px;
}

/* Responsive fix for mobile */
@media (max-width: 992px) {
    .detail-flex, .detail-flex.reversed {
        flex-direction: column;
        gap: 40px;
    }
    .service-info-card {
        flex: 1;
        width: 100%;
    }
    .offerings-grid {
        grid-template-columns: 1fr;
    }
}

/* Industries Hero */
.industries-hero {
    background: var(--navy);
    padding: 100px 0;
    color: white;
    text-align: center;
}

/* Industries Grid */
.industries-grid-section {
    padding: 80px 0;
    background-color: #fff;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.industry-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    transition: box-shadow 0.3s ease;
}

.industry-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.industry-icon {
    width: 50px;
    height: 50px;
    background: #f8fafc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--navy);
    font-size: 1.2rem;
}

.industry-card h3 {
    color: var(--navy);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.industry-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Industry Bottom CTA */
.industry-cta {
    padding: 100px 0;
    text-align: center;
    background-color: #fff;
}

.industry-cta h2 {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.industry-cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #888;
    line-height: 1.6;
}

.btn-navy-small {
    background: var(--navy);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-navy-small:hover {
    background: #002a52;
}

/* Contact Hero */
.contact-hero {
    background: var(--navy);
    padding: 100px 0;
    color: white;
    text-align: center;
}

/* Contact Grid Layout */
.contact-section {
    padding: 100px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

/* Info Side */
.contact-info h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin: 20px 0;
}

.info-details {
    margin: 40px 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #f8fafc;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.2rem;
}

.info-item h4 {
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: 2px;
}

.info-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Form Side */
.consultation-form-container {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.form-header p {
    color: #888;
    font-size: 0.9rem;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--navy);
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: 0.3s;
}

.contact-form input:focus, 
.contact-form select:focus, 
.contact-form textarea:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.btn-navy-full {
    width: 100%;
    background: var(--navy);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-navy-full:hover {
    background: #002a52;
    transform: translateY(-2px);
}

/* Map Placeholder */
.map-placeholder {
    padding-bottom: 100px;
}

.map-box {
    height: 300px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    border: 2px dashed #ddd;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 26, 51, 0.95); /* Dark Navy matching your theme */
    display: none; /* Hidden by default, shown via JS */
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

/* Modal Box */
.modal-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.modal-content h2 {
    color: var(--navy);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
    padding-bottom: 5px;
}

.disclaimer-body p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
}

.disclaimer-body ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.disclaimer-body li {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.btn-gold-full {
    width: 100%;
    background: var(--gold);
    color: #000;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-gold-full:hover {
    background: var(--gold-hover);
}.modal-overlay {
    z-index: 9999 !important; /* Forces it to the top layer */
    display: none; /* JS will change this to 'flex' */
}


/* =========================
   GLOBAL RESPONSIVE FIXES
========================= */
img {
    max-width: 100%;
    height: auto;
}

.container {
    padding: 0 15px;
}

/* =========================
   TABLETS (<= 992px)
========================= */
@media (max-width: 992px) {

    /* NAVBAR */
    .nav-links {
        display: none; /* replace with hamburger later */
    }

    /* HERO */
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-card {
        width: 100%;
        margin-top: 30px;
    }

    /* SERVICES */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* ABOUT */
    .overview-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        flex-direction: column;
        gap: 20px;
    }

    /* LEADERSHIP */
    .leadership-grid {
        grid-template-columns: 1fr;
    }

    /* CONTACT */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* =========================
   MOBILE (<= 768px)
========================= */
@media (max-width: 768px) {

    /* HERO */
    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-p {
        font-size: 1rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    /* SERVICES */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* INDUSTRIES */
    .industries-grid {
        grid-template-columns: 1fr;
    }

    /* OFFERINGS */
    .offerings-grid {
        grid-template-columns: 1fr;
    }

    /* FOOTER */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bottom-flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* BUTTONS */
    .btn-gold,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    /* CARDS */
    .service-card,
    .industry-card {
        padding: 30px 20px;
    }

    /* MODAL */
    .modal-content {
        padding: 25px;
    }
}

/* =========================
   SMALL PHONES (<= 480px)
========================= */
@media (max-width: 480px) {

    .hero h1 {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

    .consultation-form-container {
        padding: 25px;
    }
}
/* =========================
   HAMBURGER ICON
========================= */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--navy);
    transition: 0.3s;
}

/* =========================
   MOBILE NAV FIX (IMPORTANT)
========================= */
@media (max-width: 992px) {

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);

        /* hidden by default */
        display: none;
        z-index: 2000;
    }

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

    .nav-links li {
        margin: 12px 0;
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        display: block;
    }

    .btn-gold-nav {
        width: 100%;
        text-align: center;
    }
}