body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #0d0d0d;
    color: #fff;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    z-index: 1000;
}

.nav a {
    margin-left: 20px;
    color: #fff;
    text-decoration: none;
}

.hero {
    height: 100vh;
    position: relative;
}

.slider {
    height: 100%;
    width: 100%;
    position: absolute;
    overflow: hidden;
}

.slide {
    position: absolute;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: absolute;
    bottom: 20%;
    left: 10%;
}

.btn {
    background: #c9a86a;
    padding: 12px 25px;
    color: #000;
    text-decoration: none;
    margin-right: 10px;
}

.btn-outline {
    border: 1px solid #c9a86a;
    padding: 12px 25px;
    color: #c9a86a;
    text-decoration: none;
}

.section {
    padding: 100px 40px;
    background: #0d0d0d;
}

.section.dark {
    background: #1a1a1a;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: #1a1a1a;
    padding: 20px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.form input, .form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
}
