:root {
    --primary-color: #ca8a04;
    --accent-color: #facc15;
    --text-color: #000000;
    --text-muted: #4b5563;
    --bg-color: #ffffff;
    --bg-alt: #f9fafb;
    --border-color: #e5e7eb;
    --container-width: 1600px;
    --font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-family);
    background: var(--bg-color);
    color: var(--text-color);
}

header {
    width: 100%;
    position: sticky;
    top: 0;
    padding: 18px max(24px, calc((100vw - var(--container-width)) / 2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    background: var(--bg-color);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header .nav-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

header .logo {
    flex: 0 0 auto;
}

header .logo a {
    display: inline-flex;
    align-items: center;
}

header .logo img {
    display: block;
    width: 174px;
    max-width: 100%;
    height: auto;
}

header .hamburger {
    width: 32px;
    padding: 6px 2px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

header .hamburger span {
    width: 28px;
    height: 3px;
    display: block;
    border-radius: 999px;
    background: #1f2933;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

header .menu_full {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
}

header .menu_full ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header .menu_full > ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

header .menu_full li {
    position: relative;
}

header .menu_full a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 6px 0;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    text-transform: capitalize;
    transition: color 0.2s ease;
}

header .has-submenu > a {
    gap: 6px;
}

header .has-submenu > a::before {
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    content: "";
    order: 2;
    transform: rotate(45deg);
}

header .menu_full a:hover,
header .menu_full a:focus-visible {
    color: #000000;
}

header .menu_full > ul > li.current-menu-item > a::after,
header .menu_full > ul > li.current_page_item > a::after,
header .menu_full > ul > li.current-menu-parent > a::after,
header .menu_full > ul > li.current-menu-ancestor > a::after,
header .menu_full > ul > li > a:hover::after,
header .menu_full > ul > li > a:focus-visible::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: #000000;
    content: "";
}

header .submenu {
    min-width: 240px;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 16px 0 12px;
    display: block;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 20;
}

header .has-submenu:hover > .submenu,
header .has-submenu:focus-within > .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

header .submenu a {
    width: 100%;
    padding: 14px 20px;
    justify-content: flex-start;
    white-space: nowrap;
}

header .submenu a:hover,
header .submenu a:focus-visible {
    background: #f5f7fa;
}

header .headcall {
    flex: 0 0 auto;
}

header .callheader {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    text-decoration: none;
    white-space: nowrap;
}

header .callheader img {
    width: 26px;
    height: auto;
    flex: 0 0 26px;
}

header .numtex p {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.05;
}

header .numtex span {
    display: block;
    margin-bottom: 3px;
    color: #000000;
    font-size: 12px;
    font-weight: 400;
}

.banner_slider {
    position: relative;
    overflow: hidden;
    background: #000000;
}

.banner_viewport {
    overflow: hidden;
}

.banner_track {
    display: flex;
    transition: transform 0.45s ease;
}

.banner_slide {
    width: 100%;
    min-width: 100%;
    position: relative;
    padding: clamp(88px, 11vw, 160px) max(24px, calc((100vw - var(--container-width)) / 2));
    display: flex;
    align-items: center;
    isolation: isolate;
}

.banner_slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.banner_slide::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.08));
    content: "";
    z-index: 1;
}

.banner_content {
    width: min(710px, 100%);
    position: relative;
    color: #ffffff;
    z-index: 2;
}

.banner_label {
    margin: 0 0 14px;
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: uppercase;
}

.banner_content h1,
.banner_content h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(34px, 5vw, 66px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: 0;
}

.banner_content p:not(.banner_label) {
    max-width: 600px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.65;
}

.banner_btn {
    margin-top: 30px;
    padding: 16px 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    border-radius: 4px;
    background: #ffffff;
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    text-transform: capitalize;
    transition: background 0.2s ease, transform 0.2s ease;
}

.banner_btn:hover,
.banner_btn:focus-visible {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.banner_btn .fa-arrow-circle-right {
    width: 14px;
    height: 14px;
    position: relative;
    display: inline-block;
    border-radius: 50%;
    background: #000000;
    flex: 0 0 14px;
}

.banner_btn .fa-arrow-circle-right::before {
    width: 5px;
    height: 5px;
    position: absolute;
    top: 50%;
    left: 46%;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    content: "";
    transform: translate(-50%, -50%) rotate(45deg);
}

.banner_controls {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 0;
    z-index: 2;
}

.banner_arrow {
    width: 52px;
    height: 52px;
    position: relative;
    border: 0;
    background: #ffffff;
    cursor: pointer;
    transition: background 0.2s ease;
}

.banner_next {
    background: #000000;
}

.banner_arrow::before {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    border-top: 2px solid #000000;
    border-left: 2px solid #000000;
    content: "";
    transform: translate(-35%, -50%) rotate(-45deg);
}

.banner_next::before {
    border-color: #ffffff;
    transform: translate(-65%, -50%) rotate(135deg);
}

.banner_arrow:hover,
.banner_arrow:focus-visible {
    background: var(--accent-color);
}

.banner_next:hover::before,
.banner_next:focus-visible::before {
    border-color: #000000;
}

.services_section {
    padding: 80px max(24px, calc((100vw - var(--container-width)) / 2));
    background: var(--bg-alt);
}

.section_inner {
    width: 100%;
}

.section_heading {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}

.section_heading p:first-child {
    display: inline-block;
    margin: 0 0 16px;
    padding: 6px 16px;
    background: rgba(202, 138, 4, 0.08); /* Soft primary gold tint */
    border: 1px solid rgba(202, 138, 4, 0.15);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 99px;
}

.section_heading h2 {
    margin: 0;
    color: var(--text-color);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.12;
}

.section_heading h2 .highlight {
    position: relative;
    color: var(--primary-color);
    display: inline-block;
}

.section_heading h2 .highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    border-radius: 99px;
}

.section_heading p:last-child {
    margin: 18px auto 0;
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    text-transform: none;
    max-width: 680px;
}

.services_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.service_card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: visible;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(202, 138, 4, 0.35);
}

.service_image_wrapper {
    position: relative;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    overflow: visible;
}

.service_image {
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--border-color);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

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

.service_card:hover .service_image img {
    transform: scale(1.05);
}

.service_num {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 4px;
    line-height: 1;
    z-index: 2;
}

.service_icon_badge {
    position: absolute;
    bottom: -24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.service_icon_badge i {
    font-size: 24px;
    color: var(--primary-color);
}

.service_content {
    padding: 40px 24px 28px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}



.service_content h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.service_content h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.service_content h3 a:hover,
.service_content h3 a:focus-visible {
    color: var(--primary-color);
}

.title_divider {
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    margin: 10px 0 16px;
    border-radius: 2px;
}

.service_content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    flex-grow: 1;
}

.read_more_btn {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.2s ease;
}

.read_more_btn:hover {
    color: var(--primary-color);
}

.arrow_circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.arrow_circle i {
    font-size: 8px;
    line-height: 1;
}

.read_more_btn:hover .arrow_circle {
    background-color: var(--text-color);
    transform: translateX(2px);
}


/* Why Choose Us Section */
.why_choose_us_section {
    padding: 80px max(24px, calc((100vw - var(--container-width)) / 2));
    background: var(--bg-color);
}

.why_choose_grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.why_choose_heading {
    text-align: left;
    margin: 0;
}

.why_choose_cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.why_card {
    display: flex;
    gap: 18px;
    padding: 24px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04);
}

.why_icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(202, 138, 4, 0.08);
    border: 1px solid rgba(202, 138, 4, 0.15);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}



.why_card_content h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.why_card_content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.55;
}

/* Testimonials Section */
.testimonials_section {
    padding: 80px max(24px, calc((100vw - var(--container-width)) / 2));
    background: var(--bg-alt);
    position: relative;
}



.testimonials_slider_container {
    overflow: hidden;
    width: 100%;
}

.testimonials_track {
    display: flex;
    gap: 28px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial_card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 32px 32px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 calc((100% - 56px) / 3);
    min-width: 0;
    box-sizing: border-box;
}

.testimonial_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.testimonial_card .quote_icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.85;
}

.testimonial_card .quote_text {
    margin: 0 0 24px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    font-style: normal;
    font-weight: 500;
    flex-grow: 1;
}

.testimonial_card .client_divider {
    height: 1px;
    background: var(--border-color);
    margin-bottom: 20px;
}

.testimonial_card .client_info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial_card .client_avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial_card .client_meta {
    display: flex;
    flex-direction: column;
}

.testimonial_card .client_name {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-color);
}

.testimonial_card .client_service {
    margin: 2px 0 6px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.testimonial_card .stars {
    display: flex;
    gap: 2px;
    color: var(--primary-color);
    font-size: 11px;
    line-height: 1;
}

/* Testimonial Controls */
.testimonials_controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider_arrow {
    width: 36px;
    height: 36px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    background: transparent;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.slider_arrow:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.slider_arrow i {
    font-size: 10px;
}

.slider_dots {
    display: flex;
    gap: 8px;
}

.slider_dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: background-color 0.2s;
}

.slider_dots .dot.active {
    background: var(--primary-color);
}

/* Testimonials CTA */
.testimonials_cta {
    margin-top: 60px;
    background: rgba(202, 138, 4, 0.06);
    border: 1px solid rgba(202, 138, 4, 0.12);
    border-radius: 99px;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta_left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta_icon_badge {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(202, 138, 4, 0.08);
    border: 1px solid rgba(202, 138, 4, 0.15);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.cta_text h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-color);
}

.cta_text p {
    margin: 2px 0 0;
    font-size: 14px;
    color: var(--text-muted);
}

.cta_quote_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s, transform 0.2s;
}

.cta_quote_btn:hover {
    background: #000000;
}

.cta_quote_btn .arrow_circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta_quote_btn .arrow_circle i {
    font-size: 8px;
}

/* Quote Request Section */
.quote_section {
    padding: 80px max(24px, calc((100vw - var(--container-width)) / 2));
    background: #f8fafc;
}

.quote_grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 0;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.quote_form_container {
    background: #ffffff;
    padding: 50px;
    display: flex;
    flex-direction: column;
}

.quote_label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    padding: 6px 18px;
    background: rgba(202, 138, 4, 0.08);
    border: 1px solid rgba(202, 138, 4, 0.15);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 99px;
    align-self: flex-start;
}

.quote_form_container h2 {
    margin: 0 0 12px;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-color);
}

.quote_desc {
    margin: 0 0 32px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.quote_form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form_row {
    display: flex;
    gap: 20px;
}

.form_row .form_group {
    flex: 1;
}

.form_group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form_group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form_group input,
.form_group select,
.form_group textarea {
    width: 100%;
    padding: 13px 44px 13px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #ffffff;
    color: var(--text-color);
    font-family: inherit;
    font-size: 14px;
    line-height: 1.3;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form_group input:focus,
.form_group select:focus,
.form_group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(202, 138, 4, 0.1);
}

.form_group.has_icon .input_wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.form_group.has_icon .field_icon {
    position: absolute;
    right: 16px;
    color: #94a3b8;
    font-size: 16px;
    pointer-events: none;
}

.select_wrapper {
    position: relative;
}

.select_wrapper::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 12px;
    pointer-events: none;
}

.select_wrapper select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px !important;
}

.textarea_group .field_icon {
    position: absolute;
    right: 16px;
    bottom: 16px;
    top: auto;
    transform: none;
}

.form_group textarea {
    padding-right: 44px;
    line-height: 1.5;
    resize: none;
}

.file_upload_zone {
    border: 2px dashed rgba(202, 138, 4, 0.3);
    border-radius: 8px;
    background: rgba(202, 138, 4, 0.02);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
}

.file_upload_zone:hover {
    background: rgba(202, 138, 4, 0.05);
    border-color: var(--primary-color);
}

.file_upload_zone .cloud_icon {
    font-size: 28px;
    color: var(--primary-color);
}

.upload_text strong {
    display: block;
    font-size: 14px;
    color: var(--text-color);
}

.upload_text strong span {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 12px;
    margin-left: 4px;
}

.upload_text p {
    margin: 2px 0 0;
    font-size: 12px;
    color: var(--text-muted);
}

.form_actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 10px;
}

.send_request_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 36px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

.send_request_btn:hover {
    background: #000000;
    transform: translateY(-2px);
}

.send_request_btn i {
    font-size: 14px;
}

.privacy_note {
    display: flex;
    align-items: center;
    gap: 12px;
}

.privacy_note i {
    font-size: 16px;
    color: #94a3b8;
}

.privacy_text strong {
    display: block;
    font-size: 12px;
    color: var(--text-color);
}

.privacy_text p {
    margin: 1px 0 0;
    font-size: 11px;
    color: var(--text-muted);
}

/* Quote Info Sidebar */
.quote_info_sidebar {
    background: url('../image/slider-image1.jpg') center top / cover no-repeat;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.quote_info_sidebar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.55) 30%,
        rgba(0, 0, 0, 0.82) 50%,
        rgba(0, 0, 0, 0.92) 100%
    );
    z-index: 1;
}

.quote_info_content {
    padding: 280px 40px 40px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.quote_info_content h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
}

.info_title_divider {
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    margin: 12px 0 28px;
    border-radius: 2px;
}

.why_checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why_checklist li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why_checklist .chk_icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(254, 240, 138, 0.2);
    background: rgba(202, 138, 4, 0.1);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.chk_text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

.chk_text p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.5;
}

.quote_info_footer {
    background: rgba(0, 0, 0, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.footer_call_direct {
    display: flex;
    align-items: center;
    gap: 12px;
}

.call_icon_circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.call_text span {
    display: block;
    font-size: 11px;
    color: #9ca3af;
}

.call_text strong {
    display: block;
    font-size: 13px;
    color: #ffffff;
    font-weight: 700;
}

.vertical_divider {
    width: 1px;
    height: 32px;
    background: #1e293b;
    align-self: center;
}

.footer_phone_details {
    text-align: right;
}

.footer_phone_details strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.footer_phone_details span {
    display: block;
    font-size: 10px;
    color: #9ca3af;
    margin-top: 2px;
}

/* Project Gallery Section */
.gallery_section {
    padding: 80px max(24px, calc((100vw - var(--container-width)) / 2));
    background: var(--bg-alt);
}

.gallery_slider_container {
    overflow: hidden;
    width: 100%;
}

.gallery_track {
    display: flex;
    gap: 28px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery_item {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--border-color);
    isolation: isolate;
    flex: 0 0 calc((100% - 56px) / 3);
    min-width: 0;
    box-sizing: border-box;
}

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

.gallery_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1));
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 1;
}

.gallery_item:hover img {
    transform: scale(1.06);
}

.gallery_item:hover .gallery_overlay {
    opacity: 1;
}

.gallery_overlay h4 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.gallery_overlay p {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.85);
}

.gallery_controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
}

.gallery_dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery_dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.gallery_dots .dot.active {
    background: var(--primary-color);
    transform: scale(1.25);
}

/* Blog Section */
.blog_section {
    padding: 80px max(24px, calc((100vw - var(--container-width)) / 2));
    background: var(--bg-color);
}

.blog_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.blog_card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.blog_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(202, 138, 4, 0.35);
}

.blog_image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--border-color);
}

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

.blog_card:hover .blog_image img {
    transform: scale(1.05);
}

.blog_content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog_meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.blog_tag {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--primary-color);
    background: rgba(202, 138, 4, 0.08);
    padding: 3px 8px;
    border-radius: 4px;
}

.blog_date {
    font-size: 12px;
    color: var(--text-muted);
}

.blog_content h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.blog_content h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog_content h3 a:hover {
    color: var(--primary-color);
}

.blog_content p {
    margin: 0 0 20px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.55;
    flex-grow: 1;
}

.blog_read_more {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.blog_read_more:hover {
    color: var(--primary-color);
}

.blog_read_more span {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.blog_read_more:hover span {
    transform: translateX(3px);
}

/* Call To Action (CTA) Section */
.cta_section {
    padding: 40px max(24px, calc((100vw - var(--container-width)) / 2));
    background: linear-gradient(135deg, #1f2937, #111827);
    color: #ffffff;
}

.cta_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

.cta_content {
    max-width: 800px;
}

.cta_subtitle {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-color);
}

.cta_content h2 {
    margin: 0 0 14px;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
}

.cta_content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.cta_actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.cta_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.cta_btn_primary {
    background: var(--accent-color);
    color: #000000;
}

.cta_btn_primary:hover {
    background: var(--bg-color);
    transform: translateY(-1px);
}

.cta_btn_secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta_btn_secondary:hover {
    background: var(--bg-color);
    color: #000000;
    border-color: var(--bg-color);
    transform: translateY(-1px);
}

/* Site Footer */
.site_footer {
    padding: 80px max(24px, calc((100vw - var(--container-width)) / 2)) 30px;
    background: #0f172a;
    border-top: 1px solid #1e293b;
    color: #94a3b8;
}

.footer_grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer_logo {
    display: block;
    max-width: 160px;
    height: auto;
    margin-bottom: 22px;
    filter: invert(1);
}

.footer_col p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
}

.footer_col h3 {
    margin: 0 0 20px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer_col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer_col ul a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer_col ul a:hover {
    color: var(--accent-color);
}

.footer_contact p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.5;
    color: #94a3b8;
}

.footer_contact p span {
    color: var(--accent-color);
    font-weight: 600;
}

.footer_contact p a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer_contact p a:hover {
    color: var(--accent-color);
}

/* Footer Newsletter Form */
.footer_newsletter_form {
    display: flex;
    margin-top: 20px;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.footer_newsletter_form:focus-within {
    border-color: var(--primary-color);
}

.footer_newsletter_form input {
    flex-grow: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 10px 14px;
    color: #ffffff;
    font-size: 13px;
    font-family: inherit;
    width: 100%;
}

.footer_newsletter_form input::placeholder {
    color: #64748b;
}

.footer_newsletter_form button {
    background: var(--primary-color);
    border: none;
    outline: none;
    color: #ffffff;
    width: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.footer_newsletter_form button:hover {
    background: var(--accent-color);
    color: #0f172a;
}

/* Footer Social Icons */
.footer_socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer_socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 50%;
    color: #94a3b8;
    font-size: 14px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.footer_socials a:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Footer Map */
.footer_map_container {
    margin-top: 20px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #334155;
    background: #0f172a;
    height: 220px;
}

.footer_map_container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) invert(0.9) contrast(1.2);
    opacity: 0.75;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.footer_map_container:hover iframe {
    opacity: 1;
    filter: grayscale(0.1) invert(0) contrast(1);
}

.footer_bottom {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid #1e293b;
    text-align: center;
}

.footer_bottom p {
    margin: 0;
    font-size: 13px;
    color: #64748b;
}

/* About Us Page Custom Styles */
.inner_hero {
    position: relative;
    padding: 80px max(24px, calc((100vw - var(--container-width)) / 2));
    background: url('../image/slider-image1.jpg') center center / cover no-repeat;
    color: #ffffff;
    text-align: center;
    isolation: isolate;
}

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

.inner_hero_content {
    position: relative;
    z-index: 2;
}

.inner_hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 12px;
    color: #ffffff;
}

.inner_hero h1 .highlight {
    color: var(--accent-color);
}

.inner_hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto;
    max-width: 600px;
    line-height: 1.5;
}

.inner_hero p a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.25s ease;
}

.inner_hero p a:hover {
    color: var(--accent-color);
}

.inner_hero p span {
    color: #ffffff;
    font-weight: 700;
}

.about_content_section {
    padding: 80px max(24px, calc((100vw - var(--container-width)) / 2));
    background: var(--bg-color);
}

.about_story_grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.about_heading {
    text-align: left;
    margin: 0 0 24px;
    max-width: none;
}

.about_story_text p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 20px;
}

.about_story_text p.lead_text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.5;
}

.about_story_image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.about_story_image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.core_values_section {
    padding: 80px max(24px, calc((100vw - var(--container-width)) / 2));
    background: var(--bg-alt);
}

/* Blog Page Styles */
.blog_layout_section {
    padding: 80px max(24px, calc((100vw - var(--container-width)) / 2));
    background: var(--bg-color);
}

.blog_layout_grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 60px;
    align-items: flex-start;
}

.blog_main_col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog_listing_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.blog_pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.blog_pagination .page_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--border-color);
    background: #ffffff;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.blog_pagination .page_btn:hover,
.blog_pagination .page_btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.blog_pagination .prev_btn,
.blog_pagination .next_btn {
    min-width: auto;
    padding: 0 16px;
}

/* Sidebar Widgets */
.blog_sidebar {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.sidebar_widget {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
}

.sidebar_widget h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-color);
}

.widget_divider {
    width: 32px;
    height: 3px;
    background: var(--primary-color);
    margin: 12px 0 20px;
    border-radius: 2px;
}

/* Media Widgets (Video and Images) */
.media_widget {
    overflow: hidden;
}

.video_container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    background: #000000;
}

.video_wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

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

.video_wrapper:hover img {
    transform: scale(1.03);
}

.video_wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.play_btn_overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease;
    z-index: 2;
}

.video_wrapper:hover .play_btn_overlay {
    background-color: rgba(0, 0, 0, 0.5);
}

.play_btn_overlay i {
    font-size: 24px;
    color: #ffffff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px; /* Visual centering adjustment for play triangle */
    box-shadow: 0 4px 12px rgba(202, 138, 4, 0.4);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video_wrapper:hover .play_btn_overlay i {
    transform: scale(1.1);
}

.media_caption {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 14px 0 0;
}

.media_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.media_photo {
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    overflow: hidden;
    background: var(--border-color);
    border: 1px solid var(--border-color);
}

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

.media_photo:hover img {
    transform: scale(1.05);
}

/* Search Widget */
.sidebar_search_form {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    background: #ffffff;
}

.sidebar_search_form input {
    flex-grow: 1;
    border: none;
    padding: 12px 16px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
}

.sidebar_search_form button {
    border: none;
    background: var(--primary-color);
    color: #ffffff;
    padding: 0 16px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.sidebar_search_form button:hover {
    background: var(--text-color);
}

/* Categories Widget */
.categories_widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.categories_widget ul a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.categories_widget ul a:hover {
    color: var(--primary-color);
}

.categories_widget li.active a {
    color: var(--primary-color);
    font-weight: 700;
}

.categories_widget ul span {
    font-weight: 400;
    font-size: 12px;
    color: #9ca3af;
}

/* Recent Posts Widget */
.recent_posts_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent_post_item {
    display: flex;
    gap: 16px;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.recent_post_item img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
    background: var(--border-color);
}

.recent_info h4 {
    margin: 0 0 4px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent_info span {
    font-size: 11px;
    color: var(--text-muted);
}

/* Sidebar CTA Widget */
.sidebar_cta_widget {
    background: var(--text-color);
    color: #ffffff;
    border-color: var(--text-color);
    text-align: center;
}

.sidebar_cta_widget h3 {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.3;
}

.sidebar_cta_widget p {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.5;
    margin: 16px 0 24px;
}

.sidebar_cta_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    background: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.sidebar_cta_btn:hover {
    background: #ffffff;
    color: var(--text-color);
}

/* Single Post Details */
.blog_post_single {
    display: flex;
    flex-direction: column;
}

.post_meta_bar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.post_meta_bar .meta_item {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.post_meta_bar .meta_item i {
    color: var(--primary-color);
}

.blog_post_single h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 24px;
    color: var(--text-color);
}

.post_featured_image {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 32px;
    border: 1px solid var(--border-color);
}

.post_featured_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post_content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0 0 20px;
}

.post_content p:first-of-type {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.6;
}

.post_content h3 {
    font-size: 22px;
    font-weight: 800;
    margin: 32px 0 16px;
    color: var(--text-color);
}

.post_content blockquote {
    margin: 32px 0;
    padding: 24px 32px;
    background: var(--bg-alt);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    font-weight: 500;
}

.post_content ul {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.post_content ul li {
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.post_content ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-color);
    font-size: 16px;
}

.post_content ul li strong {
    color: var(--text-color);
}

.post_tags_block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    margin-top: 32px;
}

.post_tags_block strong {
    font-size: 14px;
    color: var(--text-color);
    margin-right: 8px;
}

.post_tags_block a {
    display: inline-block;
    padding: 6px 12px;
    background: var(--bg-alt);
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.post_tags_block a:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

/* Comments Section */
.comments_area {
    margin-top: 60px;
}

.comments_list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
}

.comment_card {
    display: flex;
    gap: 20px;
}

.comment_avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--border-color);
    border: 1px solid var(--border-color);
}

.comment_body {
    flex-grow: 1;
}

.comment_meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
}

.comment_meta strong {
    font-size: 15px;
    color: var(--text-color);
}

.comment_meta span {
    font-size: 12px;
    color: var(--text-muted);
}

.comment_body p {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

.comment_reply_btn {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.comment_reply_btn:hover {
    color: var(--text-color);
}

.leave_reply_block p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.comment_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Services Pages Custom Styles */
.services_list_section {
    padding: 80px max(24px, calc((100vw - var(--container-width)) / 2));
    background: var(--bg-color);
}

.services_staggered_list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service_staggered_item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service_staggered_item.reverse .service_staggered_image {
    order: 2;
}

.service_staggered_item.reverse .service_staggered_content {
    order: 1;
}

.service_staggered_image {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

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

.service_staggered_content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service_badge_num {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-color);
    background: rgba(202, 138, 4, 0.08);
    border: 1px solid rgba(202, 138, 4, 0.15);
    padding: 6px 14px;
    border-radius: 99px;
    margin-bottom: 18px;
    display: inline-block;
}

.service_staggered_content h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 16px;
    color: var(--text-color);
}

.service_staggered_content p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0 0 24px;
}

.service_staggered_content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service_staggered_content ul li {
    position: relative;
    padding-left: 28px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.service_staggered_content ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 16px;
}

/* Service Details Section */
.service_details_section {
    padding: 80px max(24px, calc((100vw - var(--container-width)) / 2));
    background: var(--bg-color);
}

.service_scope_block h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    color: var(--text-color);
}


/* FAQ Accordion Section */
.faq_section {
    padding: 80px max(24px, calc((100vw - var(--container-width)) / 2));
    background: var(--bg-alt);
}

.faq_accordion {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq_item {
    background: transparent;
    border: none;
    border-radius: 12px;
    transition: background 0.3s ease;
    overflow: hidden;
}

.faq_item.active {
    background: rgba(202, 138, 4, 0.05);
}

.faq_trigger {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 28px 24px;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    gap: 32px;
}

.faq_num {
    font-size: 32px;
    font-weight: 300;
    font-family: Georgia, serif;
    font-style: italic;
    color: var(--primary-color);
    opacity: 0.4;
    flex-shrink: 0;
    min-width: 40px;
    transition: opacity 0.3s ease;
}

.faq_item.active .faq_num {
    opacity: 1;
}

.faq_question {
    flex-grow: 1;
    font-size: 19px;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.4;
}

.faq_icon_holder {
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.faq_icon_holder i {
    font-size: 11px;
    color: var(--text-color);
    transition: color 0.3s ease, transform 0.3s ease;
}

.faq_item.active .faq_icon_holder {
    background: #000000;
}

.faq_item.active .faq_icon_holder i {
    color: #ffffff;
}

.faq_panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq_panel p {
    margin: 0;
    padding: 0 24px 28px 96px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Contact Page Styles */
.contact_layout_section {
    padding: 80px max(24px, calc((100vw - var(--container-width)) / 2));
    background: var(--bg-color);
}

/* Service Details Process Section — Full Width */
.full_process_section {
    padding: 80px max(24px, calc((100vw - var(--container-width)) / 2));
    background: var(--bg-alt);
}

.full_process_section h3 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 8px;
    color: var(--text-color);
    text-align: center;
    text-transform: uppercase;
}

.service_process_subtitle {
    font-size: 15px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.process_cards_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.process_card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: 30px 24px;
    border-radius: 12px;
    position: relative;
    width: calc(33.333% - 20px);
    min-width: 280px;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.process_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.process_card_badge {
    width: 40px;
    height: 40px;
    background: #1f2937;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 20px;
}

.process_card_content h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-color);
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.process_card_content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 !important;
}

/* Service Details FAQ Section — Full Width */
.full_faq_section {
    padding: 80px max(24px, calc((100vw - var(--container-width)) / 2));
    background: var(--bg-color);
}

.full_faq_section h3 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 8px;
    color: var(--text-color);
    text-align: center;
    text-transform: uppercase;
}

.service_faq_subtitle {
    font-size: 15px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Responsive timeline rules */
@media (max-width: 768px) {
    .full_process_section {
        padding: 60px 28px;
    }
    .full_faq_section {
        padding: 60px 28px;
    }
    .process_timeline::before {
        left: 24px;
        transform: none;
    }
    .timeline_item {
        grid-template-columns: 46px 1fr;
        gap: 16px;
        margin-bottom: 30px;
    }
    .timeline_badge {
        grid-column: 1;
        justify-self: start;
        border-width: 3px;
        border-color: var(--bg-alt);
    }
    .timeline_item:nth-child(odd) .timeline_content,
    .timeline_item:nth-child(even) .timeline_content {
        grid-column: 2;
        text-align: left;
    }
    
    .blog_layout_grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Sticky Sidebar positioning on desktop */
@media (min-width: 769px) {
    .blog_sidebar {
        position: sticky;
        top: 100px;
        align-self: flex-start;
    }
}

/* Sidebar Services Navigation Widget */
.sidebar_services_links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar_services_links li {
    border-bottom: 1px solid var(--border-color);
}

.sidebar_services_links li:last-child {
    border-bottom: none;
}

.sidebar_services_links li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    color: var(--text-color);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.sidebar_services_links li a i {
    font-size: 12px;
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
}

.sidebar_services_links li:hover a {
    color: var(--primary-color);
    padding-left: 8px;
}

.sidebar_services_links li:hover a i {
    color: var(--primary-color);
    transform: translateX(4px);
}

/* Active Service link highlights */
.sidebar_services_links li.active_service_link a {
    color: var(--primary-color);
    font-weight: 800;
    border-left: 4px solid var(--primary-color);
    padding-left: 12px;
}

.sidebar_services_links li.active_service_link a i {
    color: var(--primary-color);
}

/* Alert Styles */
.alert {
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 12px;
}
.alert_success {
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.alert_success i {
    color: #10b981;
    font-size: 18px;
}
.alert_danger {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
.alert_danger i {
    color: #ef4444;
    font-size: 18px;
}

/* Selected files list styling */
.selected_files_list {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.uploaded_file_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 10px 15px;
    border-radius: 6px;
}
.uploaded_file_info {
    font-size: 14px;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 8px;
}
.uploaded_file_info i {
    color: var(--primary-color, #ff9f1c);
}
.upload_done_status {
    color: #065f46;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    background-color: #ecfdf5;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #a7f3d0;
}
.remove_file_btn {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 16px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}
.remove_file_btn:hover {
    transform: scale(1.15);
}

/* Areas We Serve in Service Details */
.areas_served_block {
    background: #ffffff;
    padding: 35px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-top: 40px;
}

.areas_served_block h3 {
    margin: 0 0 15px;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
}

.areas_served_block .title_divider {
    width: 60px;
    height: 3px;
    background: var(--primary-color, #ff9f1c);
    margin-bottom: 20px;
}

.areas_served_block p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.areas_served_list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 20px;
}

.areas_served_list li {
    font-size: 14px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.areas_served_list li i {
    color: var(--primary-color, #ff9f1c);
    font-size: 13px;
}

/* Responsiveness for Areas We Serve */
@media (max-width: 991px) {
    .areas_served_list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .areas_served_block {
        padding: 24px;
    }
    .areas_served_list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Intro Text Section Styles */
.intro_text_section {
    padding: 80px max(24px, calc((100vw - var(--container-width)) / 2));
    background: var(--bg-color);
}

.intro_text_container {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.intro_text_content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 30px auto 0;
    max-width: 100%;
}

.intro_text_content p {
    margin-bottom: 20px;
}

.intro_text_content p:last-child {
    margin-bottom: 0;
}

.intro_text_action {
    margin-top: 36px;
}

.theme_btn_gold {
    padding: 16px 32px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    border-radius: 4px;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    text-transform: capitalize;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(202, 138, 4, 0.2);
}

.theme_btn_gold:hover,
.theme_btn_gold:focus-visible {
    background: var(--accent-color);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(250, 204, 21, 0.3);
}

.theme_btn_gold .fa-arrow-circle-right {
    font-size: 14px;
}




