/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #f7f7f7;
    color: #222;
}

/* NAVIGATION */
nav {
    position: sticky;
    top: 0;
    width: 100%;
    background: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

nav img {
    max-width: 100px;
}

nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #e60000;
}

/* DROPDOWN */
.dropdown-parent {
    position: relative;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    background: white;
    list-style: none;
    min-width: 250px;
    padding: 10px 0;
    border-radius: 6px;
    z-index: 10;
}

.dropdown li a {
    display: block;
    padding: 10px 15px;
    color: #222;
}

.dropdown li a:hover {
    color: #e60000;
}

.dropdown-parent:hover .dropdown {
    display: block;
}

/* SEARCH BOX */
.search-box {
    position: relative;
    width: 250px;
}

.search-box i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}

.search {
    width: 100%;
    padding: 10px 10px 10px 35px;
    border-radius: 25px;
    border: 1px solid #ccc;
}

.search:focus {
    border-color: #e60000;
}

/* HERO */
.hero {
    padding: 130px 40px;
    text-align: center;
    color: white;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('spiral.jpg') center/cover no-repeat;
}

.hero h1 {
    font-size: 2.8rem;
    max-width: 850px;
    margin: auto;
}

.hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 20px auto;
}

.btn-primary, .btn-secondary {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    margin: 10px;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary {
    background: #e60000;
    color: #fff;
}

.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
}

/* SERVICES */
.services {
    padding: 60px 40px;
    text-align: center;
}

.services h2 {
    margin-top: 40px;
    font-size: 2rem;
}

.service-cards {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.price {
    display: inline-block;
    margin-top: 10px;
    font-weight: 700;
    color: #e60000;
    font-size: 1.2rem;
}

.btn-service {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #000;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-service:hover {
    background: #e60000;
}