/* Text Selection Highlighting in Gold */
::selection {
    background: #d4af37;
    color: #2c3e50;
}

::-moz-selection {
    background: #d4af37;
    color: #2c3e50;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}


body {
    color: #4a4a4a;
    background: #f5f5f0;
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
  
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    color: #2c3e50;
}

a {
    color: #2c3e50;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #d4af37;
    outline: none;
    text-decoration: none;
}

.btn:focus {
    box-shadow: none;
}

.wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    background: #f8f6f1;
    overflow-x: hidden;
}

/* =============================================
   BACK TO TOP BUTTON
   ============================================= */
.back-to-top {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4af37 0%, #f4d160 100%);
    color: #2c3e50;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    right: 30px;
    bottom: 30px;
    border-radius: 50%;
    transition: all 0.4s ease;
    z-index: 999;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.5);
}

.back-to-top:active {
    transform: translateY(-2px);
}

.back-to-top i {
    line-height: 50px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37 0%, #f4d160 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.back-to-top:hover::before {
    opacity: 0.2;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 18px;
        right: 20px;
        bottom: 20px;
    }
    
    .back-to-top i {
        line-height: 45px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
        right: 15px;
        bottom: 15px;
    }
    
    .back-to-top i {
        line-height: 40px;
    }
}

/* =============================================
   NAVBAR
   ============================================= */
.nav-bar {
    position: relative;
    padding: 15px 0;
    transition: all .3s ease;
    height: auto;
    min-height: 80px;
    display: flex;
    align-items: center;
    overflow: visible;
    background: #f5f5f0 !important;
    width: 100%;
}

.nav-logo {
    height: 65px;
    width: auto;
    position: relative;
    z-index: 10;
    object-fit: contain;
    transition: height 0.3s ease;
    shape-rendering: geometricPrecision;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.navbar-brand {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.nav-bar.nav-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 8px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    z-index: 999;
    min-height: 65px;
    background: #f5f5f0 !important;
}

.nav-bar.nav-sticky .nav-logo {
    height: 55px;
}

.nav-bar .navbar {
    height: 100%;
    padding: 0;
    align-items: center;
    width: 100%;
    background: transparent !important;
}

.navbar-dark .navbar-nav {
    align-items: center;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus {
    padding: 10px 10px 8px 10px;
    color: #2c3e50;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #d4af37;
}

.navbar-dark .navbar-nav .nav-link.active {
    color: #d4af37;
    font-weight: 600;
}

.navbar-dark .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 3px;
    background: #d4af37;
    border-radius: 2px;
}


/* Hamburger → X toggle */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232c3e50' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M6 6l18 18M24 6L6 24'/%3e%3c/svg%3e") !important;
}

.nav-bar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f5f5f0;
}

.navbar-toggler {
    border: 3px solid #2c3e50 !important;
    padding: 10px 12px;
    transition: all 0.3s ease;
    margin-left: auto;
    background: #2c3e50 !important;
    border-radius: 5px;
}

.navbar-toggler[aria-expanded="true"] {
    background: #d4af37 !important;
    border-color: #d4af37 !important;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 28px;
    height: 28px;
}

.nav-bar .container-fluid {
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
}

/* Desktop */
@media (min-width: 992px) {
    .nav-bar {
        padding: 12px 60px;
        min-height: 85px;
    }
    
    .nav-bar.nav-sticky {
        padding: 8px 60px;
        min-height: 70px;
    }
    
    .nav-bar a.nav-link {
        padding: 8px 15px;
        font-size: 15px;
        text-transform: uppercase;
        font-weight: 500;
    }

    .nav-logo {
        height: 90px;
    }

    .nav-bar.nav-sticky .nav-logo {
        height: 65px;
    }
    
    .navbar-collapse {
        justify-content: center !important;
    }

    .navbar-nav {
        margin: 0 auto !important;
    }
}

/* Tablet - iPad */
@media (min-width: 768px) and (max-width: 991.98px) {
    .nav-bar {
        min-height: 90px;
        padding: 15px 30px;
    }

    .nav-logo {
        height: 85px;
    }

    .nav-bar.nav-sticky {
        min-height: 75px;
        padding: 10px 30px;
    }

    .nav-bar.nav-sticky .nav-logo {
        height: 70px;
    }
    
    .navbar-dark .navbar-nav .nav-link {
        font-size: 14px;
        padding: 10px 12px;
    }
}

/* Small tablets / large phones */
@media (min-width: 576px) and (max-width: 767.98px) {
    .nav-bar {
        min-height: 75px;
        padding: 12px 20px;
    }
    
    .nav-logo {
        height: 70px;
    }

    .nav-bar.nav-sticky {
        min-height: 68px;
        padding: 8px 20px;
    }

    .nav-bar.nav-sticky .nav-logo {
        height: 60px;
    }

    .navbar-collapse {
        margin-top: 12px;
    }

    .navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

/* Mobile phones */
@media (max-width: 575.98px) {
    .nav-bar {
        min-height: 70px;
        padding: 10px 15px;
    }
    
    .nav-logo {
        height: 65px;
    }

    .nav-bar.nav-sticky {
        min-height: 65px;
        padding: 8px 15px;
    }

    .nav-bar.nav-sticky .nav-logo {
        height: 58px;
    }

    .navbar-collapse {
        margin-top: 12px;
    }

    .navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        font-size: 14px;
    }
}

/* Extra small phones */
@media (max-width: 374.98px) {
    .nav-bar {
        padding: 8px 12px;
        min-height: 65px;
    }
    
    .nav-logo {
        height: 60px;
    }

    .nav-bar.nav-sticky {
        min-height: 60px;
        padding: 6px 12px;
    }

    .nav-bar.nav-sticky .nav-logo {
        height: 55px;
    }
}

.dropdown-menu {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-collapse {
    background: #f5f5f0 !important;
}

html {
    scroll-behavior: smooth;
}


/* =============================================
   FOOTER
   ============================================= */
.footer {
    position: relative;
    margin-top: 45px;
    padding: 60px 0 0 0;
    background: linear-gradient(135deg, #2c3e50 0%, #1a2332 100%);
    color: #f5f5f0;
}

.footer .footer-about,
.footer .footer-link,
.footer .footer-contact {
    position: relative;
    margin-bottom: 40px;
    color: #f5f5f0;
}

.footer .footer-about h2,
.footer .footer-link h2,
.footer .footer-contact h2 {
    position: relative;
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 0.5px;
}

.footer .footer-about p {
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 20px;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 12px;
    color: #ddd;
    font-size: 15px;
    transition: all 0.3s ease;
    padding-left: 0;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 8px;
    color: #d4af37;
    transition: all 0.3s ease;
}

.footer .footer-link a:hover {
    color: #d4af37;
    padding-left: 5px;
}

.footer .footer-link a:hover::before {
    margin-right: 12px;
}

.footer .footer-contact p {
    margin-bottom: 12px;
    color: #ddd;
    font-size: 15px;
    line-height: 1.8;
}

.footer .footer-contact p i {
    width: 25px;
    color: #d4af37;
    margin-right: 5px;
}

.footer .footer-social {
    position: relative;
    margin-top: 25px;
    display: flex;
    gap: 12px;
}

.footer .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #d4af37;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer .footer-social a i {
    font-size: 16px;
    color: #d4af37;
    transition: all 0.3s ease;
}

.footer .footer-social a:hover {
    background: #d4af37;
    transform: translateY(-3px);
}

.footer .footer-social a:hover i {
    color: #2c3e50;
}

.footer .copyright {
    padding: 25px 15px;
    margin-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer .copyright p {
    margin: 0;
    color: #ddd;
    font-size: 14px;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
    font-style: italic;
    color: #d4af37;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0 0;
    }
    
    .footer .footer-about,
    .footer .footer-link,
    .footer .footer-contact {
        margin-bottom: 30px;
    }
    
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 8px 0;
        text-align: center;
    }
}

/* Footer Business Card */
.footer .footer-business-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(201, 169, 97, 0.08) 100%);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.footer .footer-business-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
}

.footer .footer-business-card h2 {
    color: #d4af37;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-align: center;
}

.footer-bc-qr {
    width: 90px;
    height: 90px;
    margin: 0 auto 12px;
    padding: 8px;
    background: #ffffff;
    border-radius: 10px;
    border: 2px solid rgba(212, 175, 55, 0.25);
    transition: all 0.3s ease;
}

.footer .footer-business-card:hover .footer-bc-qr {
    transform: scale(1.05);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.footer-bc-qr img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

.footer-bc-text {
    font-size: 13px;
    color: #ddd;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-bc-link {
    display: inline-block;
    padding: 10px 22px;
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    color: #2c3e50;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}

.footer-bc-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
    color: #1a2332;
    text-decoration: none;
}

.footer-bc-link i {
    margin-right: 6px;
    font-size: 14px;
}

@media (max-width: 991px) {
    .footer .footer-business-card {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .footer .footer-business-card {
        margin-bottom: 30px;
    }
    
    .footer-bc-qr {
        width: 80px;
        height: 80px;
    }
    
    .footer-bc-text {
        font-size: 12px;
    }
    
    .footer-bc-link {
        padding: 9px 20px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .footer .footer-business-card {
        padding: 18px;
    }
    
    .footer-bc-qr {
        width: 75px;
        height: 75px;
    }
    
    .footer-bc-text {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .footer-bc-link {
        padding: 8px 18px;
        font-size: 12px;
    }
}

@media (max-width: 374px) {
    .footer .footer-business-card {
        padding: 15px;
    }
    
    .footer-bc-qr {
        width: 70px;
        height: 70px;
    }
}


/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-content {
    padding: 60px 0;
    background: #f5f5f0;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #d4af37;
}

.legal-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
}

.last-updated {
    font-size: 16px;
    color: #666;
    font-style: italic;
}

.legal-body {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.legal-intro {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(201, 169, 97, 0.08);
    border-left: 5px solid #d4af37;
    border-radius: 5px;
}

.legal-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin: 0;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(201, 169, 97, 0.3);
}

.legal-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 15px;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.legal-section ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.legal-section ul li::before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #d4af37;
    font-size: 24px;
    line-height: 1.5;
}

.legal-section strong {
    color: #2c3e50;
    font-weight: 700;
}

.legal-section a {
    color: #d4af37;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #2c3e50;
}

.contact-details {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #d4af37;
}

.contact-details p {
    margin: 8px 0;
    font-size: 16px;
}

.legal-footer {
    margin-top: 50px;
    padding: 30px;
    background: rgba(44, 62, 80, 0.05);
    border-radius: 8px;
    text-align: center;
}

.legal-footer p {
    font-size: 15px;
    color: #666;
    margin: 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .legal-header h1 {
        font-size: 36px;
    }
    
    .legal-body {
        padding: 30px 20px;
    }
    
    .legal-section h2 {
        font-size: 26px;
    }
    
    .legal-section h3 {
        font-size: 20px;
    }
    
    .legal-section p,
    .legal-section ul li {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .legal-content {
        padding: 40px 0;
    }
    
    .legal-header h1 {
        font-size: 28px;
    }
    
    .legal-body {
        padding: 25px 15px;
    }
    
    .legal-intro {
        padding: 20px 15px;
    }
    
    .contact-details {
        padding: 20px 15px;
    }
}