:root {
    --primary-color: #d4af37; /* Gold */
    --primary-hover: #b5952f;
    --dark: #121212;
    --dark-gray: #1f1f1f;
    --gray: #777777;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --text-color: #333333;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.3s ease-in-out;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

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

/* Header */
.top-bar {
    background-color: var(--dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

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

.top-contacts a, .top-contacts span {
    margin-right: 20px;
    color: var(--light-gray);
}
.top-contacts a:hover {
    color: var(--primary-color);
}
.top-contacts i {
    color: var(--primary-color);
    margin-right: 5px;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 16px;
}
.social-links a:hover {
    color: var(--primary-color);
}

.lang-switcher a {
    color: var(--white);
    margin-left: 10px;
    font-weight: 600;
}
.lang-switcher a.active {
    color: var(--primary-color);
}

.navbar {
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

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

.logo h2 {
    margin: 0;
    color: var(--dark);
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.logo img {
    max-height: 50px;
}

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

.nav-links li a {
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--dark);
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

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

.nav-links li.dropdown {
    position: relative;
}
.nav-links li.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    padding: 10px 0;
}
.nav-links li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-links li.dropdown .dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    text-transform: none;
}
.nav-links li.dropdown .dropdown-menu li a::after {
    display: none;
}
.nav-links li.dropdown .dropdown-menu li a:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: var(--white);
}
.hero-content h1 {
    font-size: 60px;
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}
.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Sections */
.section-padding {
    padding: 100px 0;
}
.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title h2 {
    font-size: 40px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}
.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Grid Layouts */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center;}

/* Cards */
.card {
    background: var(--white);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}
.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}
.card-img {
    height: 250px;
    overflow: hidden;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.card:hover .card-img img {
    transform: scale(1.1);
}
.card-content {
    padding: 30px;
}
.card-title {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: var(--light-gray);
    padding: 80px 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}
.footer-logo h2 {
    color: var(--white);
}
.footer-col h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
}
.footer-links li, .footer-contact-list li {
    margin-bottom: 15px;
}
.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}
.footer-contact-list i {
    color: var(--primary-color);
    width: 25px;
}
.footer-bottom {
    background-color: var(--dark);
    padding: 20px 0;
    text-align: center;
}

/* Float WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: var(--transition);
}
.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Forms */
.form-group { margin-bottom: 20px; }
.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    font-family: var(--font-body);
    font-size: 16px;
    background: var(--light-gray);
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
}
textarea.form-control {
    height: 150px;
    resize: vertical;
}

/* Page Header */
.page-header {
    background-color: var(--dark-gray);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}
.page-header h1 {
    color: var(--white);
    font-size: 48px;
    margin-bottom: 10px;
}
.breadcrumb {
    color: var(--primary-color);
    font-weight: 500;
}
.breadcrumb a {
    color: var(--light-gray);
}
.breadcrumb a:hover {
    color: var(--primary-color);
}

/* Detail Pages */
.detail-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-bottom: 40px;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .hero-content h1 { font-size: 40px; }
}

@media (max-width: 768px) {
    .top-contacts { display: none; }
    .mobile-menu-btn { display: block; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: var(--transition);
    }
    .nav-links.active { right: 0; }
    .nav-links li { width: 100%; }
    .nav-links li.dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-gray);
        display: none;
    }
    .nav-links li.dropdown:hover .dropdown-menu { display: block; }
    
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
}
