/* ===== GENERAL STYLES ===== */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    color: #333;
}

h1, h2, h3, h4 {
    margin: 0 0 10px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== HEADER ===== */
header {
    background: #1a1a1a;
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1 {
    display: inline-block;
    margin-left: 20px;
}

header nav {
    display: inline-block;
    float: right;
    margin-right: 20px;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

header nav ul li a,
header nav ul li button {
    color: white;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

header nav ul li button:hover,
header nav ul li a:hover {
    text-decoration: underline;
}

/* ===== HERO ===== */
.hero {
    background: url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80&w=1200') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 150px 20px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero button {
    background: ##DAA520;
    color: white;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
}

.hero button:hover {
    background: #e67e00;
}

/* ===== SECTIONS ===== */
section {
    padding: 80px 0;
    text-align: center;
}

.service-card, .testimonial-card {
    background: white;
    padding: 20px;
    margin: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card h3, .testimonial-card h4 {
    margin-top: 10px;
}

/* ===== FOOTER ===== */
footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

footer a {
    color: #ff8c00;
    text-decoration: none;
}

/* ===== MODALS ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0,0,0,0.6);
}

.modal.active {
    display: block;
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== MULTI-STEP FORM ===== */
.form-step {
    display: none;
    text-align: left;
}

.form-step-active {
    display: block;
}

form input, form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

form button {
    background: #ff8c00;
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
    margin-right: 10px;
}

form button:hover {
    background: #e67e00;
}