:root {
    --primary: #0a192f;
    --gold: #b38e44;
    --text-main: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--primary); font-weight: 700; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navbar */
nav {
    padding: 10px 0;
    border-bottom: 1px solid #f2f2f2;
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
}
.nav-flex { display: flex; justify-content: space-between; align-items: center; height: 70px; }
.logo { height: 60px; width: auto; max-width: 150px; }
.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--primary); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
.lang-switch button { background: none; border: none; cursor: pointer; font-weight: 700; color: var(--primary); font-family: inherit; }

/* Hero */
header { padding: 120px 0 80px; text-align: center; background: #fafafa; }
.est-tag { color: var(--gold); font-weight: 700; letter-spacing: 5px; font-size: 0.7rem; display: block; margin-bottom: 20px; }
header h1 { font-size: 3rem; margin-bottom: 25px; line-height: 1.2; padding: 0 10px; }
.subtitle { max-width: 800px; margin: 0 auto 40px; color: var(--text-light); font-size: 1.15rem; font-weight: 300; padding: 0 15px; }

.btn-primary {
    padding: 18px 45px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    border: 1px solid var(--primary);
    transition: var(--transition);
    display: inline-block;
}
.btn-primary:hover { background: transparent; color: var(--primary); }

/* Services */
#services { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 70px; font-size: 2.6rem; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 35px; }
.card { padding: 50px 40px; border: 1px solid #f0f0f0; text-align: center; transition: var(--transition); display: flex; flex-direction: column; align-items: center; }
.card:hover { border-color: var(--gold); transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.05); }
.service-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 25px; }
.card h3 { margin-bottom: 20px; font-size: 1.6rem; }

/* Dark Section */
.dark-section { background: var(--primary); color: white; padding: 100px 0; text-align: center; }
.dark-section h2 { color: var(--gold); font-size: 3rem; margin-bottom: 30px; }
.badge { border: 1px solid var(--gold); padding: 10px 20px; margin: 8px; display: inline-block; font-size: 0.75rem; color: var(--gold); font-weight: 700; letter-spacing: 2px; }

/* Footer */
footer { padding: 80px 0 40px; background: #07101d; color: #fff; border-top: 4px solid var(--gold); }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; }
.contact-box h3 { color: var(--gold); margin-bottom: 25px; font-size: 1.8rem; }
.contact-box p { margin-bottom: 12px; font-size: 0.95rem; opacity: 0.8; display: flex; align-items: center; }
.contact-box i { margin-right: 12px; color: var(--gold); width: 20px; }

.map-link {
    display: inline-flex;
    align-items: center;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 8px 18px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 10px;
    transition: var(--transition);
}
.map-link:hover { background: var(--gold); color: var(--primary); }
.map-link i { color: var(--gold) !important; margin-right: 8px; }
.map-link:hover i { color: var(--primary) !important; }

.footer-brand { text-align: right; opacity: 0.4; font-size: 0.85rem; align-self: flex-end; }

/* Responsive */
@media (max-width: 768px) {
    .nav-flex { flex-direction: column; height: auto; padding: 15px 0; gap: 15px; }
    header h1 { font-size: 2.2rem; }
    .footer-grid { flex-direction: column; align-items: center; text-align: center; }
    .contact-box p { justify-content: center; }
    .footer-brand { text-align: center; align-self: center; margin-top: 30px; }
}
