body {
    font-family: 'Arial', sans-serif;
    scroll-behavior: smooth;
}

/* HERO */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1552196563-55cd4e45efb3') center/cover no-repeat;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* SECTION SPACING */
section {
    padding: 80px 0;
}

/* CARDS */
.card {
    border: none;
    border-radius: 20px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* IMAGES */
img {
    max-width: 100%;
}

/* BUTTON */
.btn-primary {
    background: #6c63ff;
    border: none;
}

.btn-primary:hover {
    background: #4b47cc;
}
/* SERVICE HERO */
.service-hero {
    height: 60vh;
    background: url('https://images.unsplash.com/photo-1526401485004-2fda9f8b0e1c?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    position: relative;
}

.service-hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

/* SERVICE CARD */
.service-card {
    transition: 0.3s;
}
.service-card:hover {
    transform: scale(1.05);
}

/* PRICING */
.pricing-card {
    border-radius: 20px;
    transition: 0.3s;
}
.pricing-card:hover {
    transform: translateY(-10px);
}

.highlight {
    background: #6c63ff;
    color: white;
}

/* CTA already exists (reuse) */
/* CONTACT HERO */
.contact-hero {
    height: 60vh;
    background: url('https://images.unsplash.com/photo-1518611012118-fab7525036f0?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    position: relative;
}

.contact-hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

/* FORM */
form {
    background: white;
    padding: 30px;
    border-radius: 15px;
}