* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #1a1a2e;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-header {
    background: #0b0b1a;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 18px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.company-name {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sub-line {
    font-size: 0.7rem;
    color: #D4AF37;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-menu a {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #D4AF37;
}

.header-contact {
    font-size: 0.85rem;
    text-align: right;
}

.header-contact span {
    display: block;
    color: #ccc;
}

.header-contact i {
    margin-right: 6px;
    color: #D4AF37;
}

.mobile-toggle {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: white;
}

.hero-fullwidth {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-overlay .container {
    width: 100%;
}

.hero-overlay h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-overlay .highlight {
    color: #D4AF37;
}

.hero-overlay p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.btn {
    display: inline-block;
    background: #D4AF37;
    color: #0b0b1a;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    transition: 0.2s;
    border: none;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    border: 2px solid #D4AF37;
    color: #D4AF37;
}

.btn-outline:hover {
    background: #D4AF37;
    color: #0b0b1a;
}

.btn:hover {
    background: #c3a032;
    transform: translateY(-2px);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-sub {
    color: #555;
    margin-bottom: 48px;
}

.grid-3, .services-grid, .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.card {
    background: #f9f9fc;
    border-radius: 24px;
    padding: 28px 22px;
    transition: 0.25s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid #eee;
}

.card i {
    font-size: 2.2rem;
    color: #D4AF37;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.stat-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    background: #0b0b1a;
    color: white;
    padding: 40px 30px;
    border-radius: 40px;
    margin: 50px 0;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #D4AF37;
}

.footer {
    background: #0b0b1a;
    color: #ccc;
    padding: 50px 0 30px;
    margin-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer a {
    color: #ccc;
    text-decoration: none;
}

.footer a:hover {
    color: #D4AF37;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #2a2a3a;
    font-size: 0.8rem;
}

.img-placeholder {
    background: #e2e2ea;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    color: #555;
    font-weight: 500;
    margin: 15px 0;
}

.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-family: inherit;
    margin-bottom: 18px;
}

.contact-info-box {
    background: #f5f5f9;
    padding: 24px;
    border-radius: 28px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
}

.step {
    flex: 1;
    background: #fef7e0;
    padding: 20px;
    border-radius: 24px;
}

.map-embed {
    margin: 30px 0;
    border-radius: 28px;
    overflow: hidden;
}

@media (max-width: 900px) {
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 15px;
        background: #0b0b1a;
        padding: 20px;
        margin-top: 15px;
    }
    .nav-menu.show {
        display: flex;
    }
    .mobile-toggle {
        display: block;
    }
    .header-inner {
        flex-wrap: wrap;
    }
    .hero-overlay h2 {
        font-size: 2rem;
    }
    .hero-fullwidth {
        min-height: 400px;
    }
    .stat-grid {
        flex-direction: column;
    }
    .logo-img {
        height: 40px;
    }
    .company-name {
        font-size: 1.2rem;
    }
}