   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background: #2c3e50;
            min-height: 100vh;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .logo {
            font-size: 2.5em;
            font-weight: bold;
            color: #2c3e50;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        
        .contact-header {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 5px;
        }
        
        .phone {
            font-size: 1.8em;
            font-weight: bold;
            color: #2c3e50;
            text-decoration: none;
        }
        
        .phone:hover {
            color: #1a252f;
        }
        
        .email {
            color: #7f8c8d;
            text-decoration: none;
        }
        
        .email:hover {
            color: #2c3e50;
        }
        
        .hero {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23f39c12" width="1200" height="400"/><circle fill="%23e67e22" cx="200" cy="100" r="50" opacity="0.3"/><circle fill="%23d35400" cx="800" cy="300" r="80" opacity="0.2"/><rect fill="%23e67e22" x="500" y="150" width="200" height="100" opacity="0.3" rx="10"/></svg>');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 100px 0;
        }
        
        .hero h1 {
            font-size: 3.5em;
            margin-bottom: 20px;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
        }
        
        .hero p {
            font-size: 1.3em;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .cta-button {
            display: inline-block;
            background: #2c3e50;
            color: white;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2em;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(44, 62, 80, 0.4);
        }
        
        .cta-button:hover {
            background: #1a252f;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(44, 62, 80, 0.6);
        }
        
        .services {
            background: white;
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5em;
            color: #2c3e50;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            width: 100px;
            height: 4px;
            background: #2c3e50;
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .service-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
        }
        
        .service-card h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 1.3em;
        }
        
        .service-card p {
            color: #7f8c8d;
            line-height: 1.6;
        }
        
        .areas {
            background: #2c3e50;
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .areas h2 {
            font-size: 2.5em;
            margin-bottom: 30px;
        }
        
        .areas-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .area-badge {
            background: rgba(255,255,255,0.2);
            padding: 15px 25px;
            border-radius: 25px;
            font-weight: bold;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.3);
        }
        
        .contact {
            background: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .contact-info {
            display: flex;
            justify-content: center;
            gap: 60px;
            flex-wrap: wrap;
            margin-top: 40px;
        }
        
        .contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }
        
        .contact-icon {
            font-size: 3em;
            color: #2c3e50;
        }
        
        .contact-item h3 {
            color: #2c3e50;
            font-size: 1.3em;
        }
        
        .contact-item a {
            color: #7f8c8d;
            text-decoration: none;
            font-size: 1.1em;
        }
        
        .contact-item a:hover {
            color: #2c3e50;
        }
        
        .quote-section {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 15px;
            margin-top: 50px;
        }
        
        .quote-section h3 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 1.5em;
        }
        
        footer {
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 30px 0;
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                font-size: 2em;
            }
            
            .hero h1 {
                font-size: 2.5em;
            }
            
            .hero p {
                font-size: 1.1em;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 40px;
            }
            
            .areas-list {
                gap: 10px;
            }
            
            .area-badge {
                padding: 10px 20px;
                font-size: 0.9em;
            }
        }
/* Photo Upload Form Styles */
.photo-upload-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 10px;
    border: 2px dashed #ddd;
}

.file-upload-area {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    overflow: hidden;
}

.file-upload-area:hover {
    border-color: #4CAF50;
    background: #f0fff0;
}

.file-upload-area.dragover {
    border-color: #4CAF50;
    background: #e8f5e8;
}

.upload-placeholder .upload-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.file-upload-area input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-list {
    margin-top: 1rem;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.file-item .file-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.file-item .file-name {
    font-weight: bold;
}

.file-item .file-size {
    color: #666;
    font-size: 0.9rem;
}

.file-item .remove-file {
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 0.8rem;
}

.file-item.valid {
    border-left: 4px solid #4CAF50;
}

.file-item.invalid {
    border-left: 4px solid #ff4444;
}

.file-status {
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

.file-status.valid {
    color: #4CAF50;
}

.file-status.invalid {
    color: #ff4444;
}

