/* Reset & Container */
.serrurier-home .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-btn {
    display: inline-block;
    background: #f0b429;
    color: #1e1e1e;
    padding: 15px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #d49a1a;
    transform: translateY(-2px);
}

/* Formulaire */
.form-section {
    background: #f7f7f7;
    padding: 60px 0;
}

.serrurier-form {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.serrurier-form button {
    background: #2c5f8a;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
}

/* Services Grid */
.services-section,
.accessoires-section,
.blog-section,
.seo-section {
    padding: 60px 0;
}

.services-grid,
.accessoires-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card,
.accessoire-card,
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.service-card:hover,
.accessoire-card:hover,
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card img,
.accessoire-card img,
.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h3,
.accessoire-card h3,
.blog-card h3 {
    padding: 15px 20px 0;
    margin: 0;
}

.service-excerpt,
.service-content,
.blog-excerpt {
    padding: 0 20px 20px;
    color: #555;
}

.price {
    padding: 0 20px 20px;
    font-size: 1.4rem;
    font-weight: bold;
    color: #e67e22;
}

.read-more {
    display: inline-block;
    margin: 0 20px 20px;
    color: #2c5f8a;
    text-decoration: none;
    font-weight: 600;
}

.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.alert.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-grid,
    .accessoires-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        padding: 60px 20px;
    }
}