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

/* ===== BODY ===== */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: #ffffff;
    color: #111;
    line-height: 1.7;
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.narrow {
    max-width: 800px;
    margin: auto;
    text-align: center;
}



/* ================= HERO (SINGLE CLEAN SYSTEM) ================= */

.hero {
    position: relative;
    height: 85vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* Background Image (Use <img class="hero-bg"> in HTML) */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
   height:70vh;
min-height:450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    color: #fff;
}

.about-intro{
padding-top:120px;
}

/* ================= BUTTON ================= */

.btn-primary {
    background: #e10600;
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 30px;
    display: inline-block;
    transition: 0.3s ease;
    font-weight: 600;
}

.btn-primary:hover {
    opacity: 0.9;
}

.large-btn {
    margin-top: 20px;
}

/* ================= SECTIONS ================= */

.section {
    padding: 90px 0;
}

.white-block {
    background: #ffffff;
}

.light-block {
    background: #f5f5f5;
}

h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.section p {
    color: #444;
}

/* ================= GRID ================= */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.card:hover {
    border-color: #e10600;
}

/* ================= LIST ================= */

.feature-list {
    list-style: none;
}

.feature-list li {
    margin: 12px 0;
}

/* ================= CTA ================= */

.cta-block {
    background: #111;
    color: #fff;
    text-align: center;
}

.cta-block p {
    color: #ccc;
}

/* ================= CONTACT ================= */

.contact {
    padding: 80px 20px;
    background: #f7f7f7;
    text-align: center;
}

.contact form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input,
.contact textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.contact textarea {
    min-height: 120px;
}

/* ================= FOOTER ================= */

.footer {
    background: #111;
    color: #aaa;
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    nav {
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: #ffffff;
        display: none;
        padding: 25px 0;
        border-top: 1px solid #eee;
    }

    nav ul {
        flex-direction: column;
        gap: 22px;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }

    nav.active {
        display: block;
    }

    .hero {
        height: auto;
        padding: 100px 20px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 15px;
    }

    .section {
        padding: 60px 0;
    }
}
/* ================= LUXURY SECTIONS ================= */

/* ===== CLEAN PREMIUM LIST ===== */

.luxury-list {
    list-style: none;
    margin: 40px 0;
    padding: 0;
}

.luxury-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.luxury-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #e10600;
    border-radius: 50%;
}

.center-features {
    margin: 40px 0;
}

.center-features p {
    margin: 12px 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}
/* ================= INTRO SECTION ================= */

.intro-section {
    padding: 120px 0;
    background: #f9f9f9;
}

.intro-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 60px;
    align-items: start;
}

.intro-label {
    font-size: 14px;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}

.intro-label .dot {
    width: 8px;
    height: 8px;
    background: #e10600;
    border-radius: 50%;
}

.intro-heading {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
}

.intro-heading .highlight {
    color: #e10600;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 700px;
}

/* Responsive */

@media (max-width: 992px) {
    .intro-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .intro-heading {
        font-size: 38px;
    }

    .intro-text {
        font-size: 16px;
    }
}

/* ================= WHAT WE DO DIFFERENTLY ================= */

.differently-section {
    padding: 120px 0;
    background: #f4f4f4;
}

.section-label {
    font-size: 14px;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: #444;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label .dot {
    width: 8px;
    height: 8px;
    background: #e10600;
    border-radius: 50%;
}

.differently-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.diff-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: 0.4s ease;
}

.diff-card:hover {
    transform: translateY(-8px);
}

.diff-card h3 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #111;
}

.card-line {
    width: 60px;
    height: 1px;
    background: #ddd;
    margin-bottom: 20px;
}

.diff-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* ================= FAQ SECTION ================= */

.faq-section {
    padding: 120px 0;
    background: #ffffff;
}

.faq-section h2 {
    margin-bottom: 60px;
    font-size: 32px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    padding: 10px 0;
}

.faq-icon {
    font-size: 22px;
    color: #e10600;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 10px 0 20px 0;
    color: #555;
    line-height: 1.8;
}

/* ================= PROCESS SECTION ================= */

.process-section {
    padding: 120px 0;
    background: #f7f7f7;
}

.process-header {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

.process-heading h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
}

.process-heading .highlight {
    color: #e10600;
}

.process-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.process-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    padding-bottom: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: 0.4s ease;
}

.process-card:hover {
    transform: translateY(-10px);
}

.process-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.process-content {
    padding: 30px;
}

.process-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.process-content h3 span {
    color: #e10600;
}

.process-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* Big faded background number */

.step-number {
    position: absolute;
    bottom: 20px;
    right: 25px;
    font-size: 80px;
    font-weight: 700;
    color: rgba(0,0,0,0.04);
    pointer-events: none;
}

/* Responsive */

@media (max-width: 992px) {
    .process-header {
        grid-template-columns: 1fr;
    }

    .process-heading h2 {
        font-size: 36px;
    }
}

/* ================= TRANSPARENT HEADER ================= */

/* HEADER DEFAULT (TRANSPARENT) */

.global-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: transparent;
    transition: all 0.3s ease;
}

/* WHITE TEXT OVER HERO */

.global-header .main-nav a,
.global-header .phone-block span,
.global-header .phone-block strong {
    color: #ffffff;
}

/* SCROLLED HEADER */

.global-header.scrolled {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* DARK TEXT WHEN SCROLLED */

.global-header.scrolled .main-nav a,
.global-header.scrolled .phone-block span,
.global-header.scrolled .phone-block strong {
    color: #111;
}

/* White text when transparent */
.global-header .main-nav a,
.global-header .phone-text strong,
.global-header .phone-text span {
    color: #ffffff;
}

/* Button stays red */
.quote-btn {
    background: #e10600;
    color: #fff;
}

/* ===== SCROLLED STATE ===== */

.global-header.scrolled {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.global-header.scrolled .main-nav a,
.global-header.scrolled .phone-text strong {
    color: #111;
}

.global-header.scrolled .phone-text span {
    color: #777;
}

/* ================= MOBILE ================= */

@media (max-width: 1100px) {

    .main-nav {
        position: fixed;
        top: 80px;
        right: -100%;
        background: #ffffff;
        width: 280px;
        height: 100%;
        padding: 40px 20px;
        transition: 0.4s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.05);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 25px;
    }

    .main-nav.active {
        right: 0;
    }

    .menu-toggle {
        display: block;
    }

    .phone-block {
        display: none;
    }

}

/* ================= CLEAN GLOBAL HEADER ================= */

.global-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 0;
    z-index: 9999;
    background: transparent;
    transition: all 0.4s ease;
}

.header-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
}

/* NAVIGATION */

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    transition: 0.3s ease;
}

.main-nav a:hover {
    color: #e10600;
}

/* RIGHT SIDE */

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.phone-block {
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

.phone-block span {
    font-size: 12px;
    opacity: 0.8;
}

.phone-block strong {
    font-size: 14px;
}

/* CTA BUTTON */

.quote-btn {
    background: #e10600;
    padding: 10px 22px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.quote-btn:hover {
    background: #c40000;
}

/* SCROLL EFFECT */

.global-header.scrolled {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.global-header.scrolled .main-nav a {
    color: #111;
}

.global-header.scrolled .phone-block {
    color: #111;
}

/* MOBILE */

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #ffffff;
}

@media (max-width: 1100px) {

    .main-nav {
        position: fixed;
        top: 80px;
        right: -100%;
        background: #ffffff;
        width: 280px;
        height: 100%;
        padding: 40px 20px;
        transition: 0.4s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.05);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 25px;
    }

    .main-nav a {
        color: #111;
    }

    .main-nav.active {
        right: 0;
    }

    .menu-toggle {
        display: block;
    }

    .phone-block {
        display: none;
    }
}/* ================= FAQ SECTION ================= */

.faq-section {
    padding: 120px 0;
    background: #ffffff;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    padding: 10px 0;
}

.faq-icon {
    font-size: 22px;
    color: #e10600;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 0;
    color: #555;
    line-height: 1.8;
}

/* OPEN STATE */
.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 10px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
/* ================= PROJECT GALLERY ================= */

.project-gallery {
    background: #111;
    padding: 120px 0;
    color: #fff;
}

.gallery-header {
    text-align: center;
    margin-bottom: 70px;
}

.gallery-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ffffff;
}

.gallery-header p {
    max-width: 700px;
    margin: auto;
    color: #aaa;
    font-size: 17px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transition: 0.4s ease;
}

.gallery-overlay h3 {
    font-size: 18px;
    color: #fff;
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(225,6,0,0.9), transparent);
}

/* Responsive */

@media (max-width: 768px) {
    .gallery-item img {
        height: 250px;
    }

    .gallery-header h2 {
        font-size: 28px;
    }
}
/* ================= CONTACT PAGE ================= */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-details h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-details p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.contact-info a {
    color: #e10600;
    text-decoration: none;
}

.whatsapp-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 26px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
}

.whatsapp-btn:hover {
    opacity: 0.9;
}

.contact-form-box {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.contact-form textarea {
    min-height: 120px;
}

.map-container {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
}

/* Responsive */

@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}
/* ================= CONTACT SPLIT LAYOUT ================= */

.contact-section {
    padding: 120px 0;
    background: #f7f7f7;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

/* LEFT SIDE */
.contact-left {
    background: #111; /* optional dark contrast */
}

/* RIGHT SIDE FORM */
.contact-form-box h2 {
    color: #222;
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 28px;
}

/* FORM STYLING */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
}

.contact-form textarea {
    min-height: 120px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e10600;
}

/* Mobile */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-left {
        display: none;
    }

    .contact-form-box {
        padding: 60px 25px;
    }
}
/* ================= FORCE CONTACT PAGE BLACK ================= */

/* CONTACT PAGE LIGHT THEME */

.contact-page,
.contact-page .section,
.contact-page .white-block,
.contact-page .light-block {
    background: #f8f8f8;
}

.contact-page h1,
.contact-page h2,
.contact-page h3,
.contact-page h4 {
    color: #222;
}

.contact-page p {
    color: #555;
}

/* ================= FAQ PAGE BLACK THEME ================= */

.faq-page {
    background: #000000;
    color: #ffffff;
}

/* Override section backgrounds */
.faq-page .section,
.faq-page .white-block,
.faq-page .light-block,
.faq-page .faq-section {
    background: #000 !important;
}

/* Headings */
.faq-page h1,
.faq-page h2,
.faq-page h3,
.faq-page h4 {
    color: #ffffff !important;
}

/* Paragraph text */
.faq-page p {
    color: #cccccc !important;
}

/* FAQ Items Styling */
.faq-page .faq-item {
    border-bottom: 1px solid #222;
}

.faq-page .faq-question {
    color: #ffffff;
}

.faq-page .faq-icon {
    color: #e10600;
}

.faq-page .faq-answer p {
    color: #bbbbbb;
}

/* Hide Header State */
.global-header.hide-header {
    transform: translateY(-100%);
}


/* ================= SERVICES PREMIUM GRID ================= */

.services-section {
    padding: 120px 0;
    background: #f4f4f4;
}

.services-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.services-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

/* GRID 3 PER ROW */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD BASE */

.service-card {
    position: relative;
    padding: 50px 40px;
    border-radius: 18px;
    transition: 0.4s ease;
    overflow: hidden;
}

/* LIGHT CARD */

.service-card.light {
    background: #ffffff;
    color: #111;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

/* DARK CARD */

.service-card.dark {
    background: #111;
    color: #ffffff;
}

/* NUMBER STYLE */

.service-number {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 60px;
    font-weight: 700;
    opacity: 0.05;
    pointer-events: none;
}

/* Red accent for dark card numbers */

.service-card.dark .service-number {
    color: #ffffff;
    opacity: 0.06;
}

.service-card.light .service-number {
    color: #e10600;
}

/* TEXT */

.service-card h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.85;
}

/* HOVER EFFECT */

.service-card:hover {
    transform: translateY(-10px);
}

.service-card.light:hover {
    border-left: 4px solid #e10600;
}

.service-card.dark:hover {
    background: #1a1a1a;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-title {
        font-size: 34px;
    }
}
/* ================= FLOATING WHATSAPP ================= */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 9999;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* ================= CLEAN PROFESSIONAL WHATSAPP ================= */

.wa-button {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 9999;
}

.wa-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.wa-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-text {
    white-space: nowrap;
}

/* ===== MOBILE: ICON ONLY ===== */

@media (max-width: 600px) {
    .wa-button {
        width: 55px;
        height: 55px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }

    .wa-text {
        display: none;
    }
}
/* Contact Image Section */

.contact-image-section {
    position: relative;
    width: 100%;
    height: 450px;
    background: url('../images/soul-office.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Dark overlay for professional look */
.contact-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

/* Content styling */
.contact-content h2 {
    color: #ffffff;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-content p {
    color: #f0f0f0;
    font-size: 18px;
    margin-bottom: 30px;
}

/* Button styling */
.contact-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ffffff;
    color: #111;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #e63946; /* matches your red tone */
    color: #ffffff;
}

.contact-banner {
    height: 500px;
    background: url("../images/souloffice.webp") no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
}

.contact-banner-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55); /* semi transparent */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-banner-content h1 {
    color: #ffffff;
    text-shadow: 0px 2px 8px rgba(0,0,0,0.6);
}

.contact-banner-content h2 {
    color: #ffffff;
    text-shadow: 0px 2px 8px rgba(0,0,0,0.6);
}
.contact-banner-content h3 {
    color: #ffffff;
    text-shadow: 0px 2px 8px rgba(0,0,0,0.6);
}
.contact-banner-content p {
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 18px;
}

.contact-btn {
    background: #ffffff;
    color: #000;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}

.contact-btn:hover {
    background: #e30613;
    color: #fff;
}

.contact-banner {
    height: 500px;
    background: url("../images/souloffice.webp") no-repeat center center;
    background-size: cover;
}
/* ================= FAQ BANNER ================= */

.faq-banner {
    height: 450px;
    background: url("../images/contact.webp") no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-banner-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.faq-banner-content h1 {
    color: #ffffff;
    font-size: 42px;
    margin-bottom: 15px;
    text-shadow: 0px 2px 8px rgba(0,0,0,0.6);
}

.faq-banner-content p {
    color: #eaeaea;
    font-size: 18px;
    margin-bottom: 30px;
}

.faq-banner-content .contact-btn {
    background: #ffffff;
    color: #000;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}

.faq-banner-content .contact-btn:hover {
    background: #e30613;
    color: #fff;
}