/* --- General Setup --- */
:root {
    --color-terracotta: #E2725B; /* Main brand color */
    --color-dark: #2c3e50;      /* For text */
    --color-light: #f8f9fa;     /* Light background */
    --color-white: #ffffff;
    --font-primary: 'Roboto', sans-serif;
    --font-headings: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-dark);
}

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

/* --- Typography & Buttons --- */
h1, h2, h3 {
    font-family: var(--font-headings);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; text-align: center; }
h3 { font-size: 1.4rem; }

p { margin-bottom: 1rem; }
a { text-decoration: none; color: var(--color-terracotta); }

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary { background-color: var(--color-terracotta); color: var(--color-white); }
.btn-secondary { background-color: var(--color-dark); color: var(--color-white); }
.btn-light { background-color: var(--color-white); color: var(--color-dark); }
.btn-large { font-size: 1.2rem; padding: 15px 30px; }

/* --- Header & Navigation --- */
.main-header {
    background: var(--color-white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo { height: 50px; }
.navbar-links ul { list-style: none; display: flex; }
.navbar-links ul li { margin-left: 25px; }
.navbar-links a { color: var(--color-dark); font-weight: 500; }
.navbar-links a:hover { color: var(--color-terracotta); }
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; }

/* --- Hero Section --- */
.hero-section {
    /* HUMAN INTERVENTION POINT 3: Replace with your hero background image */
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('hero-background.jpg') no-repeat center center/cover;
    color: var(--color-white);
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    @media screen and (max-width: 768px) {
 #main {
   padding-top: 70px; /* Adjust this value to match your header's height */
 }
}
}

.hero-content { max-width: 800px; }
.hero-content .subtitle { font-size: 1.2rem; margin: 1rem 0 2rem; }
.hero-highlights { margin-top: 2rem; display: flex; justify-content: center; gap: 2rem; font-weight: 500; }
.hero-highlights .fa-check-circle { color: var(--color-terracotta); margin-right: 8px;}

/* --- Content Sections --- */
.content-section { padding: 60px 0; }
.bg-light { background-color: var(--color-light); }

/* How it Works */
.steps-container { display: flex; justify-content: space-between; gap: 2rem; text-align: center; margin-top: 3rem; }
.step .step-icon { font-size: 3rem; color: var(--color-terracotta); margin-bottom: 1rem; }

/* Why Us */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; }
.feature-item { background: var(--color-white); padding: 2rem; border-radius: 5px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.feature-item i { font-size: 2.5rem; color: var(--color-terracotta); margin-bottom: 1rem; }

/* Services */
.services-list { list-style: none; font-size: 1.2rem; max-width: 600px; margin: 2rem auto 0; }
.services-list li { padding: 0.5rem 0; }
.services-list i { color: var(--color-terracotta); margin-right: 15px; }

/* Service Area */
.service-area-content { display: flex; align-items: center; gap: 3rem; }
.service-area-text { flex: 1; }
.service-area-map { flex: 1; }
.service-area-map img { max-width: 100%; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }

/* Final CTA Section */
.cta-section {
    background-color: var(--color-terracotta);
    color: var(--color-white);
    padding: 60px 0;
    text-align: center;
}
.cta-section h2 { color: var(--color-white); }

/* --- Footer --- */
.main-footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    text-align: center;
    padding: 2rem 0;
}
.main-footer a { color: var(--color-white); }

/* --- Responsive Design --- */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }

    .navbar { position: relative; }
    .navbar-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        flex-direction: column;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .navbar-links.active { display: flex; }
    .navbar-links ul { flex-direction: column; width: 100%; }
    .navbar-links li { margin: 1rem 0; }
    .navbar-cta { display: none; } /* Hide call button in nav on mobile */
    .hamburger { display: block; }

    .hero-highlights { flex-direction: column; gap: 1rem; }
    .steps-container { flex-direction: column; }
    .features-grid { grid-template-columns: 1fr; }
    .service-area-content { flex-direction: column; }
}
/* Fix for mobile header overlapping content */
@media screen and (max-width: 768px) {
  body {
    padding-top: 70px; /* Adjust this value to match your header's height */
  }
}