/* =============================
   BRAND VARIABLES
============================= */

:root {
    --primary: #F77F00;
    --black: #000000;
    --gray-light: #E9E9E9;
    --white: #FFFFFF;
}

/* =============================
   Brand Color UTILITIES
============================= */
.text-site-primary {
    color: var(--primary);
}
.text-site-back{
    color: var(--black);
}
.text-site-gray{
    color: var(--gray-light);
}
.text-site-white{
    color: var(--white);
}

.bg-site-primary {
    background-color: var(--primary);
}
.bg-site-back{
    background-color: var(--black);
}
.bg-site-gray{
    background-color: var(--gray-light);
}
.bg-site-white{
    background-color: var(--white);
}

/* =============================
   GLOBAL
============================= */

body {
    font-family: 'Cabin', sans-serif;
    margin: 0;
}

h1, h2, h3 {
    font-family: 'Raleway', sans-serif;
}

/* =============================
   NAVBAR (EXACT DESIGN STYLE)
============================= */

.navbar {
    background: var(--gray-light);
    border-bottom: 4px solid var(--primary);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-link {
    font-size: 18px;
    font-weight: 600;
    margin-left: 60px;
    color: var(--black) !important;
}

.nav-link.active, .nav-link:hover {
    color: var(--primary) !important;
}

/* =============================
   HERO SECTION
============================= */

.hero-section {
    background: var(--black);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
}

.hero-heading {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.4;
}

.hero-heading .highlight {
    color: var(--primary);
}

/* =============================
   RESPONSIVE
============================= */

@media (max-width: 992px) {

    .hero-heading {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .hero-images{
        margin-bottom: 40px;
    }

    .nav-link {
        margin-left: 0;
        margin-top: 10px;
    }
}

.footer{
    background-color: var(--black);
}

.footer p{
    color: var(--white);
    text-align: right;
}

/* =============================
   WHO WE ARE SECTION
============================= */

.who-we-are-section {
    background: var(--white);
    padding: 60px 0;
}

.who-image {
    width: 100%;
}

.who-content {
    padding-left: 40px;
}

.who-label {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 5px 20px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.who-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 25px;
    line-height: 1.3;
}

.who-text {
    font-family: 'Cabin', sans-serif;
    font-size: 32px;
    line-height: 1.7;
    color: var(--black);
}

/* =============================
   RESPONSIVE
============================= */

@media (max-width: 992px) {

    .who-content {
        margin-top: 40px;
        padding-left: 20px;
    }

    .who-heading {
        font-size: 28px;
    }

    .who-text {
        font-size: 18px;
    }
}


/* =============================
   CONTACT STRIP SECTION
============================= */

.contact-strip {
    background: #8C90A0; /* Muted grey-blue tone from screenshot */
    padding: 60px 0;
}

.contact-card {
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 40px;
}

.contact-icon img {
    width: 40px;
}

.contact-title {
    font-family: 'Raleway', sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin: 0;
}

.contact-subtitle {
    font-family: 'Cabin', sans-serif;
    font-size: 24px;
    margin: 5px 0 0 0;
    opacity: 0.9;
}

/* Responsive */

@media (max-width: 992px) {
    .contact-card {
        padding: 25px;
    }
}


/* =============================
   WHAT WE DO SECTION
============================= */

.what-we-do-section {
    background: var(--gray-light);
}

.what-left {
    background: #D9D9D9;
    padding-top: 60px;
    padding-bottom: 60px;
}

.what-right {
    background: #E9E9E9;
    padding-top: 60px;
    padding-bottom: 60px;
}

.what-label {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 5px 20px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.what-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
}

.what-text {
    font-family: 'Cabin', sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 2px;
}

/* Services */

.service-item {
    display: flex;
    flex-direction: column;
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.service-icon img {
    width: 50px;
    margin-top: 2px;
}

.service-title {
    font-family: 'Raleway', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.service-text {
    font-family: 'Cabin', sans-serif;
    font-size: 24px;
    line-height: 1.6;
    margin-top: 10px;
}

/* Responsive */

@media (max-width: 992px) {

    .what-left {
        margin-bottom: 50px;
    }

    .what-heading {
        font-size: 28px;
    }

    .what-text {
        font-size: 18px;
    }
}


/* =============================
   WHY CHOOSE US SECTION
============================= */

.why-section {
    padding: 60px 0;
}

.why-left {
    padding-right: 40px;
}

.why-label {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 5px 20px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.why-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.why-text {
    font-family: 'Cabin', sans-serif;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

/* Bullet List */

.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 500;
}

.why-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    border: 3px solid var(--primary);
}

/* Stats */

.stat-box {
    padding: 30px 0px;
    text-align: center;
}

.stat-box h3 {
    font-size: 150px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.stat-box h3::after {
    content: "+";
}

/* Alternating Colors */

.bg-primary-stat {
    background: var(--primary);
    color: var(--white);
}

.bg-dark-stat {
    background: var(--black);
    color: var(--white);
}

/* Responsive */

@media (max-width: 992px) {

    .why-left {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .why-heading {
        font-size: 28px;
    }

    .why-text {
        font-size: 18px;
    }

    .stat-box h3 {
        font-size: 40px;
    }

    .stat-box p{
        font-size: 18px;
    }
}


/* =============================
   PRICING SECTION
============================= */

.pricing-section {
    background: var(--white);
}

/* LEFT SIDE */

.pricing-left {
    background: var(--gray-light);
    padding: 50px;
}

.pricing-label {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 5px 20px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.pricing-heading {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 25px;
}

.pricing-text {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 18px;
}

.pricing-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    border: 3px solid var(--primary);
}

.btn-quote {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 10px 0px;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    margin-left: 30px;
    width: CALC(100% - 30px);
    text-align: center;
}

/* RIGHT SIDE */

.pricing-right {
    background: var(--black);
    color: var(--white);
}

.pricing-column {
    padding: 40px 30px;
}

.pricing-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-subtitle {
    font-size: 28px;
    color: var(--primary);
    margin-top: 30px;
    margin-bottom: 15px;
}

.pricing-services {
    list-style: none;
    padding: 0;
}

.pricing-services li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 500;
}

.pricing-services li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    border: 3px solid var(--primary);
}

.price-hour {
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.price-hour span {
    font-size: 14px;
    margin-left: 10px;
    font-weight: 400;
}

.monthly-title {
    margin-top: 20px;
    font-size: 24px;
}

.price-line {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.price-line span:last-child {
    font-size: 18px;
    margin-left: 10px;
    font-weight: 400;
}

.pricing-note {
    font-size: 14px;
    position: absolute;
    right: 30px;
    bottom: 30px;
    margin-bottom: 0px;
}

/* Responsive */

@media (max-width: 992px) {

    .pricing-left {
        padding: 20px;
    }
}


/* =============================
   CONTACT SECTION
============================= */

.contact-section {
    background: var(--white);
    padding: 60px 0;
}

.contact-left {
    padding-right: 50px;
}

.contact-label {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 5px 20px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.contact-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-text {
    font-size: 32px;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.contact-note {
    font-size: 18px;
}

/* FORM */

.contact-form label {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 4px;
    display: block;
}

.custom-input {
    background: #E9E9E9;
    border: none;
    border-radius: 0;
    padding: 12px;
}

.custom-input:focus {
    background-color: #E9E9E9;
    outline: none;
    box-shadow: none;
}

.custom-select {
    background-color: #E9E9E9;
    border: none;
    border-radius: 0;
    padding: 12px;
}

.custom-select:focus {
    background-color: #E9E9E9;
    outline: none;
    box-shadow: none;
}


.btn-submit {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 20px;
}
.btn-submit[disabled], .submit-btn[disabled]{
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive */

@media (max-width: 992px) {

    .contact-left {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .contact-heading {
        font-size: 28px;
    }
}



/* =============================
   FAQ SECTION
============================= */

.faq-section {
    background: var(--gray-light);
    padding: 60px 0;
}

.faq-left {
    padding-right: 50px;
}

.faq-label {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 5px 20px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.faq-heading {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
}

.faq-text {
    font-size: 32px;
    margin-bottom: 30px;
}

.faq-box {
    background: #dcdcdc;
    padding: 30px;
    margin-bottom: 30px;
    font-size: 28px;
}

.btn-consult {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
}

/* ACCORDION */

.custom-accordion .accordion-item {
    border: none;
    margin-bottom: 10px;
}

.custom-accordion .accordion-button {
    background: #cfcfcf;
    font-weight: 600;
    box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: var(--black);
    color: var(--white);
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
}

.custom-accordion .accordion-body {
    background: #e5e5e5;
}

.brand-mark img{
    height: 100px;
}

/* Responsive */

@media (max-width: 992px) {
    .faq-left {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .faq-heading {
        font-size: 28px;
    }
    .site-label-box{
        font-size: 24px !important;
        width: 95%;
    }
    .accordion-button {
        line-height: 20px;
    }
    .brand-mark img{
        height: 70px;
    }
    .btn-consult{
        padding: 12px 24px;
        font-size: 19px;
    }
}


/* Animation */

.btn-quote,
.btn-submit,
.btn-consult {
    transition: all 0.3s ease;
}

.btn-quote:hover,
.btn-submit:hover,
.btn-consult:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}


/* Parsley Validation Styling */

.parsley-errors-list {
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
    font-size: 14px;
    color: #c0392b;
}

.parsley-error {
    border: 2px solid #c0392b !important;
}

.parsley-success {
    border: 2px solid #27ae60 !important;
}

/* Scroll To Top Button */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    display: none;
    background: var(--primary);
    color: var(--white);
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 9999;
    transition: all 0.3s ease;
}

#scrollTopBtn:hover {
    transform: translateY(-3px);
}
