:root {
    --primary: #d4af37; 
    --bg-dark: #0a0a0a;
    --bg-light: #161616;
    --text-main: #ffffff;
    --text-dim: #cccccc;
}

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

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.8;
}

.container { width: 85%; max-width: 1100px; margin: auto; }

/* Header */
header {
    background: rgba(10, 10, 10, 0.98);
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #222;
}

nav { width: 100%; display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 1.6rem; font-weight: 800; letter-spacing: 3px; }
.logo span { color: var(--primary); }

.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 35px; }
.nav-links a { text-decoration: none; color: var(--text-main); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }

/* Sections */
section { padding: 120px 0; }

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero h1 { font-size: 3.5rem; letter-spacing: 2px; margin-bottom: 15px; }

.btn-primary {
    background: var(--primary);
    color: #000;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 30px;
    border-radius: 0;
    transition: 0.4s;
}

/* About Styling */
.highlight-text {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    font-style: italic;
}

.about-content p { margin-bottom: 20px; color: var(--text-dim); }

.about-meta {
    margin-top: 40px;
    padding: 30px;
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
}

.meta-item { margin-bottom: 10px; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.service-card { background: var(--bg-light); padding: 50px 30px; text-align: center; border: 1px solid #222; }
.service-card i { font-size: 2rem; color: var(--primary); margin-bottom: 20px; }

/* Contact Form */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.contact-info h3 { margin-bottom: 20px; color: var(--primary); }
.socials a { color: var(--text-main); text-decoration: none; font-size: 1.1rem; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 15px; margin-bottom: 15px; background: #111; border: 1px solid #333; color: #fff;
}

footer { text-align: center; padding: 40px; border-top: 1px solid #222; font-size: 0.8rem; color: #555; }

@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}