/* Duct Clean Booking System Styles */

.duct-clean-booking-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.duct-clean-booking-form h2 {
    color: #1a1a1a;
    margin-bottom: 30px;
    font-size: 28px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

.form-group button {
    background-color: #FF6B35;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-group button:hover {
    background-color: #e55a24;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    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;
}

/* Pricing Styles */
.duct-clean-pricing {
    padding: 40px 20px;
}

.duct-clean-pricing h2 {
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-size: 32px;
}

.pricing-intro {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #FF6B35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
}

.pricing-card h3 {
    color: #1a1a1a;
    margin-bottom: 15px;
    font-size: 22px;
}

.pricing-card .price {
    font-size: 36px;
    color: #FF6B35;
    font-weight: bold;
    margin-bottom: 5px;
}

.pricing-card .duration {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.pricing-card .features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-card .features li {
    padding: 10px 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-card .features li:last-child {
    border-bottom: none;
}

.pricing-card .features li:before {
    content: "✓ ";
    color: #FF6B35;
    font-weight: bold;
    margin-right: 10px;
}

.pricing-card .button {
    background-color: #FF6B35;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.pricing-card .button:hover {
    background-color: #e55a24;
}

.pricing-faq {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-faq h3 {
    color: #1a1a1a;
    margin-bottom: 30px;
    font-size: 24px;
    text-align: center;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item h4 {
    color: #FF6B35;
    margin-bottom: 10px;
    font-size: 16px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Case Studies Styles */
.duct-clean-case-studies {
    padding: 40px 20px;
}

.duct-clean-case-studies h2 {
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-size: 32px;
}

.duct-clean-case-studies .intro {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.case-study-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.case-study-card:hover {
    border-color: #FF6B35;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.case-study-image {
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-content {
    padding: 20px;
}

.case-study-content h3 {
    color: #1a1a1a;
    margin-bottom: 10px;
    font-size: 18px;
}

.case-study-content .sector,
.case-study-content .location {
    color: #FF6B35;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
}

.case-study-content .description {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.case-study-content .results {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.case-study-content .result-item {
    font-size: 12px;
    color: #555;
}

.case-study-content .button {
    background-color: #FF6B35;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.case-study-content .button:hover {
    background-color: #e55a24;
}

/* Responsive */
@media (max-width: 768px) {
    .duct-clean-booking-form {
        padding: 20px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
}
