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

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background: #050505;
    overflow-x: hidden;
}

nav {
    width: 100%;
    background: #050505;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
}



.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}



nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin-left: 30px;
}

nav a {
    color: white;
    text-decoration: none;
}

.hero {
    width: 100%;
    height: 90vh;
    background:
        linear-gradient(rgba(0, 0, 0, .35), rgba(0, 0, 0, .35)),
        url("../images/hero.jpeg");
    background-size: 100% 100%;
    background-position: left center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}


.hero h1 {
    font-size: 72px;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, .6);
}

.hero p {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 35px;
}

.features {
    background: #111;
    color: white;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 35px 8%;
}

.feature {
    display: flex;
    align-items: center;
    gap: 18px;
}

.feature span {
    width: 45px;
    height: 45px;
    border: 2px solid #d4af37;
    border-radius: 50%;
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.feature h3 {
    font-size: 15px;
    margin-bottom: 6px;
}

.feature p {
    font-size: 14px;
    color: #ccc;
}


.button {
    background: #d4af37;
    color: #111;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    transition: .3s;
}

.button:hover {
    background: #f1c550;
    transform: translateY(-3px);
}



.logo img {
    height: 70px;
}



.features {
    background: #111;
    color: white;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 30px 8%;
    margin-top: -80px;
    position: relative;
    z-index: 5;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature span {
    font-size: 38px;
    color: #d4af37;
}

.feature h3 {
    font-size: 15px;
    margin-bottom: 6px;
}

.feature p {
    color: #ccc;
    font-size: 14px;
}

.services {
    padding: 90px 8%;
    background: #111;
    text-align: center;
}

.services h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 10px;
}

.services-subtitle {
    color: #cccccc;
    font-size: 18px;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #1b1b1b;
    padding: 40px 25px;
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
}

.service-card h3 {
    color: #d4af37;
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: #dddddd;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-btn {
    background: #d4af37;
    color: #111;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: .3s;
}

.whatsapp-btn:hover {
    background: #1ebc57;
    transform: translateY(-3px);
}