.elementor-61 .elementor-element.elementor-element-b04e10a{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-75a721e *//* Global Styles */
:root {
    --primary-color: #06adf3;
    --secondary-color: #0561c0;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(5, 97, 192, 0.9), rgba(6, 173, 243, 0.8)),
                url('path-to-inspection-hero-image.jpg') center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-container {
    width: 100%;
    padding: 0 20px;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Inspection Types Section */
.inspection-types {
    padding: 80px 0;
    background-color: var(--white);
}

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

.inspection-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.inspection-card:hover {
    transform: translateY(-5px);
}

.inspection-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.inspection-points {
    list-style: none;
    margin-top: 15px;
}

.inspection-points li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.inspection-points li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.benefit-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: var(--light-gray);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Booking Section */
.booking-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.booking-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    margin-top: 40px;
}

.booking-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.booking-form textarea {
    height: 120px;
    resize: vertical;
}

.submit-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    background-color: var(--secondary-color);
}

.booking-info {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.hours-list {
    list-style: none;
    margin: 20px 0;
}

.hours-list li {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.contact-details {
    margin-top: 30px;
}

.contact-details p {
    margin-bottom: 15px;
}

.contact-details i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section h2 {
        font-size: 1.5rem;
    }
    
    .booking-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline:before {
        display: none;
    }
}

/* Section Headers */
section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}/* End custom CSS */