/* style.css - Professional Corporate Look */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background: #f8f9fa;
    color: #333;
    line-height: 1.7;
}

/* LOGO COLORS */
:root {
    --primary-red: #D32F2F;
    --primary-blue: #0d47a1;
    --light-gray: #f8f9fa;
    --text-dark: #1a1a1a;
}

/* HEADER & NAVIGATION - TALLER FOR BIG LOGO */
nav {
    background: #ffffff;
    padding: 15px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo-container img {
    height: 85px;
    width: auto;
    display: block;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-red);
}
.cta-btn {
    background: var(--primary-blue);
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}
.cta-btn:hover {
    background: var(--primary-red);
    color: white !important;
}

/* PAGE HEADERS */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    color: white;
    text-align: center;
    padding: 80px 20px;
}
.page-header h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* SERVICE CARDS (Professional Grid) */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}
.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(211, 47, 47, 0.15);
}
.service-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
    border-bottom: 3px solid var(--primary-red);
    padding-bottom: 10px;
    display: inline-block;
}
.service-card ul {
    list-style: none;
    margin-top: 15px;
}
.service-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

/* PRICING & HOW IT WORKS */
.pricing-stripe {
    background: var(--primary-blue);
    color: white;
    padding: 50px 0;
    text-align: center;
}
.pricing-stripe h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.pricing-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    color: #333;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: inline-block;
    min-width: 280px;
    margin: 15px;
}
.pricing-box .price {
    font-size: 2.5rem;
    color: var(--primary-red);
    font-weight: bold;
}
.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}
.step {
    max-width: 250px;
    text-align: center;
}
.step-number {
    background: var(--primary-red);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    font-weight: bold;
}

/* CONTACT FORM - NO PHONE */
.contact-form-container {
    background: white;
    padding: 50px;
    border-radius: 15px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    transition: 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-red);
    outline: none;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}
button.submit-btn {
    background: var(--primary-red);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}
button.submit-btn:hover {
    background: #b71c1c;
    transform: scale(1.02);
}

/* FOOTER - NO PHONE */
footer {
    background: #1a1a1a;
    color: #aaa;
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
    border-top: 5px solid var(--primary-red);
}
footer p {
    margin-bottom: 8px;
}

/* MOBILE */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 15px;
    }
    .nav-links {
        flex-direction: column;
        gap: 15px;
        margin-top: 10px;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
}