:root {
    --bg-dark: #0f1013;
    --bg-card: #18191f;
    --bg-card-hover: #22242c;
    --accent-gold: #c5a880;
    --accent-gold-light: #e0caaa;
    --text-main: #f5f5f7;
    --text-muted: #a1a1aa;
    --border-color: rgba(197, 168, 128, 0.2);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    padding-bottom: 70px; /* Space for sticky mobile bar */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.header {
    background-color: rgba(15, 16, 19, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    padding: 18px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 2px;
}

.logo span {
    color: var(--accent-gold);
}

.nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 24px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--accent-gold);
}

.nav-btn {
    background: var(--accent-gold);
    color: #000 !important;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600 !important;
}

/* Hero Section */
.hero {
    min-height: 75vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 80px 0;
}

.hero-content {
    max-width: 800px;
}

.badge {
    display: inline-block;
    background: rgba(197, 168, 128, 0.15);
    color: var(--accent-gold-light);
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: #0f1013;
}

.btn-primary:hover {
    background-color: var(--accent-gold-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.full-width {
    width: 100%;
    text-align: center;
}



/* Services & Pricing */
.services {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px auto;
}

.sub-title {
    color: var(--accent-gold);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-muted);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.price-item {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.price-item:hover {
    background-color: var(--bg-card-hover);
    border-color: var(--accent-gold);
}

.price-item.featured {
    border-color: var(--accent-gold);
    background: linear-gradient(180deg, rgba(197, 168, 128, 0.08) 0%, var(--bg-card) 100%);
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-gold);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.price-header h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
}

.duration {
    display: inline-block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 4px;
}

.price-tags {
    text-align: right;
}

.price-eur {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
}

.price-usd {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #14151a;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.about-features {
    list-style: none;
    margin-bottom: 30px;
}

.about-features li {
    margin-bottom: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-features li span {
    color: var(--accent-gold);
    font-weight: 700;
}

/* Location */
.location {
    padding: 80px 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-card h3 {
    font-size: 1.1rem;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.info-card p, .info-card a {
    color: var(--text-muted);
    text-decoration: none;
}

.info-card a:hover {
    color: #fff;
}

.map-box {
    min-height: 380px;
}

/* Footer */
.footer {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Mobile Sticky Action Bar */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    background: #0f1013;
    border-top: 1px solid var(--border-color);
    z-index: 999;
}

.sticky-cta a {
    flex: 1;
    text-align: center;
    padding: 14px 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.cta-wa {
    background-color: #25d366;
    color: #fff;
}

.cta-call {
    background-color: var(--accent-gold);
    color: #000;
}

/* Responsive */
@media (max-width: 900px) {
    .hero h1 { font-size: 2.2rem; }
    .about-wrapper, .location-grid { grid-template-columns: 1fr; }
    .nav { display: none; } /* Mobile simplicity */
    .map-box { min-height: 300px; }
}