/* ---------- GENERAL ---------- *//* ---------- GENERAL ---------- *//* ---------- GENERAL ---------- */
/* ---------- GENERAL ---------- *//* ---------- GENERAL ---------- *//* ---------- GENERAL ---------- */
/* ---------- GENERAL ---------- *//* ---------- GENERAL ---------- *//* ---------- GENERAL ---------- */

body {
    margin: 0;
    padding: 0;
    font-family: "Rubik", sans-serif;
}

* {
    margin: 0;
    padding: 0;
}

/* ---------- NAVBAR ---------- *//* ---------- NAVBAR ---------- *//* ---------- NAVBAR ---------- */
/* ---------- NAVBAR ---------- *//* ---------- NAVBAR ---------- *//* ---------- NAVBAR ---------- */
/* ---------- NAVBAR ---------- *//* ---------- NAVBAR ---------- *//* ---------- NAVBAR ---------- */

.hamburger {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

.navwrapper {
    height: 100px;
    background-color: #101010;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
    padding: 0 20px;
    position: relative;
}

.navlogo {
    flex: 0 0 auto;
    margin-left: 20px;
}

.navlogo img {
    max-width: 200px;
    height: auto;
}

.navmenu {
    display: flex;
    justify-content: center;
    font-size: 16px;
}

.navmenu ul {
    list-style-type: none;
    display: flex;
    padding: 0;
    margin: 0;
    gap: 50px;
}

.navmenu ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    line-height: 40px;
    padding: 10px 20px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navmenu ul li a i {
    margin-left: 5px;
}

.navmenu ul li a:hover {
    background-color: #FF6A00;
    color: #fff;
}

.dropdown-parent {
    position: relative;
}

.dropdown-columns {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #101010;
    color: #fff;
    min-width: 40vw;
    padding: 15px;
    z-index: 9999;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.dropdown-columns a i{
    font-size: 35px;
}

.dropdown-columns .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
}

.dropdown-columns .dropdown-item:hover {
    background-color: #FF6A00;
    cursor: pointer;
    color: #fff;
}

.dropdown-columns .dropdown-item > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.dropdown-columns .dropdown-item > div span,
.dropdown-columns .dropdown-item > div p {
    margin: 0;
    line-height: 1.2;
}

.dropdown-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.dropdown-links {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #101010;
    width: 175px;
    padding: 4px 8px;
    z-index: 1;
    text-align: left;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.dropdown-links a {
    text-decoration: none;
    color: #fff;
    display: block;
    padding: 4px 0;
    line-height: 25px !important;
    font-size: 14px;
}

.dropdown-links a:hover {
    color: #FF6A00;
}

.dropdown-parent:hover > .dropdown-columns,
.dropdown-parent:hover > .dropdown-links {
    opacity: 1;
    pointer-events: auto;
}

.active {
    background-color: #FF6A00;
}

/* ---------- HERO SECTION ---------- *//* ---------- HERO SECTION ---------- *//* ---------- HERO SECTION ---------- */
/* ---------- HERO SECTION ---------- *//* ---------- HERO SECTION ---------- *//* ---------- HERO SECTION ---------- */
/* ---------- HERO SECTION ---------- *//* ---------- HERO SECTION ---------- *//* ---------- HERO SECTION ---------- */

.hero-container {
    height: 650px;
    display: flex;
    align-items: center;
    background-image: url(../img/image-2.jpg);
    background-position: center;
    background-size: cover;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 80px;
    gap: 15px;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
}
.lg-2 {
    width: 33%;
    margin: 0 auto;
}
.hero img {
    width: 50%;
}

.hero h1 {
    margin: 0;
    font-size: 60px;
}

.hero p {
    margin: 0;
    font-size: 20px;
}

.hero-btn {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.hero-btn a {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    background-color: #FF6A00;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-btn a:hover {
    background-color: #ff8c33;
}

/* ---------- SECTION DARK ---------- *//* ---------- SECTION DARK ---------- *//* ---------- SECTION DARK ---------- */
/* ---------- SECTION DARK ---------- *//* ---------- SECTION DARK ---------- *//* ---------- SECTION DARK ---------- */
/* ---------- SECTION DARK ---------- *//* ---------- SECTION DARK ---------- *//* ---------- SECTION DARK ---------- */

.section-dark {
    width: 100%;
    background-color: #101010;
    color: #fff;
    padding: 65px 20px;
    box-sizing: border-box;
}

.section {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    box-sizing: border-box;
}

.section-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.section-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.section-text h2 {
    margin: 0 0 20px;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
}

.section-text p {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.65;
    color: #f2f2f2;
}

.section-image {
    flex: 0 0 430px;
}

.section-image img {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
}

.section-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 22px;
    background-color: #FF6A00;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.section-btn:hover {
    background-color: #ff8c33;
}

/* ---------- SHARED SECTION ---------- *//* ---------- SHARED SECTION ---------- *//* ---------- SHARED SECTION ---------- */
/* ---------- SHARED SECTION ---------- *//* ---------- SHARED SECTION ---------- *//* ---------- SHARED SECTION ---------- */
/* ---------- SHARED SECTION ---------- *//* ---------- SHARED SECTION ---------- *//* ---------- SHARED SECTION ---------- */

.section {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}

.section-label {
    display: block;
    margin-bottom: 12px;
    color: #FF6A00;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-label.orange {
    color: #FF6A00;
}

.section-heading {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 18px;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
    color: #f7f7f7;
}

.section-heading p {
    font-size: 18px;
    line-height: 1.7;
    color: #f7f7f7;
}

/* ---------- SERVICES SECTION ---------- *//* ---------- SERVICES SECTION ---------- *//* ---------- SERVICES SECTION ---------- */
/* ---------- SERVICES SECTION ---------- *//* ---------- SERVICES SECTION ---------- *//* ---------- SERVICES SECTION ---------- */
/* ---------- SERVICES SECTION ---------- *//* ---------- SERVICES SECTION ---------- *//* ---------- SERVICES SECTION ---------- */

.services-section {
    width: 100%;
    padding: 90px 30px;
    background-color: #f7f7f7;
    box-sizing: border-box;
}

.services-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    text-align: center;
}

.services-heading {
    max-width: 750px;
    margin: 0 auto 50px;
}

.services-label {
    display: block;
    margin-bottom: 12px;
    color: #FF6A00;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.services-heading h2 {
    margin: 0 0 18px;
    color: #101010;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
}

.services-heading p {
    margin: 0;
    color: #666;
    font-size: 18px;
    line-height: 1.6;
}

.services-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: stretch;
}

.service-card {
    min-height: 300px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    color: #101010;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
    transform: scale(1);
}

.service-card:hover {
    transform: scale(1.04);
    border-color: #FF6A00;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #101010;
    color: #FF6A00;
    border-radius: 50%;
    font-size: 26px;
    background-color: 0.25s ease;
    transform: 0.25s ease;
}

.service-card:hover .service-icon {
    background-color: #FF6A00;
    color: #fff;
    transform: scale(1.08);
}

.service-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
}

.service-card p {
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.service-link {
    margin-top: auto;
    padding-top: 20px;
    color: #FF6A00;
    font-size: 14px;
    font-weight: 600;
}

.service-link i {
    margin-left: 6px;
    transition: transform 0.25s ease;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

.services-footer {
    margin-top: 45px;
    text-align: center;
}

.services-footer p {
    margin-bottom: 15px;
    color: #666;
    font-size: 16px;
}

.services-button {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #101010;
    border-radius: 6px;
    color: #101010;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.services-button:hover {
    background-color: #101010;
    color: #fff;
}

/* ---------- WHY CHOOSE US ---------- *//* ---------- WHY CHOOSE US ---------- *//* ---------- WHY CHOOSE US ---------- */
/* ---------- WHY CHOOSE US ---------- *//* ---------- WHY CHOOSE US ---------- *//* ---------- WHY CHOOSE US ---------- */
/* ---------- WHY CHOOSE US ---------- *//* ---------- WHY CHOOSE US ---------- *//* ---------- WHY CHOOSE US ---------- */

.why-section {
    width: 100%;
    padding: 90px 30px;
    background-color: #101010;
    box-sizing: border-box;
}

.why-section .section {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}

.why-section .section-heading {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.why-section .section-label {
    display: block;
    margin-bottom: 12px;
    color: #FF6A00;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.why-section .section-heading h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
}

.why-section .section-heading p {
    margin: 0;
    color: #bdbdbd;
    font-size: 18px;
    line-height: 1.6;
}

.features-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature {
    min-height: 260px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #181818;
    border: 1px solid #292929;
    border-radius: 8px;
    box-sizing: border-box;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.feature:hover {
    transform: scale(1.04);
    border-color: #FF6A00;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FF6A00;
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    flex-shrink: 0;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.feature:hover .feature-icon {
    background-color: #fff;
    color: #FF6A00;
    transform: scale(1.08);
}

.feature h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 600;
}

.feature p {
    margin: 0;
    color: #aaa;
    font-size: 15px;
    line-height: 1.6;
}

/* ---------- HOW IT WORKS ---------- *//* ---------- HOW IT WORKS ---------- *//* ---------- HOW IT WORKS ---------- */
/* ---------- HOW IT WORKS ---------- *//* ---------- HOW IT WORKS ---------- *//* ---------- HOW IT WORKS ---------- */
/* ---------- HOW IT WORKS ---------- *//* ---------- HOW IT WORKS ---------- *//* ---------- HOW IT WORKS ---------- */

.how-section {
    width: 100%;
    padding: 90px 30px;
    background-color: #f7f7f7;
    box-sizing: border-box;
}

.how-section .section {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}

.how-section .section-heading {
    max-width: 750px;
    margin: 0 auto 55px;
    text-align: center;
}

.how-section .section-label {
    display: block;
    margin-bottom: 12px;
    color: #FF6A00;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.how-section .section-heading h2 {
    margin: 0 0 18px;
    color: #101010;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
}

.how-section .section-heading p {
    margin: 0;
    color: #666;
    font-size: 18px;
    line-height: 1.6;
}

.steps-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.steps-grid::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    background-color: #dedede;
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
    padding: 0 25px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FF6A00;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 0 0 8px #f7f7f7;
}

.step-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #101010;
    color: #FF6A00;
    border-radius: 50%;
    font-size: 21px;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.step:hover .step-icon {
    background-color: #FF6A00;
    color: #fff;
    transform: scale(1.08);
}

.step h3 {
    margin: 0 0 12px;
    color: #101010;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 600;
}

.step p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.how-footer {
    margin-top: 50px;
    text-align: center;
}

.how-footer p {
    margin: 0 0 15px;
    color: #666;
    font-size: 16px;
}

.how-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 25px;
    background-color: #FF6A00;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.how-button:hover {
    background-color: #101010;
    transform: translateY(-2px);
}

.how-button i {
    transition: transform 0.25s ease;
}

.how-button:hover i {
    transform: translateX(4px);
}

/* ---------- SERVICE AREA SECTION ---------- *//* ---------- SERVICE AREA SECTION ---------- *//* ---------- SERVICE AREA SECTION ---------- */
/* ---------- SERVICE AREA SECTION ---------- *//* ---------- SERVICE AREA SECTION ---------- *//* ---------- SERVICE AREA SECTION ---------- */
/* ---------- SERVICE AREA SECTION ---------- *//* ---------- SERVICE AREA SECTION ---------- *//* ---------- SERVICE AREA SECTION ---------- */

.area-section {
    width: 100%;
    padding: 90px 30px;
    background-color: #f7f7f7;
    box-sizing: border-box;
}

.area-section .section {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}

.area-content {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.area-text {
    text-align: left;
}

.area-text .section-label {
    display: block;
    margin-bottom: 12px;
    color: #FF6A00;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.area-text h2 {
    margin: 0 0 20px;
    color: #f7f7f7;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;
}

.area-text > p {
    margin: 0 0 16px;
    color: #f7f7f7;
    font-size: 17px;
    line-height: 1.7;
}

.area-list {
    margin: 28px 0 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f7f7f7;
    font-size: 15px;
    font-weight: 500;
}

.area-item i {
    color: #FF6A00;
    font-size: 16px;
}

.area-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 25px;
    background-color: #FF6A00;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.area-button:hover {
    background-color: #f7f7f7;
    transform: translateY(-2px);
    color: #101010;
}

.area-button i {
    transition: transform 0.25s ease;
}

.area-button:hover i {
    transform: translateX(4px);
}

.area-section {
    background-color: #101010;
}
.area-map {
    width: 100%;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: #f7f7f7;
    border-radius: 10px;
    box-sizing: border-box;
}

.area-map::before,
.area-map::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 106, 0, 0.2);
    border-radius: 50%;
}

.area-map::before {
    width: 350px;
    height: 350px;
}

.area-map::after {
    width: 500px;
    height: 500px;
}

.area-map-content {
    position: relative;
    z-index: 2;
    width: 75%;
    padding: 35px;
    text-align: center;
    background-color: rgba(247, 247, 247, 0.95);
    border: 1px solid #292929;
    border-radius: 8px;
    box-sizing: border-box;
}

.area-map-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FF6A00;
    color: #fff;
    border-radius: 50%;
    font-size: 28px;
}

.area-map-content h3 {
    margin: 0 0 12px;
    color: #101010;
    font-size: 28px;
    font-weight: 600;
}

.area-map-content p {
    margin: 0;
    color: #101010;
    font-size: 15px;
    line-height: 1.6;
}

.area-map-line {
    width: 50px;
    height: 2px;
    margin: 25px auto 18px;
    background-color: #FF6A00;
}

.area-map-label {
    color: #FF6A00;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

/* ---------- FINAL CTA SECTION ---------- *//* ---------- FINAL CTA SECTION ---------- *//* ---------- FINAL CTA SECTION ---------- */
/* ---------- FINAL CTA SECTION ---------- *//* ---------- FINAL CTA SECTION ---------- *//* ---------- FINAL CTA SECTION ---------- */
/* ---------- FINAL CTA SECTION ---------- *//* ---------- FINAL CTA SECTION ---------- *//* ---------- FINAL CTA SECTION ---------- */

.final-cta {
    width: 100%;
    padding: 100px 30px;
    background-color: #f7f7f7;
    box-sizing: border-box;
}

.final-cta-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-label {
    display: block;
    margin-bottom: 14px;
    color: #101010;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.final-cta h2 {
    margin: 0 0 20px;
    color: #101010;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 700;
}

.final-cta p {
    max-width: 700px;
    margin: 0 auto;
    color: #101010;
    font-size: 18px;
    line-height: 1.7;
}

.final-cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.final-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 27px;
    background-color: #101010;
    color: #fff;
    border: 2px solid #101010;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.final-cta-button:hover {
    background-color: #ff8c33;
    color: #101010;
    border-color: #fff;
    transform: translateY(-2px);
}

.final-cta-button i {
    transition: transform 0.25s ease;
}

.final-cta-button:hover i {
    transform: translateX(4px);
}

.final-cta-button.secondary {
    background-color: transparent;
    color: #101010;
    border-color: rgba(24, 24, 24, 0.8);
}

.final-cta-button.secondary:hover {
    background-color: #fff;
    color: #101010;
    border-color: #ff8c33;
}

.final-cta-button.secondary:hover i {
    transform: none;
}

/* ---------- FOOTER ---------- *//* ---------- FOOTER ---------- *//* ---------- FOOTER ---------- */
/* ---------- FOOTER ---------- *//* ---------- FOOTER ---------- *//* ---------- FOOTER ---------- */
/* ---------- FOOTER ---------- *//* ---------- FOOTER ---------- *//* ---------- FOOTER ---------- */

.site-footer {
    background-color: #ff8c33; /*101010*/
    color: #fff;
    padding: 60px 20px 30px 20px;
    font-size: 14px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 30px auto;
    gap: 30px;
}

.footer-column h4 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #101010; /*101010*/
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #101010;
}

.social-links li a i {
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    margin: 0;
}

.footer-payments i {
    font-size: 28px;
    margin-left: 15px;
    color: #fff;
    transition: color 0.3s ease;
}

.footer-payments i:hover {
    color: #101010;
}

/* ---------- ABOUT US PAGE ---------- *//* ---------- ABOUT US PAGE ---------- *//* ---------- ABOUT US PAGE ---------- */
/* ---------- ABOUT US PAGE ---------- *//* ---------- ABOUT US PAGE ---------- *//* ---------- ABOUT US PAGE ---------- */
/* ---------- ABOUT US PAGE ---------- *//* ---------- ABOUT US PAGE ---------- *//* ---------- ABOUT US PAGE ---------- */

.about-hero {
    width: 100%;
    padding: 90px 30px;
    background-color: #f7f7f7;
    box-sizing: border-box;
}

.about-hero-container {
    width: 100%;
    max-width: 1200px;
    min-height: 500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-hero-content {
    max-width: 600px;
}

.about-hero-label {
    display: block;
    margin-bottom: 15px;
    color: #FF6A00;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-hero-content h1 {
    margin: 0 0 22px;
    color: #101010;
    font-size: 62px;
    line-height: 1.05;
    font-weight: 700;
}

.about-hero-content p {
    max-width: 570px;
    margin: 0;
    color: #101010;
    font-size: 18px;
    line-height: 1.7;
}

.about-hero-buttons {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 25px;
    background-color: #FF6A00;
    color: #fff;
    border: 2px solid #FF6A00;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.about-hero-button:hover {
    background-color: #b8b8b8;
    border-color: #101010;
    color: #101010;
    transform: translateY(-2px);
}

.about-hero-button i {
    transition: transform 0.25s ease;
}

.about-hero-button:hover i {
    transform: translateX(4px);
}

.about-hero-button.secondary {
    background-color: transparent;
    border-color: #555;
    color: #101010;
}

.about-hero-button.secondary:hover {
    background-color: #101010;
    border-color: #FF6A00;
    color: #f7f7f7;
}

.about-hero-image {
    width: 100%;
    height: 500px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-color: #181818;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-hero-badge {
    position: absolute;
    left: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    padding: 16px 20px;
    background-color: rgba(16, 16, 16, 0.94);
    border-left: 4px solid #FF6A00;
    border-radius: 4px;
}

.about-hero-badge strong {
    margin-bottom: 4px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}

.about-hero-badge span {
    color: #aaa;
    font-size: 13px;
}

/* ---------- MEET THE TEAM PAGE ---------- *//* ---------- MEET THE TEAM PAGE ---------- *//* ---------- MEET THE TEAM PAGE ---------- */
/* ---------- MEET THE TEAM PAGE ---------- *//* ---------- MEET THE TEAM PAGE ---------- *//* ---------- MEET THE TEAM PAGE ---------- */
/* ---------- MEET THE TEAM PAGE ---------- *//* ---------- MEET THE TEAM PAGE ---------- *//* ---------- MEET THE TEAM PAGE ---------- */

.team-section {
    width: 100%;
    padding: 90px 30px;
    background-color: #101010;
    box-sizing: border-box;
}

.team-section .section {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}

.team-section .section-heading {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.team-section .section-label {
    display: block;
    margin-bottom: 12px;
    color: #FF6A00;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.team-section .section-heading h2 {
    margin: 0 0 18px;
    color: #f7f7f7;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
}

.team-section .section-heading p {
    margin: 0;
    color: #f7f7f7;
    font-size: 18px;
    line-height: 1.6;
}

.team-grid {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.team-card {
    width: 100%;
    background-color: #f7f7f7;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    box-sizing: border-box;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.team-card:hover {
    transform: scale(1.025);
    border-color: #FF6A00;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 2;
}

.team-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #181818;
}

.team-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.04);
}

.team-info {
    padding: 28px 30px 32px;
    text-align: center;
}

.team-role {
    display: block;
    margin-bottom: 8px;
    color: #FF6A00;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.team-info h3 {
    margin: 0 0 12px;
    color: #101010;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 600;
}

.team-info p {
    max-width: 400px;
    margin: 0 auto;
    color: #666;
    font-size: 15px;
    line-height: 1.65;
}

.story-section {
    width: 100%;
    padding: 100px 30px;
    background-color: #f7f7f7;
    box-sizing: border-box;
}

.story-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;

    align-items: center;
}

.story-image {
    position: relative;
    width: 100%;
    height: 600px;
}

.story-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    border-radius: 6px;

    position: relative;
    z-index: 2;
}

.story-image-accent {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 18px;
    left: 18px;
    border: 2px solid #FF6A00;
    border-radius: 6px;
    z-index: 1;
}

.story-content {
    width: 100%;
}

.story-label {
    display: block;
    margin-bottom: 14px;
    color: #FF6A00;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.story-content h2 {
    margin: 0 0 25px;
    color: #101010;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 700;
}

.story-intro {
    margin: 0 0 20px;
    color: #101010;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 500;
}

.story-content > p:not(.story-intro) {
    margin: 0 0 18px;
    color: #101010;
    font-size: 16px;
    line-height: 1.75;
}

.story-highlight {
    display: flex;
    align-items: flex-start;
    margin-top: 32px;
    padding-top: 25px;
    border-top: 1px solid #303030;
}

.story-highlight-line {
    flex-shrink: 0;
    width: 4px;
    height: 45px;
    margin-right: 18px;
    background-color: #FF6A00;
    border-radius: 2px;
}

.story-highlight p {
    margin: 0;
    color: #101010;
    font-size: 16px;
    line-height: 1.6;
}

.story-highlight strong {
    color: #101010;
    font-weight: 700;
}

/* ---------- CONTACT US PAGE ---------- *//* ---------- CONTACT US PAGE ---------- *//* ---------- CONTACT US PAGE ---------- */
/* ---------- CONTACT US PAGE ---------- *//* ---------- CONTACT US PAGE ---------- *//* ---------- CONTACT US PAGE ---------- */
/* ---------- CONTACT US PAGE ---------- *//* ---------- CONTACT US PAGE ---------- *//* ---------- CONTACT US PAGE ---------- */

.contact-hero {
    width: 100%;
    padding: 100px 30px;
    background-color: #f7f7f7;
    box-sizing: border-box;
}

.contact-hero .section {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}

.contact-hero-content {
    max-width: 750px;
}

.contact-hero .section-label,
.contact-info-section .section-label,
.contact-form-section .section-label {
    display: block;
    margin-bottom: 14px;
    color: #FF6A00;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-hero h1 {
    margin: 0 0 20px;
    color: #101010;
    font-size: 56px;
    line-height: 1.1;
    font-weight: 700;
}

.contact-hero p {
    max-width: 650px;
    margin: 0;
    color: #101010;
    font-size: 19px;
    line-height: 1.7;
}

.contact-map-section {
    width: 100%;
    padding: 0;
    background-color: #101010;
}

.contact-map {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-info-section {
    width: 100%;
    padding: 90px 30px;
    background-color: #fff;
    box-sizing: border-box;
}

.contact-info-section .section {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 100px;
}

.contact-details h2,
.contact-socials h2 {
    margin: 0 0 18px;
    color: #101010;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 700;
}

.contact-intro,
.contact-socials > p {
    max-width: 600px;
    margin: 0 0 35px;
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-detail {
    display: flex;
    align-items: center;
}

.contact-detail-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    background-color: #101010;
    border-radius: 50%;
    color: #FF6A00;
    font-size: 20px;
}

.contact-detail-content {
    min-width: 0;
}

.contact-detail-label {
    display: block;
    margin-bottom: 4px;
    color: #999;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.contact-detail-content p {
    margin: 0;
    color: #222;
    font-size: 16px;
    line-height: 1.5;
}

.contact-detail-content a {
    color: #222;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-detail-content a:hover {
    color: #FF6A00;
}

.contact-socials {
    padding-left: 45px;
    border-left: 1px solid #e5e5e5;
}

.contact-social-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-social {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #f7f7f7;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    color: #101010;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.contact-social:hover {
    background-color: #fff;
    border-color: #FF6A00;
    transform: translateX(4px);
}

.contact-social-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    background-color: #101010;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.contact-social strong {
    display: block;
    margin-bottom: 2px;
    font-size: 15px;
    font-weight: 600;
}

.contact-social small {
    display: block;
    color: #777;
    font-size: 12px;
}

.contact-form-section {
    width: 100%;
    padding: 100px 30px;
    background-color: #f5f5f5;
    box-sizing: border-box;
}

.contact-form-section .section {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.contact-form-heading {
    max-width: 700px;
    margin: 0 auto 50px;

    text-align: center;
}

.contact-form-heading h2 {
    margin: 0 0 18px;
    color: #101010;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 700;
}

.contact-form-heading p {
    margin: 0;
    color: #666;
    font-size: 17px;
    line-height: 1.65;
}

.contact-form {
    padding: 45px;
    background-color: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 9px;
    color: #222;
    font-size: 14px;
    font-weight: 600;
}

.form-group label span {
    color: #FF6A00;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background-color: #fff;
    border: 1px solid #d7d7d7;
    border-radius: 5px;
    color: #222;
    font-family: inherit;
    font-size: 15px;
    box-sizing: border-box;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group input,
.form-group select {
    height: 52px;
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
    line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #FF6A00;
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.10);
}

.contact-form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 5px;
}

.contact-form-submit button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    height: 54px;
    padding: 0 24px;
    background-color: #FF6A00;
    border: 0;
    border-radius: 5px;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.contact-form-submit button:hover {
    background-color: #e85f00;
    transform: translateY(-2px);
}

.contact-form-submit button span {
    margin-left: 12px;
    font-size: 20px;
}

.contact-form-submit p {
    margin: 0;
    color: #888;
    font-size: 13px;
    line-height: 1.5;
}

/* ---------- CONTACT US PAGE ---------- */