/* === CSS Variables === */
:root {
    --brand-red: #e3003a;
    --brand-black: #000000;
    --text-dark: #1a1a1a;
    --text-grey: #666666;
    --bg-light: #ffffff;
    --bg-offwhite: #fcfcfc;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--bg-light);
    margin: 0;
}

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

/* === MAIN WRAPPER FIX === */
/* Pushes the footer down naturally if there is no content */
.service-main-wrapper {
    min-height: 50vh; 
    display: flex;
    flex-direction: column;
}

/* === SERVICE PAGE TITLE FIX === */
.service-page-header {
    background: var(--bg-offwhite);
    /* 150px top padding ensures it clears your fixed navigation menu */
    padding: 150px 0 60px 0; 
    text-align: center;
    border-bottom: 1px solid #eee;
    width: 100%;
}
.service-page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem); /* Responsive, massive title */
    font-weight: 800;
    color: var(--brand-black);
    text-transform: uppercase;
    margin: 0;
    line-height: 1.3;
    letter-spacing: 2px;
}

/* === Floating Social Icons === */
.floating-socials {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}
.floating-socials div {
    width: 40px; height: 40px; border-radius: 50%; background: var(--brand-red);
    display: flex; justify-content: center; align-items: center; color: white; font-weight: bold; cursor: pointer;
    box-shadow: 0 4px 10px rgba(227,0,58,0.4);
    transition: transform 0.3s ease;
}
.floating-socials div:hover {
    transform: scale(1.1);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    background: linear-gradient(-45deg, #000000, #1a0008, #000000, #2b0010);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
    min-height: 80vh; 
    display: flex;
    align-items: center;
}

#particles-js { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; 
}

.hero .container { 
    position: relative; 
    z-index: 2; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 50px;
}

.hero-content { flex: 1; max-width: 650px; }
.hero h2 { font-size: clamp(2rem, 4vw + 1rem, 3.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 20px; text-transform: uppercase; animation: fadeInUp 1s ease forwards; opacity: 0; }
.hero p { font-size: clamp(0.9rem, 1.5vw, 1.1rem); color: #ccc; margin-bottom: 35px; max-width: 500px; animation: fadeInUp 1s ease 0.2s forwards; opacity: 0; }

.hero .btn-red { 
    background: var(--brand-red); color: #fff; padding: 14px 40px; border-radius: 50px; text-decoration: none; font-weight: 600; display: inline-block; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s forwards; opacity: 0;
}
.hero .btn-red:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(227, 0, 58, 0.6); }

.hero-image { flex: 1; max-width: 500px; animation: floatImage 6s ease-in-out infinite; }
.hero-image img { width: 100%; object-fit: contain; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }

@keyframes fadeInUp { 0% { opacity: 0; transform: translateY(40px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes floatImage { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } }
@keyframes gradientBG { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* === FEATURE BLOCKS === */
.page-sections { padding: 80px 0; }
.feature-block { display: flex; align-items: center; gap: 60px; margin-bottom: 100px; }
.feature-block.reverse { flex-direction: row-reverse; }
.text-content { flex: 1; }
.image-content { flex: 1; text-align: center; }
.image-content img { max-width: 100%; height: auto; border-radius: 10px; }

.sub-title { color: var(--brand-red); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; display: block; margin-bottom: 10px; }
.text-content h2 { font-size: 2.2rem; font-weight: 800; color: var(--brand-black); line-height: 1.2; margin-bottom: 20px; text-transform: uppercase; }
.text-content p { color: var(--text-grey); margin-bottom: 25px; font-size: 15px; }
.text-content ul { list-style: none; margin-bottom: 25px; padding-left: 0; }
.text-content ul li { position: relative; padding-left: 20px; margin-bottom: 10px; color: var(--text-grey); font-size: 15px; }
.text-content ul li::before { content: "•"; color: var(--brand-red); font-weight: bold; position: absolute; left: 0; font-size: 18px; }
.btn-black { background: var(--brand-black); color: #fff; padding: 10px 30px; border-radius: 50px; text-decoration: none; font-weight: 600; display: inline-block; font-size: 13px; text-transform: uppercase; }

/* === MID BANNER === */
.mid-banner { padding: 100px 0; text-align: center; color: white; position: relative; }
.mid-banner::before { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.8); }
.mid-banner .container { position: relative; z-index: 2; }
.mid-banner h2 { color: var(--brand-red); font-size: 2.5rem; text-transform: uppercase; margin-bottom: 20px; font-weight: 800; }
.mid-banner p { max-width: 800px; margin: 0 auto; font-size: 1.1rem; }

/* === FAQ SECTION === */
.faq-section { padding: 100px 0; background: var(--bg-offwhite); border-top: 1px solid #eee; }
.faq-container { display: flex; gap: 50px; align-items: flex-start; }
.faq-title { flex: 0.4; position: sticky; top: 100px; }
.faq-title h2 { color: var(--brand-red); font-size: 2.5rem; font-weight: 800; text-transform: uppercase; line-height: 1.1; }
.faq-list { flex: 0.6; }
.accordion-item { border-bottom: 1px solid #ddd; margin-bottom: 15px; padding-bottom: 15px; }
.accordion-header { cursor: pointer; font-weight: 700; color: var(--brand-black); font-size: 16px; display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
.accordion-header span { color: var(--brand-red); font-size: 24px; font-weight: 400; }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.accordion-content p { color: var(--text-grey); font-size: 14px; padding-bottom: 15px; margin: 0; }

/* === PROMISES === */
.promises { padding: 80px 0; text-align: center; margin: 0 auto; }
.promises h2 { color: var(--brand-red); text-transform: uppercase; font-size: 2rem; margin-bottom: 40px; font-weight: 800; }
.promises-grid { display: flex; gap: 30px; justify-content: center; }
.promise-card { background: white; padding: 30px; border: 1px solid #eee; border-radius: 8px; flex: 1; text-align: left; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.promise-card h4 { color: var(--brand-black); margin-bottom: 10px; font-size: 16px; font-weight: 700;}
.promise-card p { color: var(--text-grey); font-size: 13px; line-height: 1.6; margin: 0;}

/* === MOBILE === */
@media (max-width: 992px) {
    .service-page-header { padding-top: 100px; }
    .hero { padding: 80px 0 60px; }
    .hero .container { flex-direction: column; text-align: center; gap: 40px; }
    .hero p { margin: 0 auto 30px auto; }
    .hero-image { max-width: 80%; }
    .feature-block, .feature-block.reverse, .faq-container { flex-direction: column; text-align: center; }
    .text-content ul { text-align: left; display: inline-block; }
    .faq-title { position: relative; top: 0; margin-bottom: 30px; }
    .promises-grid { grid-template-columns: 1fr; flex-direction: column; }
}