/* --- RESET & BASIC STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #0B0B0B; /* Dark Matte Black */
    color: #F5F5F5;
}

/* --- BUTTONS --- */
.btn-gold {
    background: transparent;
    color: #D4AF37; /* Metallic Gold */
    border: 2px solid #D4AF37;
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-gold:hover {
    background: #D4AF37;
    color: #0B0B0B;
}

/* --- 1. HEADER --- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(11, 11, 11, 0.95);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #222;
}

.main-header .logo {
    font-size: 24px;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 1px;
}

.nav-links a {
    color: #A0A0A0;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #D4AF37;
}

/* --- 2. HERO SECTION --- */
.hero-section {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('https://unsplash.com') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 36px;
    color: #F5F5F5;
    margin-bottom: 30px;
}

/* Search Widget */
.search-widget {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #D4AF37;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.search-widget select, 
.search-widget input {
    padding: 12px;
    background: #121212;
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px;
    outline: none;
}

.btn-search {
    background: #D4AF37;
    color: #0B0B0B;
    border: none;
    padding: 12px 25px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
}

/* --- 3. SERVICES SECTION --- */
.services-section {
    padding: 60px 5%;
    text-align: center;
}

.section-title {
    color: #D4AF37;
    font-size: 28px;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: #121212;
    border: 1px solid #222;
    padding: 50px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s ease;
}

.service-card:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

.service-card h3 {
    font-size: 20px;
    color: #F5F5F5;
}

/* --- 4. COUNTER SECTION --- */
.counter-section {
    background: #121212;
    border-top: 2px solid #D4AF37;
    border-bottom: 2px solid #D4AF37;
    padding: 40px 5%;
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
}

.counter-item h2 {
    color: #D4AF37;
    font-size: 36px;
}

.counter-item p {
    color: #A0A0A0;
    margin-top: 5px;
}

/* --- 5. FOOTER --- */
.main-footer {
    text-align: center;
    padding: 30px;
    background: #0B0B0B;
    border-top: 1px solid #222;
    color: #666;
    font-size: 14px;
}

/* --- RESPONSIVE DESIGN (MOBILE) --- */
@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        gap: 15px;
    }
    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .hero-content h1 {
        font-size: 26px;
    }
    .search-widget {
        flex-direction: column;
        width: 100%;
    }
}
