*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    color: #1a1a2e;
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* NAV */
nav {
    background: #1a1a2e;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-brand {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
}
.nav-brand span { color: #f59e0b; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}
.nav-links a {
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: #f59e0b; }
.nav-phone {
    background: #f59e0b;
    color: #1a1a2e;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.2s;
}
.nav-phone:hover { background: #fbbf24; }
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, rgba(26,26,46,0.92) 0%, rgba(22,33,62,0.92) 100%),
                url('images/hero-bg.jpg') center/cover no-repeat;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(245,158,11,0.1) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
    display: inline-block;
    background: rgba(245,158,11,0.15);
    border: 1px solid rgba(245,158,11,0.3);
    color: #f59e0b;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    max-width: 750px;
    margin: 0 auto 16px;
}
.hero h1 span { color: #f59e0b; }
.hero-sub {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 32px;
}
.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f59e0b;
    color: #1a1a2e;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 800;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245,158,11,0.4);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.2);
    padding: 14px 30px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: #f59e0b; color: #f59e0b; }
.hero-trust {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}
.trust-item .icon { font-size: 1.2rem; }

/* SERVICES */
.services {
    padding: 80px 0;
    background: #f8fafc;
}
.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f59e0b;
    margin-bottom: 8px;
    text-align: center;
}
.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: #1a1a2e;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.3s, transform 0.2s;
}
.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.service-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}
.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a2e;
}
.service-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* HOW IT WORKS */
.how-it-works {
    padding: 80px 0;
}
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 48px;
}
.step {
    text-align: center;
    position: relative;
}
.step-num {
    width: 56px;
    height: 56px;
    background: #1a1a2e;
    color: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 auto 16px;
}
.step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.step p {
    font-size: 0.95rem;
    color: #64748b;
}

/* AREAS SERVED */
.areas {
    padding: 80px 0;
    background: #f8fafc;
}
.area-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}
.area-tag {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
}
.areas-desc {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    color: #64748b;
    font-size: 1.05rem;
}

/* WHY US */
.why-us {
    padding: 80px 0;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 48px;
}
.why-item {
    text-align: center;
}
.why-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.why-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.why-item p {
    font-size: 0.95rem;
    color: #64748b;
}

/* CTA BANNER */
.cta-banner {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 60px 0;
    text-align: center;
}
.cta-banner h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.cta-banner p {
    color: #94a3b8;
    font-size: 1.05rem;
    margin-bottom: 28px;
}

/* PRICING GUIDE */
.pricing {
    padding: 80px 0;
    background: #f8fafc;
}
.pricing-note {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #64748b;
    font-size: 1rem;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.pricing-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
}
.pricing-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.pricing-range {
    font-size: 2rem;
    font-weight: 900;
    color: #1a1a2e;
    margin: 12px 0;
}
.pricing-card p {
    font-size: 0.9rem;
    color: #64748b;
}

/* FOOTER */
footer {
    background: #1a1a2e;
    color: #94a3b8;
    padding: 40px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}
.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.footer-col p, .footer-col a {
    font-size: 0.9rem;
    color: #94a3b8;
    display: block;
    margin-bottom: 6px;
}
.footer-col a:hover { color: #f59e0b; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
}

/* GALLERY */
.gallery {
    padding: 80px 0;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    background: #e2e8f0;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    padding: 24px 16px 16px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* SERVICE IMAGE CARDS */
.service-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero { padding: 50px 0; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-trust { flex-direction: column; align-items: center; gap: 12px; }
    .btn-call, .btn-secondary { width: 100%; max-width: 320px; justify-content: center; }
    .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
}

/* ADDITIONAL LAYOUT UTILITIES */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }

/* BLOG STYLING */
.blog-header {
    background: #16213e;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.blog-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 12px;
}
.blog-meta {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}
.blog-content {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 24px;
}
.blog-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 32px 0 16px;
    color: #1a1a2e;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 8px;
}
.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 24px 0 12px;
    color: #1a1a2e;
}
.blog-content p {
    font-size: 1.05rem;
    color: #334155;
    line-height: 1.75;
    margin-bottom: 20px;
}
.blog-content ul, .blog-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}
.blog-content li {
    font-size: 1.05rem;
    color: #334155;
    margin-bottom: 8px;
    line-height: 1.6;
}
.blog-content blockquote {
    background: #f8fafc;
    border-left: 4px solid #f59e0b;
    padding: 16px 24px;
    margin: 24px 0;
    font-style: italic;
    color: #475569;
}
.blog-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}
@media(min-width: 768px) {
    .blog-card {
        flex-direction: row;
    }
    .blog-card-img {
        width: 300px;
        flex-shrink: 0;
    }
}
.blog-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}
.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.blog-card-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.blog-card-body p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.5;
}
.blog-read-more {
    color: #f59e0b;
    font-weight: 700;
    font-size: 0.95rem;
}
.blog-read-more:hover {
    color: #fbbf24;
}

/* FAQ ACCORDION STYLING */
.faq-section {
    padding: 80px 0;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    background: #fff;
    transition: background 0.2s;
    user-select: none;
    color: #1a1a2e;
}
.faq-question:hover {
    background: #f8fafc;
}
.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 400;
    color: #f59e0b;
    transition: transform 0.2s;
}
.faq-item.active .faq-question::after {
    content: "−";
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 24px;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}
.faq-item.active .faq-answer {
    max-height: 500px; /* arbitrary height to allow transition */
    padding: 0 24px 20px;
    border-top: 1px solid #f1f5f9;
}

/* CONTACT & LEAD CAPTURE FORM */
.contact-section {
    padding: 80px 0;
    background: #f8fafc;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 60px;
    }
}
.contact-info h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
}
.contact-info p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 30px;
}
.contact-methods {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.contact-btn {
    display: inline-flex;
    align-items: center;
    background: #f59e0b;
    color: #fff;
    padding: 16px 28px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.25rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
    margin-bottom: 12px;
}
.contact-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
}
.text-sub {
    font-size: 0.9rem !important;
    color: #64748b !important;
    margin-bottom: 0 !important;
}
.contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 576px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
}
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: #1e293b;
    background: #f8fafc;
    transition: border-color 0.2s, background-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f59e0b;
    background: #fff;
}
.form-group input[type="file"] {
    padding: 8px 0;
    font-family: inherit;
    font-size: 0.9rem;
}
.btn-submit {
    background: #1a1a2e;
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.btn-submit:hover {
    background: #16213e;
    transform: translateY(-1px);
}

/* MOBILE STICKY CALL/SMS BAR */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #1a1a2e;
    border-top: 2px solid #f59e0b;
    display: flex;
    z-index: 9999;
    box-shadow: 0 -3px 10px rgba(0,0,0,0.15);
}
.mobile-sticky-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    transition: background-color 0.2s;
}
.mobile-sticky-cta .btn-sms-sticky {
    background: #1e293b;
    color: #cbd5e1;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.mobile-sticky-cta .btn-sms-sticky:hover {
    background: #334155;
}
.mobile-sticky-cta .btn-call-sticky {
    background: #f59e0b;
    color: #1a1a2e;
}
.mobile-sticky-cta .btn-call-sticky:hover {
    background: #fbbf24;
}
@media (min-width: 769px) {
    .mobile-sticky-cta {
        display: none;
    }
}
@media (max-width: 768px) {
    body {
        padding-bottom: 60px;
    }
}




