/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    margin-bottom: 15px;
    color: #1a365d;
}

p {
    margin-bottom: 15px;
}

/* Top Bar */
.top-bar {
    background-color: #1a365d;
    color: #fff;
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phone-top strong {
    font-size: 1.1rem;
    color: #ff9800;
}

/* Header */
header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 3px solid #ff9800;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: #1a365d;
    text-transform: uppercase;
}

.logo p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.nav-links a:hover {
    color: #ff9800;
}

.nav-links .quote-btn {
    background-color: #ff9800;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.nav-links .quote-btn:hover {
    background-color: #e68a00;
    color: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-block;
    background-color: #ff9800;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.hero-btn:hover {
    background-color: #e68a00;
}

/* Services Section */
.services {
    padding: 60px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.2rem;
}

.divider {
    height: 4px;
    width: 60px;
    background-color: #ff9800;
    margin: 0 auto;
}

.services-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-box {
    flex: 1;
    min-width: 300px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    background-color: #f9f9f9;
}

.service-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.service-text {
    padding: 25px;
}

.service-text h3 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

/* About Section */
.about {
    padding: 60px 0;
}

.about-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2.2rem;
}

.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    margin-bottom: 10px;
    font-weight: bold;
}

.check-list i {
    color: #ff9800;
    margin-right: 10px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: #1a365d;
    color: #fff;
    text-align: center;
}

.contact h2 {
    color: #fff;
}

.contact-box {
    max-width: 800px;
    margin: 0 auto;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.method i {
    font-size: 2.5rem;
    color: #ff9800;
    margin-bottom: 15px;
}

.method h4 {
    color: #fff;
    margin-bottom: 5px;
}

/* Footer */
footer {
    background-color: #112240;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }
}