/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #20405B;
    --secondary: #277AB2;
    --accent: #277AB2;
    --light: #F8FAFC;
    --dark: #020617;
    --white: #FFFFFF;
    --footer: #20405B;
}

body {
    font-family: "Roboto", sans-serif;
    color: var(--dark);
    line-height: 1.6;
    /* overflow-x: hidden; */
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

a {
  text-decoration: none;
    &:hover {
        color: var(--linkhover);
    }
}

img {
  width: 100%;
  height: auto;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-family: "Roboto", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
    letter-spacing: 2px;
}

.navbar-brand img {
    width: auto;
    height: 60px;
}

.brand-text {
    color: var(--accent);
}

.nav-link {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    color: var(--primary) !important;
    padding: 0.5rem 1.2rem !important;
    position: relative;
    font-size: 18px;
}

.navbar .nav-item {
    margin: 0 15px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--accent);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 60%;
}
.dropdown-item:hover,
.dropdown-item:active {
    background-color: var(--secondary);
    color: var(--white);
}
.navbar-toggler { background: var(--primary);}
.offcanvas {height: 100vh;}
.offcanvas .offcanvas-body {align-items: center;}
.offcanvas.offcanvas-end {width: 90%;}
.offcanvas.text-bg-dark {background-color: var(--topnavbar-bg) !important;}
.offcanvas.show.text-bg-dark {background-color: #ffffff !important;}
.offcanvas {height: 100vh;}
.offcanvas.offcanvas-end {width: 90%;}
.offcanvas.text-bg-dark {background-color: var(--topnavbar-bg) !important;}
.offcanvas.show.text-bg-dark {background-color: #ffffff !important;}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgba(10, 25, 47, 0.75),rgba(10, 25, 47, 0.55));
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--light);
    max-width: 600px;
    margin-bottom: 2rem;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background-color: var(--light);
}

.stat-card {
    padding: 2rem;
}

.stat-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.stat-label {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 1px;
}
.stat-card:hover .stat-number {
    transform: scale(1.1);
}

/* Section Titles */
.section-title {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}
.section-sub-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 2rem;
}

/* Services Preview Section */
.services-preview-section {
    padding: 3rem 0 5rem 0;
    background-color: var(--white);
}

.service-card {
    padding: 2.5rem;
    background: var(--white);
    border: 2px solid var(--light);
    height: 100%;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--accent);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-icon .fas { color: var(--white);}

/* MRL Elevator Feature Cards */
.product-feature-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(2, 6, 23, 0.08);
    box-shadow: 0 1px 10px rgba(2, 6, 23, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.product-feature-card:hover {transform: translateY(-10px);}

.product-feature-card .product-feature-media {
    position: relative;
}

.product-feature-card .product-feature-media img {
    height: 250px;
    object-fit: cover;
    object-position: center;
}

.product-feature-card .product-feature-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(32, 64, 91, 0.9);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.product-feature-card .product-feature-body {
    padding: 1.5rem;
}

.product-feature-card .product-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.product-feature-card .product-feature-icon .fas { font-size: 27px; color: var(--white);}

.product-feature-card .product-feature-title {
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: normal;
}

.product-feature-card .product-feature-text {
    color: var(--dark);
}

.product-feature-card .product-feature-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--secondary);
}

.product-feature-card .product-feature-meta i {
    color: var(--accent);
    margin-right: 6px;
}

.product-glow-card {
    height: 100%;
    padding: 1.75rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(39, 122, 178, 0.14), rgba(32, 64, 91, 0.08));
    border: 1px solid rgba(39, 122, 178, 0.2);
    box-shadow: 0 4px 10px rgba(32, 64, 91, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.product-glow-card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -60px;
    width: 140px;
    height: 140px;
    background: rgba(39, 122, 178, 0.18);
    border-radius: 50%;
}

.product-glow-card .product-glow-header {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1rem;
}

.product-glow-card .product-glow-icon {
    width: 52px;
    height: 52px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(39, 122, 178, 0.35);
}

.product-glow-card .product-glow-icon .fas { color: var(--white); font-size: 27px;}

.product-glow-card .product-glow-title {
    margin: 0;
    color: var(--primary);
}

.product-glow-card  .product-glow-text {
    color: var(--dark);
    margin-bottom: 1rem;
}

.product-glow-card  .product-glow-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.product-glow-card  .product-glow-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.product-glow-card  .product-glow-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.product-step-card {
    height: 100%;
    padding: 1.75rem;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid rgba(2, 6, 23, 0.08);
    box-shadow: 0 1px 5px rgba(2, 6, 23, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.product-step-card:hover {transform: translateY(-10px);}

.product-step-card .product-step-number {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(39, 122, 178, 0.15);
}

.product-step-card .product-step-title {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.product-step-card .product-step-text {
    color: var(--dark);
    margin-bottom: 1rem;
}

.product-step-card .product-step-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-tag {
    background: var(--light);
    color: var(--primary);
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 0.8rem;
    border: 1px solid rgba(32, 64, 91, 0.1);
}

.product-banner {
    max-height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 4px 7px rgba(2, 6, 23, 0.12);
}

.service-card-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card-text {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 77px;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--accent);
}

.about-area { position: relative; padding-top: 60px; padding-bottom: 60px;}

.about-area .fixed-shape {
    position: absolute;
    right: 0;
    top: 0;
    width: 30%;
    text-align: right;
}

.about-area .fixed-shape img {width: 75%;}

.about-area .thumb-left {
    padding-right: 35px;
}
.about-area .thumb-left .thumb {
    position: relative;
    z-index: 1;
    text-align: right;
}
.about-area .thumb-left .thumb img {
    width: 80%;
}
.about-area .thumb-left .thumb .experiecne {
    text-align: left;
    position: absolute;
    left: 0;
    bottom: 50px;
    background: var(--primary);
    padding: 50px 30px;
    border: 5px solid #ffffff;
    max-width: 250px;
}
.about-area .thumb-left .thumb .experiecne h2 {
    font-size: 70px;
    font-weight: 700;
    line-height: 55px;
    color: #ffffff;
}
.about-area .thumb-left .thumb .experiecne h5 {
    margin: 0;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
}
.about-area .thumb-left .thumb::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 300px;
    width: 300px;
    background: url(../images/pattern.png);
    background-repeat: no-repeat;
    background-position: left top;
    opacity: 0.4;
    z-index: -1;
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 0;
    background-color: var(--light);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}


.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0.6rem 0;
    margin: 0;
    line-height: 1.6;
}

.feature-list li i {
    flex-shrink: 0;
    font-size: 1.2rem;
    color: var(--accent);
    width: 24px; 
    margin-top: 4px;
}

.feature-list li span {
    flex: 1; 
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--white);
    color: var(--primary);
}

.cta-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.8rem 2rem;
    border: none;
    transition: all 0.3s ease;
}

.btn-theme {
    background-color: var(--secondary);
    color: var(--white) !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-theme::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 0;
    width: 0;
    transition: all 0.25s ease-in-out;
    background: var(--dark);
    z-index: -1;
}
.btn-theme:hover::after {
    width: 100%;
    height: 100%;
}

.btn-accent {
    background-color: var(--accent);
    color: var(--white);
}

.btn-accent:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(75, 219, 245, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: var(--white);
}
.btn-outline-primary:active {
    background-color: var(--primary);
    color: var(--white);
}
.btn-outline-primary:focus {
    background-color: var(--primary);
    color: var(--white);
}

/* Footer */
.footer {
    background-color: var(--footer);
    color: var(--light);
    padding: 4rem 0 1rem;
}

.footer-title {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.footer-text {
    color: var(--light);
    margin-bottom: 1rem;
}

.footer-heading {
    font-family: "Roboto", sans-serif;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-contact li i {
    flex-shrink: 0;
    width: 22px;
    font-size: 1.1rem;
    color: var(--accent);
    margin-top: 3px; 
}

.footer-contact li span,
.footer-contact li a {
    color: var(--light);
    text-decoration: none;
}

.footer-contact li a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-copyright {
    color: var(--white);
    font-size: 16px;
    margin: 0;
}
.footer-copyright a {color: var(--white); text-decoration: none;}
.footer-copyright a:hover {color: var(--white); text-decoration: underline;}
.footer-copyright a:focus {color: var(--white); text-decoration: underline;}

.footer-logo img { width: auto; height: 60px;}

/* Page Header */
.page-header {
    position: relative;
    overflow: hidden;
    background-image: url("https://www.tkelevator.com/media/cn/modernization_ap/enta100_2/enta100_gl/lobby_view_01_copy_image_w1335.webp");
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    padding: 6rem 0 4rem;
    margin-top: 0;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 24, 38, 0.78), rgba(20, 46, 66, 0.68));
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.75);
}

.breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}
.breadcrumb-item a:hover { color: var(--secondary);}
.breadcrumb-item a:focus { color: var(--secondary);}

.breadcrumb-item.active {
    color: var(--white);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

/* About Page Sections */
.company-story-section,
.mission-vision-section,
.values-section,
.team-section,
.certifications-section {
    padding: 5rem 0;
}

.company-story-section {
    background-color: var(--white);
}

.mission-vision-section {
    background-color: var(--light);
}

.mission-card {
    background: var(--white);
    padding: 3rem;
    height: 100%;
    border-left: 4px solid var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mission-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.mission-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.values-section {
    background-color: var(--white);
}

.value-card {
    padding: 2rem;
    background: var(--light);
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.value-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.team-section {
    background-color: var(--light);
}

.team-card {
    background: var(--white);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-image {
    width: 120px;
    height: 120px;
    background-color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: var(--secondary);
}

.team-name {
    color: var(--primary);
    margin-bottom: 0.5rem;
     font-size: 1.1rem;
}

.team-position {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.team-bio {
    color: var(--secondary);
    font-size: 0.95rem;
}

.certifications-section {
    background-color: var(--light);
}

.cert-badge {
    padding: 2rem;
    background: var(--white);
    border: 1px solid rgba(32, 64, 91, 0.12);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    background: rgba(39, 122, 178, 0.08);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cert-badge i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.cert-badge p {
    margin: 0;
    font-weight: 600;
    color: var(--primary);
}

/* Services Page */
.main-services-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background-color: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.additional-services-section {
    padding: 5rem 0;
    background-color: var(--light);
}

.additional-service-card {
    background: var(--white);
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.additional-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.additional-service-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.additional-service-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Maintenance Plans */
.maintenance-plans-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--light);
    padding: 3rem 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border-color: var(--accent);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.plan-name {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.plan-price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 2rem;
    color: var(--secondary);
    vertical-align: top;
}

.amount {
    font-size: 4rem;
    color: var(--primary);
    font-weight: 700;
}

.period {
    font-size: 1.2rem;
    color: var(--secondary);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.plan-features li {
    padding: 0.8rem 0;
    color: var(--dark);
    border-bottom: 1px solid var(--light);
}

.plan-features i {
    margin-right: 0.8rem;
    width: 20px;
}

.plan-features .fa-check {
    color: var(--accent);
}

.plan-features .fa-times {
    color: var(--secondary);
}

/* Contact Page */
.contact-info-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.contact-info-card {
    background: var(--light);
    padding: 3rem 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    border-radius: 5px;
}

.contact-info-icon .fas { color: var(--white);}

.contact-info-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-form-section {
    padding: 5rem 0;
    background-color: var(--light);
}
.contact-form-section label { font-size: 15px; margin-bottom: 4px; font-weight: 700; color: var(--primary);}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid var(--light);
    padding: 0.8rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.business-hours {
    background: var(--white);
    padding: 2rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light);
}

.hours-row.emergency {
    border-bottom: none;
    background-color: var(--accent);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
}

.hours-row.emergency .day,
.hours-row.emergency .time {
    color: var(--white);
    font-weight: 700;
}

.day {
    font-weight: 600;
    color: var(--primary);
}

.time {
    color: var(--secondary);
}

.social-links-large {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link-large {
    width: 60px;
    height: 60px;
    background-color: var(--light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link-large:hover {
    background-color: var(--accent);
    color: var(--primary);
    transform: translateY(-5px);
}

.map-section {
    margin-top: 3rem;
}

.map-container {
    width: 100%;
    height: 450px;
    filter: grayscale(20%);
}
.clients-area { background: var(--secondary); width: 100%; position: relative; min-height: 300px;justify-content: center;align-items: center;display: flex;}
.clients-area h3 { margin: 0;}
.clients-area .left-info { z-index: 1; color: var(--white); justify-content: center; display: flex; align-items: center;}
.clients-area .client-box { background: #fefefe; padding: 10px; border-radius: 5px;}
.clients-area::after { content: ''; position: absolute; left: -15%; top: 0; height: 100%;width: 63%; content: "";background: var(--primary); z-index: 0; transform: skewX(-10deg);} 


.faq-section {
    background: #f7f9fc;
}
.faq-section .left-panel {
    min-height: 60vh;
    position: relative;
    overflow: hidden;
}
.faq-section .right-panel {
    padding: 3.25rem 3.5rem;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(2, 6, 23, 0.12);
}

/* Circle image that overlaps the split */
.faq-section .safety-image-wrapper {
    width: 70%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.faq-section .safety-image-wrapper img {
	width: 100%;
	object-fit: cover;
	display: block;
}

.faq-section .section-sub-title {
    color: var(--primary);
}

.custom-accordion {
    min-height: 320px;
    max-height: 450px;
    overflow-y: auto;
    padding-right: 6px;
}

.custom-accordion::-webkit-scrollbar {
    width: 6px;
}

.custom-accordion::-webkit-scrollbar-thumb {
    background: rgba(32, 64, 91, 0.25);
    border-radius: 999px;
}

.custom-accordion .accordion-item {
    border: 1px solid #e8eef4;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
}
.custom-accordion .accordion-button {
    background: #ffffff;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 1.1rem 1.6rem;
    box-shadow: none;
    color: #1f2937;
    font-weight: 600;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.custom-accordion .accordion-button:hover {
    transform: none;
    box-shadow: none;
}
.custom-accordion .accordion-button:not(.collapsed) {
    background: var(--secondary);
    color: #ffffff;
    border-color: var(--secondary);
}
.custom-accordion .accordion-button:focus {
	box-shadow: none;
}
.custom-accordion .accordion-button::after {
	/* override bootstrap icon with plus/minus */
	font-family: inherit;
	content: "-";
	width: 1.3rem;
	height: 1.3rem;
	display: inline-flex;
	justify-content: center;
	align-items: center;
    background: rgba(39, 122, 178, 0.12);
    color: var(--secondary);
	border-radius: 50%;
	font-weight: 700;
	margin-left: 1rem;
	transform: none;
}
.custom-accordion .accordion-button:not(.collapsed)::after {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}
.custom-accordion .accordion-button.collapsed::after {
	content: "+";
}
.custom-accordion .accordion-body {
    padding: 0.95rem 1.6rem 1.5rem;
    color: #2c3e50;
    background: #ffffff;
    border-top: 1px solid #e8eef4;
    border-radius: 0 0 18px 18px;
    box-shadow: none;
}

/* Responsive adjustments */
@media (max-width: 768x) {
	.faq-section .left-panel {
		min-height: 220px;
	}
	.circle-image-wrapper {
		width: 200px;
		height: 200px;
		transform: translateX(0) translateY(-40%);
		margin: 0 auto;
	}
	.right-panel { padding: 2rem 1rem; }
	.faq-title { text-align: center; margin-top: 2rem; }
	.row.gx-0 { align-items: start; }
	/* stack columns: image on top */
	.col-md-5, .col-md-7 { flex: 0 0 100%; max-width: 100%; }
    .custom-accordion {
        max-height: 420px;
    }
}


/******************************************************************** Responsive **********************************************************************/

@media (max-width: 1199px) {
   
    .container {max-width: 100%;}
}
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }

    .navbar .nav-item {
        margin: 0 8px;
    }
    .nav-link:hover::before,
    .nav-link.active::before {
        width: 100%;
}
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    .navbar .navbar-container {max-width: 90%;}

    .navbar .nav-item {
        margin: 0;
    }

    .nav-link {
        font-size: 16px;
    }

    .clients-area::after { content: ''; position: absolute; left: -15%; top: 0; height: 100%;width: 63%; content: "";background: var(--primary); } 

    .all-services-section .service-card img {
        height: 200px;
    }

    .faq-section .left-panel {
		min-height: 220px;
        .faq-section .safety-image-wrapper { width: 100%;}
	}
	.circle-image-wrapper {
		width: 200px;
		height: 200px;
		transform: translateX(0) translateY(-40%);
		margin: 0 auto;
	}
	.right-panel { padding: 2rem 1rem; }
	.faq-title { text-align: center; margin-top: 2rem; }
	.row.gx-0 { align-items: start; }
	/* stack columns: image on top */
	.col-md-5, .col-md-7 { flex: 0 0 100%; max-width: 100%; }
}

@media (max-width: 576px) {
    .hero-section {
        height: 80vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .stats-section,
    .services-preview-section,
    .why-choose-section,
    .cta-section {
        padding: 3rem 0;
    }
}
