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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #e0e0e0;
    line-height: 1.6;
}

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

/* Navbar */
.navbar {
    background: linear-gradient(90deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border-bottom: 3px solid #d4af37;
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    flex: 1;
}

.nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: #d4af37;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: white;
    padding: 120px 40px;
    text-align: center;
    border-bottom: 3px solid #d4af37;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(212, 175, 55, 0.5);
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 15px;
}

/* Sections */
section {
    padding: 80px 40px;
    margin: 40px 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border: 2px solid #d4af37;
    border-radius: 15px;
}

section h2 {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    font-size: 2.5rem;
    text-align: center;
}

section p {
    color: #b0b0b0;
    font-size: 1.1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #d4af37;
    text-align: center;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.card h3 {
    color: #d4af37;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.card p {
    color: #b0b0b0;
}

/* Contact */
.contact {
    max-width: 1000px;
    margin: 0 auto;
}

.contact form {
    display: grid;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.contact input,
.contact textarea {
    padding: 15px;
    background: #1a1a1a;
    border: 2px solid #d4af37;
    border-radius: 8px;
    color: #e0e0e0;
    font-family: inherit;
    font-size: 1rem;
}

.contact input:focus,
.contact textarea:focus {
    outline: none;
    border-color: #ffffff;
    background: #242424;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.contact button {
    padding: 15px 40px;
    background: linear-gradient(90deg, #d4af37 0%, #999999 50%, #d4af37 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.contact button:hover {
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.contact-info {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #d4af37;
    text-align: center;
}

.contact-info p {
    color: #d4af37;
    margin: 10px 0;
    font-weight: 600;
}

/* Map */
iframe {
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    border: 3px solid #d4af37;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
}

/* Footer */
footer {
    background: linear-gradient(90deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border-top: 3px solid #d4af37;
    padding: 30px 20px;
    color: #d4af37;
    text-align: center;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 15px 20px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    section {
        padding: 40px 20px;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
