/* General Styles */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    -webkit-text-size-adjust: 100%; /* Prevent font scaling on iOS */
}

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

h1, h2, h3 {
    color: #d9232a; /* Junk King Red */
}

a {
    color: #006837; /* Junk King Green */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block; /* Prevent bottom space */
}

/* Header */
header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.logo {
    max-height: 55px; /* Slightly smaller */
    margin-right: 15px; /* Add space */
}

.header-contact {
    text-align: right;
}

.header-contact span {
    display: block;
    font-size: 1em;
    color: #555;
    margin-bottom: 3px;
}

.phone-number {
    font-size: 1.8em;
    font-weight: bold;
    color: #d9232a; /* Junk King Red */
    white-space: nowrap; /* Prevent wrapping */
}

.phone-number::before {
    content: '\1F4DE'; /* Phone icon */
    margin-right: 5px;
    font-size: 0.8em;
}

/* Hero Section */
.hero {
    background-color: #f4f4f4;
    text-align: center;
    padding: 40px 15px; /* Add horizontal padding */
}

.hero h1 {
    margin-bottom: 15px;
    font-size: 2.2em;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-buttons a {
    margin: 10px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.2em;
    text-align: center;
    line-height: 1.4; /* Ensure text fits */
}

.btn-primary {
    background-color: #d9232a; /* Junk King Red */
    color: #fff;
}

.btn-primary:hover {
    background-color: #b31c22; /* Darker Red */
    text-decoration: none;
}

.btn-secondary {
    background-color: #006837; /* Junk King Green */
    color: #fff;
}

.btn-secondary:hover {
    background-color: #004d28; /* Darker Green */
    text-decoration: none;
}

/* Services Section */
.services {
    padding: 40px 0;
}

.services .container {
    padding: 0 15px; /* Add horizontal padding */
}

.services h2 {
    text-align: center;
    margin-bottom: 30px;
}

.service-item {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: #f9f9f9;
    padding: 40px 0;
}

.why-choose-us .container {
    padding: 0 15px; /* Add horizontal padding */
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 30px;
}

.why-choose-us ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.why-choose-us li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1em;
}

.why-choose-us li::before {
    content: '\2713'; /* Checkmark */
    color: #006837; /* Junk King Green */
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
}

/* Main CTA Section */
.cta-main {
    background-color: #d9232a; /* Junk King Red */
    color: #fff;
    text-align: center;
    padding: 50px 15px; /* Add horizontal padding */
}

.cta-main h2 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 2em;
}

.cta-main p {
    margin-bottom: 30px;
    font-size: 1.1em;
}

.cta-main .btn-primary {
    background-color: #fff;
    color: #d9232a;
    padding: 18px 35px;
    font-size: 1.3em;
}
.cta-main .btn-primary:hover {
    background-color: #eee;
}

.cta-main .btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.cta-main .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.cta-options a {
    margin: 10px 15px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 40px 0;
    background-color: #f4f4f4;
}

.contact-form-section .container {
    padding: 0 15px; /* Add horizontal padding */
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

form input[type="text"],
form input[type="tel"],
form input[type="email"],
form select,
form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em; /* Ensure readable font size */
}

form textarea {
    resize: vertical;
}

form button {
    width: 100%;
}

/* Footer */
footer {
    background-color: #333;
    color: #ccc;
    text-align: center;
    padding: 20px 15px; /* Add horizontal padding */
    font-size: 0.9em;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 95%; /* Use more width on tablets */
    }
    header .container {
        flex-direction: column;
        text-align: center;
    }
    .logo {
        margin-bottom: 15px; /* More space below logo */
        margin-right: 0;
    }
    .header-contact {
        margin-top: 10px;
        text-align: center;
    }
    .phone-number {
        font-size: 1.6em;
    }
    .hero h1 {
        font-size: 1.8em;
    }
    .hero p {
        font-size: 1.1em;
    }
    .btn {
        padding: 14px 25px; /* Adjust padding */
        font-size: 1.1em;
    }
    .cta-buttons a,
    .cta-options a {
        display: block;
        margin: 15px auto; /* Increased vertical margin */
        width: 90%;
        max-width: 320px;
    }
    .cta-main h2 {
        font-size: 1.6em;
    }
    .cta-main .btn-primary {
        padding: 16px 30px;
        font-size: 1.2em;
    }
    form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%; /* Keep high width on mobile */
    }
    .phone-number {
        font-size: 1.5em; /* Adjust for small screens */
    }
    .hero h1 {
        font-size: 1.7em;
    }
    .hero p {
        font-size: 1em;
    }
    .btn {
        padding: 12px 20px;
        font-size: 1.05em;
    }
    .cta-buttons a,
    .cta-options a {
        width: 95%; /* Use more width */
        max-width: 300px;
    }
    .cta-main h2 {
        font-size: 1.5em;
    }
    .cta-main .btn-primary {
        padding: 14px 25px;
        font-size: 1.15em;
    }
    .why-choose-us li {
        font-size: 1em;
    }
    form {
        padding: 20px;
    }
    form input[type="text"],
    form input[type="tel"],
    form input[type="email"],
    form select,
    form textarea {
        padding: 10px;
    }
}

