:root {
    --primary-black: #121212;
    --secondary-black: #1e1e1e;
    --primary-gold: radial-gradient(circle at 30% 30%, #f7e486 0%, #e9d275 18%, #E6C35C 35%, #D4AF37 55%, #e7b836 72%, #daac2d 88%, #a58019 100%);
    --primary-gold-solid: #D4AF37;
    --light-gold: #F4E4A6;
    --dark-gold: #8C6F1C;
    --primary-white: #FFFFFF;
    --off-white: #F8F8F8;
    --light-gray: #E5E5E5;
    --text-gray: #888888;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary-black);
    background-color: var(--primary-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Header Styles */
.navbar {
    background-color: var(--primary-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-black) !important;
}

.navbar-brand span {
    background: var(--primary-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: var(--primary-black) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-black) !important;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.nav-link.active:after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    color: var(--primary-black);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Footer Styles */
.footer {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    position: relative;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gold);
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-white);
}

.footer-title span {
    background: var(--primary-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 0;
    transition: padding-left 0.3s ease;
}

.footer-links li:hover {
    padding-left: 10px;
}

.footer-links li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.footer-links li:hover:before {
    width: 6px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--light-gold);
}

.social-icons {
    display: flex;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--primary-white);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.social-icon:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.social-icon:hover:before {
    opacity: 1;
}

.social-icon i {
    position: relative;
    z-index: 1;
}

.copyright {
    border-top: 1px solid var(--secondary-black);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: var(--text-gray);
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gold);
    color: var(--primary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(140, 111, 28, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.chat-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(244, 228, 166, 0.8) 0%, rgba(212, 175, 55, 0.8) 50%, rgba(140, 111, 28, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(140, 111, 28, 0.5);
}

.chat-button:hover:before {
    opacity: 1;
}

.chat-button i {
    position: relative;
    z-index: 1;
}

.chat-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    background-color: var(--primary-white);
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    width: 200px;
    display: none;
    border: 1px solid var(--light-gray);
}

.chat-options.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.chat-option {
    display: flex;
    align-items: center;
    padding: 0.8rem;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    transition: background-color 0.2s, transform 0.2s;
    color: var(--primary-black);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.chat-option:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--primary-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chat-option:hover {
    background-color: var(--off-white);
    color: var(--primary-black);
    transform: translateX(5px);
}

.chat-option:hover:before {
    opacity: 1;
}

.chat-option i {
    margin-right: 10px;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Buttons */
.btn-gold {
    background: var(--primary-gold);
    color: var(--primary-black);
    font-weight: 600;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(140, 111, 28, 0.3);
}

.btn-outline-gold {
    background: transparent;
    color: var(--primary-black);
    font-weight: 600;
    border: 2px solid var(--primary-gold-solid);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(140, 111, 28, 0.3);
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: var(--primary-gold);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #8C6F1C 0%, #D4AF37 50%, #F4E4A6 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}