/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 100px 20px 80px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero .subheadline {
    font-size: 1.5rem;
    margin-bottom: 10px;
    opacity: 0.95;
}

.hero .service-area {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.85;
}

.cta-button {
    display: inline-block;
    background-color: #4a90e2;
    color: white;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.cta-button:hover {
    background-color: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 20px;
    background-color: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #4a90e2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step p {
    color: #555;
    line-height: 1.7;
}

/* Cost Savings Section */
.cost-savings {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
}

.cost-savings h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cost-savings .intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

.comparison-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-card.owner-builder {
    border: 3px solid #4a90e2;
    position: relative;
}

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.comparison-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 30px;
}

.comparison-card .price.savings {
    color: #27ae60;
}

.comparison-card ul {
    list-style: none;
}

.comparison-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.comparison-card ul li:last-child {
    border-bottom: none;
}

.vs {
    font-size: 2rem;
    font-weight: 700;
    color: #4a90e2;
    text-align: center;
}

.savings-highlight {
    text-align: center;
    background-color: #27ae60;
    color: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.savings-highlight p {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.savings-highlight .note {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Gallery Section */
.gallery {
    padding: 80px 20px;
    background-color: white;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.image-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
}

.gallery-item .caption {
    padding: 15px;
    background-color: #f8f9fa;
    text-align: center;
    color: #555;
    font-weight: 500;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.benefit {
    background: white;
    padding: 35px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.benefit h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.benefit p {
    color: #555;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background-color: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact .form-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #555;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    width: 100%;
    background-color: #27ae60;
    color: white;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.submit-button:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.submit-button:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

footer p {
    margin: 5px 0;
    opacity: 0.9;
}

footer .domain {
    font-weight: 600;
    color: #4a90e2;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .subheadline {
        font-size: 1.2rem;
    }
    
    .hero .service-area {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .how-it-works h2,
    .cost-savings h2,
    .gallery h2,
    .why-choose h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vs {
        transform: rotate(90deg);
        margin: 20px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .steps {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 20px 50px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .comparison-card .price {
        font-size: 2rem;
    }
    
    .savings-highlight p {
        font-size: 1.4rem;
    }
    
    .how-it-works,
    .cost-savings,
    .gallery,
    .why-choose,
    .contact {
        padding: 50px 20px;
    }
}
