@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Manrope:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0');

:root {
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #B8960C;
    --dark-bg: #0B0C10;
    --dark-secondary: #101114;
    --card-bg: #15161C;
    --card-hover: #1a1c24;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(212, 175, 55, 0.3);
    --text-white: #FFFFFF;
    --text-gray: #B0B3B8;
    --text-light: #e0e0e0;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-white);
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 80px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: 'Manrope', sans-serif;
    background: none;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

ul {
    list-style: none;
}

.material-symbols-outlined {
    font-size: 1.2rem;
    vertical-align: middle;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 0 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(11, 12, 16, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-icon span {
    font-size: 2rem;
    color: var(--gold);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
}

.brand-tagline {
    font-size: 0.6rem;
    color: var(--text-gray);
    letter-spacing: 2px;
}

.logo span.material-symbols-outlined {
    font-size: 1.8rem;
    color: var(--gold);
}

.hamburger-btn {
    display: none;
    color: var(--gold);
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-white);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding: 8px 0;
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.lang-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 15px;
    z-index: 1100;
}

.lang-dropbtn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lang-dropbtn img, 
.lang-dropdown-content a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    border-radius: 50%;
}

.lang-dropbtn:hover {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
}

.lang-dropbtn:hover img {
    filter: grayscale(0%) brightness(1);
}

.lang-dropdown-content {
    display: block;
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(16, 17, 20, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid var(--border-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: unset;
}

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

.lang-dropdown-content a {
    width: 34px;
    height: 34px;
    display: block;
    border-radius: 50%;
    padding: 2px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    background: transparent;
}

.lang-dropdown-content a img {
    border-radius: 50%;
}

.lang-dropdown-content a:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.1);
}

.lang-dropdown-content a:hover img {
    filter: grayscale(0%) brightness(1);
}

.lang-dropdown-content a::after {
    display: none;
}

.btn-reserveer {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #000 !important;
    padding: 10px 24px !important;
    border-radius: 4px;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.btn-reserveer::after {
    display: none;
}

.btn-reserveer:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: var(--dark-secondary);
    z-index: 2500;
    padding: 40px 30px;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid var(--border-gold);
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.open {
    transform: translateX(0);
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.close-menu-btn {
    color: var(--text-white);
    transition: color 0.3s;
}

.close-menu-btn:hover {
    color: var(--gold);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav-links a {
    font-size: 1.1rem;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--gold);
    border-bottom-color: var(--border-gold);
}

.mobile-socials {
    margin-top: auto;
    display: flex;
    gap: 25px;
    justify-content: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.mobile-socials a {
    color: var(--text-gray);
    font-size: 1.4rem;
    transition: all 0.3s;
}

.mobile-socials a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: none;
    backdrop-filter: blur(5px);
}

.overlay.active {
    display: block;
}

.hero {
    height: calc(100vh - 80px);
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=2070');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    position: relative;
    margin-top: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold);
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    color: var(--text-white);
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 700;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 45px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-white);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-10px) translateX(-50%);}
    60% {transform: translateY(-5px) translateX(-50%);}
}

.btn-primary {
    padding: 14px 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--gold);
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    background: var(--gold-light);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 14px 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--gold);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    background: var(--gold);
    color: #000;
}

.section {
    padding: 100px 6%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-label.center {
    margin: 0 auto 15px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.container {
    max-width: 100%;
    margin: 0 auto;
}

.page-header {
    padding: 100px 20px 60px;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(11, 12, 16, 1)), url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?q=80&w=2070');
    background-size: cover;
    background-position: center;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.page-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.about-section {
    background: var(--dark-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    position: relative;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--gold);
    border-radius: 8px;
    z-index: -1;
}

.about-image-badge {
    position: absolute;
    bottom: 30px;
    right: -10px;
    background: var(--card-bg);
    padding: 15px 25px;
    border-left: 4px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow);
    z-index: 2;
}

.about-image-badge span.material-symbols-outlined {
    font-size: 2rem;
    color: var(--gold);
}

.about-image-badge span:last-child {
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
}

.about-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--text-white);
    margin-bottom: 25px;
}

.about-content p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon span {
    color: var(--gold);
    font-size: 1.2rem;
}

.about-feature h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.about-feature p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    transition: all 0.4s ease;
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon span {
    color: var(--gold);
    font-size: 2rem;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.menu-preview {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?q=80&w=2070');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 12px 30px;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-gray);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-tab:hover,
.menu-tab.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-item-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(21, 22, 28, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.menu-item-card:hover {
    border-color: var(--border-gold);
    background: var(--card-bg);
    transform: translateX(5px);
}

.menu-item-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.menu-item-icon span {
    color: var(--gold);
    font-size: 1.8rem;
}

.menu-item-content {
    flex: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.menu-item-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--text-white);
    font-weight: 600;
}

.menu-item-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 700;
}

.menu-item-card p {
    color: var(--text-gray);
    font-size: 0.85rem;
    font-style: italic;
}

.menu-item-tags {
    margin-top: 10px;
}

.menu-item-tags span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
}

.menu-item-tags .material-symbols-outlined {
    font-size: 1rem;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

.menu-page {
    padding: 100px 6%;
}

.menu-list-section {
    background-color: var(--dark-bg);
}

.menu-category {
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.menu-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.menu-category-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
}

.menu-category-header span {
    color: var(--gold);
    font-size: 2rem;
}

.menu-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.menu-list-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 25px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-list-item:hover {
    border-color: var(--border-gold);
    transform: translateY(-3px);
}

.menu-list-item h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.menu-list-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.5;
}

.menu-list-item .price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 700;
    white-space: nowrap;
    margin-left: 20px;
}

.about-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-page-image {
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.about-page-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--gold);
    border-radius: 8px;
    z-index: -1;
}

.about-page-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.about-page-text p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.team-section {
    margin-top: 80px;
}

.team-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 50px;
}

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

.team-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-5px);
}

.team-card-image {
    height: 280px;
    overflow: hidden;
}

.team-card-content {
    padding: 25px;
}

.team-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 5px;
}

.team-card span {
    color: var(--gold);
    font-size: 0.9rem;
}

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

.value-card {
    background: var(--card-bg);
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--border-gold);
}

.value-card span {
    color: var(--gold);
    font-size: 2.5rem;
    display: block;
    margin-bottom: 20px;
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.gallery-section {
    background: var(--dark-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    height: 100%;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    background: rgba(212, 175, 55, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-overlay span {
    color: var(--gold);
    font-size: 1.5rem;
}

.testimonials-section {
    background: var(--dark-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--border-gold);
}

.testimonial-rating {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-secondary);
}

.testimonial-avatar span {
    font-size: 1.5rem;
    color: var(--gold);
}

.testimonial-info {
    text-align: left;
}

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

.testimonial-info span {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.contact-card {
    background: var(--card-bg);
    padding: 25px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--border-gold);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon span {
    color: var(--gold);
    font-size: 1.3rem;
}

.contact-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 8px;
}

.contact-card-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--card-bg);
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

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

.form-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 10px;
}

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

.form-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.form-section-header h4 {
    color: var(--text-white);
    font-weight: 600;
}

.form-section-header span {
    color: var(--gold);
}

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

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.form-group label span {
    color: var(--gold);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper .input-icon {
    position: absolute;
    left: 14px;
    color: var(--gold);
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 10;
}

.form-control {
    width: 100%;
    padding: 12px 16px 12px 42px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-white);
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.textarea-wrapper .input-icon {
    top: 15px;
}

.textarea-wrapper .form-control {
    padding-top: 12px;
    min-height: 120px;
    resize: vertical;
}

.form-control:focus {
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 1px var(--border-gold);
}

.btn-submit {
    width: 100%;
    background: var(--gold);
    color: #000;
    padding: 14px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.map-wrapper {
    margin-top: 50px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.map-container {
    height: 400px;
}

.cta-section {
    background: var(--card-bg);
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?q=80&w=2000') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.cta-icon span {
    color: var(--gold);
    font-size: 2rem;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 20px;
}

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

.cta-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
}

.cta-info-item span:first-child {
    color: var(--gold);
}

.footer {
    background: var(--dark-secondary);
    padding: 80px 6% 30px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.footer-brand .logo {
    margin-bottom: 20px;
    display: flex;
}

.footer-brand p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--gold);
    color: #000;
}

.footer-column h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a {
    color: var(--text-gray);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-hours .hour-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--text-gray);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 8px;
}

.footer-hours .hour-row:last-child {
    border-bottom: none;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-item span {
    color: var(--gold);
    margin-top: 3px;
}

.footer-contact-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

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

.text-section {
    background-color: var(--dark-bg);
    padding: 80px 20px;
    border-bottom: 1px solid var(--border-color);
}

.text-container {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.text-container h1, 
.text-container h2, 
.text-container h3, 
.text-container h4, 
.text-container h5, 
.text-container h6 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    font-weight: 600;
}

.text-container h2 {
    font-size: 2rem;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-gold);
}

.text-container h3 {
    font-size: 1.6rem;
    color: var(--text-white);
}

.text-container p {
    margin-bottom: 1.5em;
    color: var(--text-gray);
}

.text-container strong, 
.text-container b {
    color: var(--gold-light);
    font-weight: 700;
}

.text-container em, 
.text-container i {
    color: var(--text-gray);
    font-style: italic;
}

.text-container ul, 
.text-container ol {
    margin-bottom: 1.5em;
    padding-left: 20px;
}

.text-container ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-gray);
}

.text-container ul li::before {
    content: '•';
    color: var(--gold);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.text-container ol li {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
    padding-left: 5px;
}

.text-container ol li span {
    color: var(--text-gray);
    font-weight: 400;
}

.text-container a {
    color: var(--gold);
    border-bottom: 1px dotted var(--gold);
    transition: all 0.3s ease;
}

.text-container a:hover {
    color: var(--gold-light);
    border-bottom-style: solid;
}

.text-container blockquote {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--gold);
    padding: 20px 30px;
    margin: 30px 0;
    font-style: italic;
    color: var(--text-light);
    position: relative;
    border-radius: 0 8px 8px 0;
}

.text-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    border: 1px solid var(--border-color);
}