:root {
    --primary: #1b365d; /* Deep Trust Blue */
    --accent: #ff7f50;  /* Action Orange */
    --light: #f4f7f9;
    --dark: #1a1a1a;
    --white: #ffffff;
    --grey: #666;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.hero-content p a,
.footer-col a {
    color: #ffffff;
    text-decoration: none;
}

.hero-content p a:hover,
.footer-col a:hover {
    color: var(--accent);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* BUTTONS */
.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
    transition: background 0.3s;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
}

.btn-primary:hover {
    background: #e65c00;
}

.btn-secondary {
    background: var(--primary);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
}

/* HEADER */
.main-header {
    background: var(--primary);
    color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-john {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1;
}

.logo-junk {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: bold;
}

.desktop-nav a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    font-size: 0.9rem;
}

.btn-cta-nav {
    background: var(--accent);
    padding: 10px 15px;
    border-radius: 4px;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(0,51,102,0.85), rgba(0,51,102,0.85)), url('titlephoto.jpg') center/cover;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.text-orange { color: var(--accent); }

.hero-subtext {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.hero-badge {
    margin-top: 30px;
    font-weight: bold;
}

.text-center {
    text-align: center;
}

.hero a {
    color: hsl(0, 0%, 100%);
    text-decoration: none;
    font-weight: bold;
}

.hero a:hover {
    color: #ff8533;
    text-decoration: underline;
}

/* SERVICES */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary);
    text-align: center;
}

.section-subtitle {
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: var(--grey);
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--light);
    padding: 30px;
    border-radius: 8px;
    border-bottom: 4px solid var(--primary);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-area {
    padding-top: 40px;
    padding-bottom: 40px;
}

.area-box {
    max-width: 900px;
    margin: 0 auto;
    background: #f5f5f5;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
}

.area-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.area-tags span {
    background: #0b376d;
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
}

/* ABOUT */
.about-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}

.gallery-item img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.gallery-item {
    margin-bottom: 40px;
}

.gallery-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.propertycleanup-item img {
    width: 100%;
    max-width: 1200px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}


.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li::before {
    content: "✔️";
    margin-right: 10px;
}

/* HOW IT WORKS */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
}

.step-num {
    background: var(--accent);
    color: var(--white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: bold;
}

/* FORM */
.quote-form {
    background: var(--light);
    padding: 40px;
    border-radius: 8px;
}

.quote-form input, .quote-form select, .quote-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* FAQ */
.faq-section .section-title {
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.faq-section {
    padding-top: 30px;
    padding-bottom: 60px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}


.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 0;
    background: none;
    border: none;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    padding-bottom: 20px;
    display: none;
}

/* MOBILE MENU & STICKY CTA */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 769px) {
    .mobile-sticky-cta {
        display: none;
    }
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 5px 0;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: 999;
    padding: 40px;
}

.mobile-menu-overlay a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: 'Oswald';
}

.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    z-index: 1001;
}

.btn-sticky-call, .btn-sticky-text {
    flex: 1;
    text-align: center;
    padding: 15px;
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}

.btn-sticky-call { background: var(--primary); }
.btn-sticky-text { background: var(--accent); }

/* FOOTER */
.main-footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 100px; /* Extra padding for sticky cta */
}
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--grey);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-col ul { list-style: none; }
.footer-col ul li a { color: #ccc; text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
    .desktop-nav { display: none; }
    .mobile-menu-toggle { display: block; }
    .section-padding { padding: 50px 0; }
    .main-header { padding: 10px 0; }
}