:root {
    --primary: #f6a621;
    --primary-light: #f6a621;
    --secondary: #1a4d80;
    --accent: #f0a202;
    --light: #f8f9fa;
    --dark: #333;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --border-radius: 12px;
    --box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    color: var(--secondary);
}

a {
    text-decoration: none;
    color: inherit;
}

.section-title {
    position: relative;
    margin-bottom: 2rem;
}

.section-title .section-subtitle {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-title .section-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
}

.section-title .section-main-title span {
    color: var(--primary);
}

.text-highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.btn-primary-custom {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-block;
    box-shadow: 0 4px 12px rgba(42, 110, 63, 0.3);
}

.btn-primary-custom:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(42, 110, 63, 0.4);
    color: white;
}

/* Header Styles */
.main-header {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary) !important;
}

.navbar-brand span {
    color: var(--secondary);
}

.nav-link {
    font-weight: 600;
    color: var(--dark) !important;
    margin: 0 8px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: white;
}

.about-image {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 100%;
    height: auto;
}

.about-text {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.cta-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.cta-features li {
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--dark);
}

.cta-features li:before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
    margin-right: 10px;
}

/* Services Section - Zig Zag Layout */
.services-section {
    padding: 100px 0;
    background-color: var(--light);
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.service-item:nth-child(even) .service-image {
    order: 2;
}

.service-item:nth-child(even) .service-content {
    order: 1;
    padding-right: 0;
    padding-left: 60px;
}

.service-image {
    flex: 1;
    min-width: 200px;
}

.service-image img {
    width: 400px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 350px;
    object-fit: cover;
}

.service-content {
    flex: 1;
    min-width: 300px;
    padding-right: 60px;
}

.service-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Service Areas */
.areas-section {
    padding: 100px 0;
    background-color: white;
}

.area-badge {
    display: inline-block;
    background-color: var(--light-gray);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 50px;
    margin: 5px 10px 5px 0;
    font-weight: 500;
    transition: var(--transition);
}

.area-badge:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--light);
}

.contact-info-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
}

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

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-info h4 {
    margin-bottom: 1rem;
}

/* Map */
.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 100%;
    min-height: 400px;
}

/* Footer */
.main-footer {
    background-color: var(--secondary);
    color: white;
    padding: 60px 0 30px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-logo span {
    color: var(--accent);
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {

    .service-item,
    .service-item:nth-child(even) .service-content {
        padding-right: 0;
        padding-left: 0;
    }

    .service-content {
        margin-top: 30px;
    }

    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.3rem;
    }

    .section-title .section-main-title {
        font-size: 2rem;
    }

    .service-title {
        font-size: 1.7rem;
    }
}
