:root {
    --primary: #2E86AB;
    --primary-dark: #1d6a8a;
    --primary-light: #e8f4f8;
    --secondary: #A23B72;
    --secondary-dark: #7d2c57;
    --accent: #F18F01;
    --accent-dark: #c47300;
    --dark: #1A2B3C;
    --dark-2: #253545;
    --text: #374151;
    --text-light: #6B7280;
    --bg-light: #F4F7FA;
    --bg-white: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, .12);
    --shadow-lg: 0 20px 48px rgba(0, 0, 0, .16);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: 0.3s ease;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--bg-white);
    line-height: 1.7;
    font-size: 1rem;
    overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.25
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition)
}

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px
}

.section-padding {
    padding: 96px 0
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgb(241 143 1 / .1);
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 12px
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto
}

.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

#mainNav {
    background: var(--dark);
    padding: 12px 0;
    transition: box-shadow var(--transition), padding var(--transition), background var(--transition);
    z-index: 1050
}

#mainNav.scrolled {
    background: rgb(26 43 60 / .97);
    box-shadow: 0 4px 24px rgb(0 0 0 / .25);
    padding: 8px 0;
    backdrop-filter: blur(12px)
}

.brand-icon {
    width: 38px;
    height: 38px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .9rem;
    flex-shrink: 0;
    transition: background var(--transition)
}

.navbar-brand:hover .brand-icon {
    background: var(--accent)
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.01em
}

.brand-accent {
    color: var(--accent)
}

.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: .9rem;
    color: rgb(255 255 255 / .8) !important;
    padding: 8px 14px !important;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    position: relative
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff !important;
    background: rgb(255 255 255 / .1)
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px
}

.btn-cta-nav {
    background: var(--primary);
    color: #fff !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .85rem;
    padding: 9px 20px !important;
    border-radius: var(--radius-sm);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition)
}

.btn-cta-nav:hover {
    background: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgb(241 143 1 / .4);
    color: #fff !important
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, #1e3a5f 100%);
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232E86AB' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none
}

.hero-particles span {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    opacity: .15;
    animation: floatParticle 8s ease-in-out infinite;
    pointer-events: none
}

.hero-particles span:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 5%;
    animation-delay: 0s
}

.hero-particles span:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 20%;
    left: 85%;
    background: var(--accent);
    animation-delay: 1s
}

.hero-particles span:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 70%;
    left: 10%;
    animation-delay: 2s
}

.hero-particles span:nth-child(4) {
    width: 25px;
    height: 25px;
    top: 80%;
    left: 75%;
    background: var(--secondary);
    animation-delay: 3s
}

.hero-particles span:nth-child(5) {
    width: 50px;
    height: 50px;
    top: 40%;
    left: 90%;
    animation-delay: .5s
}

.hero-particles span:nth-child(6) {
    width: 30px;
    height: 30px;
    top: 60%;
    left: 50%;
    background: var(--accent);
    animation-delay: 2.5s
}

.hero-particles span:nth-child(7) {
    width: 70px;
    height: 70px;
    top: 5%;
    left: 60%;
    animation-delay: 1.5s
}

.hero-particles span:nth-child(8) {
    width: 20px;
    height: 20px;
    top: 90%;
    left: 30%;
    background: var(--secondary);
    animation-delay: 4s
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: .15
    }

    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: .25
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 0 60px
}

.hero-eyebrow {
    font-family: var(--font-heading);
    font-size: .85rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px
}

.hero-headline {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -.02em
}

.hero-headline .highlight {
    color: var(--accent);
    position: relative
}

.hero-headline .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    opacity: .5
}

.hero-subheadline {
    font-size: 1.1rem;
    color: rgb(255 255 255 / .75);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.7
}

.btn-hero-primary {
    background: var(--primary);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--primary);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(255 255 255 / .1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition)
}

.btn-hero-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgb(241 143 1 / .4);
    color: #fff
}

.btn-hero-primary:hover::before {
    transform: scaleX(1)
}

.btn-hero-secondary {
    background: #fff0;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: 2px solid rgb(255 255 255 / .4);
    transition: border-color var(--transition), background var(--transition), transform var(--transition)
}

.btn-hero-secondary:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px)
}

.hero-stats {
    border-top: 1px solid rgb(255 255 255 / .1);
    padding-top: 32px
}

.stat-item {
    text-align: center
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1
}

.stat-number sup {
    font-size: .9rem
}

.stat-label {
    display: block;
    font-size: .8rem;
    color: rgb(255 255 255 / .6);
    font-weight: 500;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.hero-visual {
    position: relative;
    width: 380px;
    height: 380px
}

.hero-circle-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    animation: rotateSlow 20s linear infinite
}

.ring-1 {
    width: 360px;
    height: 360px;
    top: 10px;
    left: 10px;
    border-color: rgb(46 134 171 / .3)
}

.ring-2 {
    width: 310px;
    height: 310px;
    top: 35px;
    left: 35px;
    border-color: rgb(241 143 1 / .2);
    animation-direction: reverse;
    animation-duration: 15s
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.hero-img-wrapper {
    position: absolute;
    width: 260px;
    height: 260px;
    top: 60px;
    left: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--primary);
    box-shadow: 0 0 0 8px rgb(46 134 171 / .2)
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-badge {
    position: absolute;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-family: var(--font-heading);
    font-size: .8rem;
    font-weight: 700;
    color: var(--dark);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap
}

.hero-badge i {
    color: var(--primary)
}

.badge-top {
    top: 20px;
    right: -20px
}

.badge-bottom {
    bottom: 40px;
    left: -20px
}

.badge-bottom i {
    color: var(--accent)
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0
}

.hero-wave svg {
    display: block
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md)
}

.service-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.service-card:hover .service-img {
    transform: scale(1.08)
}

.service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(26 43 60 / .8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition)
}

.service-img-overlay i {
    font-size: 2rem;
    color: var(--accent)
}

.service-card:hover .service-img-overlay {
    opacity: 1
}

.service-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.service-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px
}

.service-desc {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px
}

.service-link {
    font-family: var(--font-heading);
    font-size: .85rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color var(--transition), gap var(--transition);
    text-decoration: none
}

.service-link:hover {
    color: var(--accent);
    gap: 8px
}

.service-link i {
    font-size: .7rem
}

.service-card--accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    border: none
}

.service-body--center {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 28px
}

.service-all-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px
}

.service-card--accent .service-title {
    color: #fff
}

.service-card--accent .service-desc {
    color: rgb(255 255 255 / .75)
}

.btn-outline-light {
    border: 2px solid rgb(255 255 255 / .6);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .85rem;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), border-color var(--transition)
}

.btn-outline-light:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff
}

.cta-banner {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    overflow: hidden
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.cta-banner--alt {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%)
}

.cta-banner-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px
}

.cta-banner-text {
    font-size: 1.05rem;
    color: rgb(255 255 255 / .8);
    margin-bottom: 32px
}

.btn-cta-white {
    background: #fff;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: .95rem;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition)
}

.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgb(0 0 0 / .2);
    background: var(--accent);
    color: #fff
}

.btn-cta-outline {
    background: #fff0;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: .95rem;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    border: 2px solid rgb(255 255 255 / .6);
    transition: border-color var(--transition), background var(--transition), transform var(--transition)
}

.btn-cta-outline:hover {
    border-color: #fff;
    background: rgb(255 255 255 / .15);
    color: #fff;
    transform: translateY(-2px)
}

.about-img-grid {
    position: relative;
    height: 460px
}

.about-img {
    border-radius: var(--radius-md);
    object-fit: cover
}

.about-img--main {
    width: 80%;
    height: 380px;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: var(--shadow-lg)
}

.about-img--secondary {
    width: 55%;
    height: 240px;
    position: absolute;
    bottom: 0;
    right: 0;
    border: 6px solid var(--bg-white);
    box-shadow: var(--shadow-md)
}

.about-img-badge {
    position: absolute;
    bottom: 60px;
    left: 20px;
    background: var(--accent);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    color: #fff;
    z-index: 2;
    box-shadow: var(--shadow-md)
}

.badge-year {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1
}

.badge-desc {
    font-size: .75rem;
    font-weight: 600;
    opacity: .9;
    letter-spacing: .05em
}

.about-text {
    color: var(--text);
    margin-bottom: 16px
}

.mission-box {
    background: var(--primary-light);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 20px 24px
}

.mission-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px
}

.mission-text {
    font-size: .9rem;
    color: var(--text);
    margin: 0
}

.feature-chip {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center
}

.feature-chip i {
    font-size: .75rem
}

.team-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition)
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md)
}

.team-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 3px solid var(--primary)
}

.team-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px
}

.team-role {
    font-size: .82rem;
    color: var(--text-light);
    margin: 0
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.faq-item {
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-sm) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm)
}

.faq-btn {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .95rem;
    color: var(--dark) !important;
    background: var(--bg-white) !important;
    padding: 20px 24px !important;
    transition: background var(--transition), color var(--transition)
}

.faq-btn:not(.collapsed) {
    background: var(--primary-light) !important;
    color: var(--primary) !important
}

.faq-btn::after {
    filter: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232E86AB'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E")
}

.faq-btn.collapsed::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231A2B3C'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E")
}

.accordion-collapse {
    transition: all .3s ease
}

.faq-body {
    font-size: .92rem;
    color: var(--text);
    line-height: 1.75;
    padding: 20px 24px !important;
    background: var(--bg-white);
    border-top: 1px solid var(--border)
}

.testimonials-section {
    background: var(--bg-light)
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md)
}

.testimonial-card--featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: #fff0
}

.testimonial-card--featured .testimonial-text,
.testimonial-card--featured .customer-name {
    color: #fff
}

.testimonial-card--featured .service-date {
    color: rgb(255 255 255 / .7)
}

.testimonial-card--featured .stars {
    color: gold
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-family: var(--font-heading);
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: .05em
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: var(--accent)
}

.stars svg {
    width: 18px;
    height: 18px
}

.testimonial-text {
    font-size: .9rem;
    color: var(--text);
    line-height: 1.75;
    font-style: italic;
    flex: 1;
    margin-bottom: 24px;
    position: relative
}

.testimonial-text::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--primary);
    opacity: .15;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
    line-height: 1
}

.testimonial-card--featured .testimonial-text::before {
    color: rgb(255 255 255 / .3)
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 14px
}

.customer-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: .85rem;
    flex-shrink: 0;
    border: 2px solid var(--primary)
}

.customer-avatar--accent {
    background: rgb(241 143 1 / .15);
    color: var(--accent);
    border-color: var(--accent)
}

.customer-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: .9rem;
    color: var(--dark);
    display: block;
    font-style: normal
}

.service-date {
    font-size: .78rem;
    color: var(--text-light);
    margin: 2px 0 0
}

.testimonial-card--featured .customer-avatar {
    background: rgb(255 255 255 / .2);
    color: #fff;
    border-color: rgb(255 255 255 / .5)
}

.contact-form-wrap {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border)
}

.form-label {
    font-family: var(--font-heading);
    font-size: .85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px
}

.mk-input {
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius-sm) !important;
    padding: 12px 16px !important;
    font-size: .9rem !important;
    color: var(--text) !important;
    background: var(--bg-light) !important;
    transition: border-color var(--transition), box-shadow var(--transition) !important
}

.mk-input:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgb(46 134 171 / .15) !important;
    background: var(--bg-white) !important;
    outline: none !important
}

.mk-input.is-invalid {
    border-color: #dc3545 !important
}

.mk-input.is-valid {
    border-color: #28a745 !important
}

.btn-submit {
    background: var(--primary);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--primary);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition)
}

.btn-submit:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgb(241 143 1 / .35);
    color: #fff
}

#formMessage .alert {
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .9rem
}

.contact-info-wrap {
    padding-left: 8px
}

.contact-info-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border)
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px
}

.info-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0
}

.contact-info-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: .85rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px
}

.contact-info-item p {
    font-size: .88rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6
}

.contact-link {
    color: var(--primary);
    font-weight: 600
}

.contact-link:hover {
    color: var(--accent)
}

.map-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border)
}

.map-wrap iframe {
    display: block
}

.site-footer {
    background: var(--dark);
    color: rgb(255 255 255 / .7)
}

.footer-top {
    padding: 72px 0 48px
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3
}

.footer-brand-accent {
    color: var(--accent)
}

.footer-desc {
    font-size: .87rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 300px
}

.social-links {
    display: flex;
    gap: 10px
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgb(255 255 255 / .08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255 255 255 / .7);
    font-size: .9rem;
    transition: background var(--transition), color var(--transition), transform var(--transition)
}

.social-link:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px)
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 20px
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer-links a {
    font-size: .87rem;
    color: rgb(255 255 255 / .6);
    transition: color var(--transition), padding-left var(--transition);
    display: flex;
    align-items: center;
    gap: 8px
}

.footer-links a::before {
    content: '›';
    color: var(--accent);
    font-size: 1rem;
    line-height: 1
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px
}

.footer-contact-info {
    font-size: .87rem;
    font-style: normal;
    line-height: 1.8
}

.footer-contact-info p {
    margin-bottom: 10px
}

.footer-contact-info a {
    color: rgb(255 255 255 / .6)
}

.footer-contact-info a:hover {
    color: var(--accent)
}

.footer-contact-info i {
    color: var(--primary);
    width: 16px
}

.footer-bottom {
    background: rgb(0 0 0 / .25);
    padding: 20px 0;
    font-size: .82rem;
    color: rgb(255 255 255 / .45);
    border-top: 1px solid rgb(255 255 255 / .08)
}

.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition), transform var(--transition), background var(--transition);
    z-index: 999
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0)
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-3px)
}

@media (max-width:991.98px) {
    .section-padding {
        padding: 72px 0
    }

    .about-img-grid {
        height: 320px;
        margin-bottom: 40px
    }

    .about-img--main {
        height: 260px;
        width: 75%
    }

    .about-img--secondary {
        height: 180px;
        width: 50%
    }
}

@media (max-width:767.98px) {
    .section-padding {
        padding: 56px 0
    }

    .hero-content {
        padding: 60px 20px
    }

    .hero-visual {
        display: none
    }

    .contact-form-wrap {
        padding: 28px 20px
    }

    .footer-top {
        padding: 48px 0 32px
    }

    .back-to-top {
        bottom: 20px;
        right: 20px
    }

    .about-img-grid {
        height: auto;
        margin-bottom: 0
    }

    .about-img--main {
        position: relative;
        width: 100%;
        height: 220px
    }

    .about-img--secondary {
        display: none
    }

    .about-img-badge {
        bottom: 20px;
        left: 16px
    }
}

@media (max-width:575.98px) {
    .hero-cta-group {
        flex-direction: column
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center
    }

    .hero-stats {
        gap: 24px
    }

    .testimonial-card {
        padding: 24px
    }

    .contact-form-wrap {
        padding: 24px 16px
    }
}

.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important
    }

    html {
        scroll-behavior: auto
    }
}

.page-hero {
    position: relative;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 55%, #1e3a5f 100%);
    padding: 100px 0 60px;
    overflow: hidden
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232E86AB' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.page-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgb(46 134 171 / .06) 1px, transparent 1px), linear-gradient(90deg, rgb(46 134 171 / .06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none
}

.page-hero-content {
    position: relative;
    z-index: 2
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0 0 24px;
    font-size: .82rem
}

.breadcrumb-list li {
    color: rgb(255 255 255 / .5)
}

.breadcrumb-list li i {
    font-size: .65rem
}

.breadcrumb-list a {
    color: rgb(255 255 255 / .65);
    text-decoration: none;
    transition: color var(--transition)
}

.breadcrumb-list a:hover {
    color: var(--accent)
}

.breadcrumb-list [aria-current="page"] {
    color: var(--accent);
    font-weight: 600
}

.page-hero-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1.15;
    margin-bottom: 16px
}

.page-hero-accent {
    color: var(--accent)
}

.page-hero-subtitle {
    font-size: 1rem;
    color: rgb(255 255 255 / .7);
    max-width: 560px;
    line-height: 1.6
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgb(255 255 255 / .1);
    border: 1px solid rgb(255 255 255 / .18);
    color: rgb(255 255 255 / .85);
    font-family: var(--font-heading);
    font-size: .78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    backdrop-filter: blur(6px);
    letter-spacing: .02em
}

.trust-pill i {
    color: var(--accent);
    font-size: .75rem
}

.page-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0
}

.page-hero-wave svg {
    display: block
}

.filter-section {
    padding: 24px 0;
    border-bottom: 1px solid var(--border)
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: .82rem;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: .02em
}

.filter-btn i {
    font-size: .75rem
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
    transform: translateY(-1px)
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgb(46 134 171 / .35)
}

.stats-bar {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 28px 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    margin-bottom: 40px
}

.sbar-item {
    text-align: center
}

.sbar-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1
}

.sbar-num sup {
    font-size: 1rem;
    vertical-align: super
}

.sbar-label {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 5px
}

.sbar-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
    flex-shrink: 0
}

@keyframes shimmer {
    0% {
        background-position: -800px 0
    }

    100% {
        background-position: 800px 0
    }
}

.skeleton-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border)
}

.sk-img {
    height: 200px;
    background: linear-gradient(90deg, #e8ecf0 25%, #f4f6f8 50%, #e8ecf0 75%);
    background-size: 800px 100%;
    animation: shimmer 1.4s ease-in-out infinite
}

.sk-body {
    padding: 24px
}

.sk-line {
    height: 14px;
    border-radius: 7px;
    background: linear-gradient(90deg, #e8ecf0 25%, #f4f6f8 50%, #e8ecf0 75%);
    background-size: 800px 100%;
    animation: shimmer 1.4s ease-in-out infinite;
    margin-bottom: 12px
}

.sk-title {
    height: 20px;
    width: 70%
}

.sk-short {
    width: 45%
}

.svc-card-inner {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .35s ease, box-shadow .35s ease;
    position: relative
}

.svc-card-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgb(0 0 0 / .14)
}

.svc-ribbon {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-heading);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    z-index: 3;
    pointer-events: none
}

.svc-img-wrap {
    position: relative;
    height: 210px;
    overflow: hidden
}

.svc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.svc-card-inner:hover .svc-img {
    transform: scale(1.07)
}

.svc-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(26 43 60 / .85) 0%, transparent 55%);
    opacity: 0;
    transition: opacity .3s ease;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    z-index: 2
}

.svc-card-inner:hover .svc-img-overlay {
    opacity: 1
}

.svc-img-icon {
    font-size: 2rem;
    color: var(--accent)
}

.svc-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.svc-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px
}

.svc-card-desc {
    font-size: .875rem;
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.svc-price-range {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 18px
}

.svc-price-from {
    font-size: .72rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: .05em
}

.svc-price-value {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary)
}

.svc-price-unit {
    font-size: .75rem;
    color: var(--text-light)
}

.svc-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px
}

.svc-feature-chip {
    font-size: .72rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-light);
    padding: 3px 10px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap
}

.svc-feature-chip i {
    font-size: .6rem
}

.svc-card-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto
}

.btn-svc-detail {
    background: var(--primary);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .82rem;
    padding: 10px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--primary);
    text-align: center;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition)
}

.btn-svc-detail:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgb(46 134 171 / .35)
}

.btn-svc-call {
    background: #fff0;
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .82rem;
    padding: 10px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--accent);
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: background var(--transition), color var(--transition), transform var(--transition)
}

.btn-svc-call:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-1px)
}

.svc-col {
    transition: opacity .3s ease, transform .3s ease
}

.svc-col.hidden {
    opacity: 0;
    transform: scale(.95);
    pointer-events: none;
    height: 0;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light)
}

.no-results i {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    color: var(--border)
}

.no-results p {
    font-size: 1rem
}

.reset-filter-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    padding: 0
}

.svc-modal-content {
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    border: none !important
}

.svc-modal-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    padding: 28px 32px 24px;
    border-bottom: none;
    display: flex;
    align-items: flex-start
}

.svc-modal-tag {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-heading);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 8px
}

.svc-modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff !important;
    margin: 0
}

.svc-modal-body {
    padding: 28px 32px
}

.svc-modal-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md)
}

.svc-modal-price-box {
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    border: 1px solid var(--border)
}

.modal-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: .87rem;
    border-bottom: 1px dashed var(--border)
}

.modal-price-row:last-child {
    border-bottom: none
}

.modal-price-label {
    color: var(--text-light)
}

.modal-price-val {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary)
}

.btn-modal-call {
    background: var(--accent);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: .9rem;
    padding: 12px;
    border-radius: var(--radius-sm);
    border: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition)
}

.btn-modal-call:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgb(241 143 1 / .4)
}

.btn-modal-form {
    background: #fff0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .87rem;
    padding: 11px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--primary);
    transition: background var(--transition), color var(--transition)
}

.btn-modal-form:hover {
    background: var(--primary);
    color: #fff
}

.svc-modal-desc {
    font-size: .92rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 20px
}

.svc-modal-section {
    margin-bottom: 20px
}

.svc-modal-section h4 {
    font-family: var(--font-heading);
    font-size: .85rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-light)
}

.svc-faults-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 7px
}

.fault-tag {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .78rem;
    font-weight: 500;
    color: var(--text);
    padding: 4px 12px;
    display: flex;
    align-items: center;
    gap: 5px
}

.fault-tag i {
    color: var(--accent);
    font-size: .65rem
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 7px
}

.brand-tag {
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-size: .78rem;
    font-weight: 700;
    padding: 4px 12px;
    font-family: var(--font-heading)
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px
}

.includes-list li {
    font-size: .87rem;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 9px
}

.includes-list i {
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0;
    font-size: .75rem
}

.svc-modal-warranty {
    background: var(--primary-light);
    border: 1px solid rgb(46 134 171 / .2);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: .85rem;
    color: var(--primary);
    display: flex;
    align-items: center
}

.svc-modal-warranty i {
    color: var(--primary);
    flex-shrink: 0
}

.process-section {
    background: var(--bg-white)
}

.process-track {
    position: relative
}

.process-line {
    position: absolute;
    top: 72px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-light));
    z-index: 0
}

.process-step {
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1
}

.step-num {
    position: absolute;
    top: -10px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary-light);
    line-height: 1;
    pointer-events: none;
    user-select: none
}

.step-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-light);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: background var(--transition), color var(--transition), transform var(--transition)
}

.step-icon--accent {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff
}

.process-step:hover .step-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1)
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px
}

.step-desc {
    font-size: .87rem;
    color: var(--text-light);
    line-height: 1.65
}

.pricing-section {
    background: var(--bg-light)
}

.pricing-table-wrap {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border)
}

.pricing-table-header {
    display: grid;
    grid-template-columns: 2fr 3fr 1.5fr;
    background: var(--dark);
    padding: 14px 24px;
    gap: 16px
}

.pt-col {
    font-family: var(--font-heading);
    font-size: .78rem;
    font-weight: 700;
    color: rgb(255 255 255 / .6);
    text-transform: uppercase;
    letter-spacing: .07em
}

.pricing-row {
    display: grid;
    grid-template-columns: 2fr 3fr 1.5fr;
    padding: 14px 24px;
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition)
}

.pricing-row:last-child {
    border-bottom: none
}

.pricing-row:hover {
    background: var(--bg-light)
}

.pt-appliance-cell {
    font-family: var(--font-heading);
    font-size: .87rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px
}

.pt-appliance-cell i {
    color: var(--primary);
    width: 16px
}

.pt-fault-cell {
    font-size: .85rem;
    color: var(--text-light)
}

.pt-price-cell {
    font-family: var(--font-heading);
    font-size: .9rem;
    font-weight: 700;
    color: var(--primary)
}

.pricing-note {
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    padding: 14px 24px;
    font-size: .8rem;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 8px
}

.pricing-note i {
    color: var(--accent);
    margin-top: 1px;
    flex-shrink: 0
}

.value-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md)
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--primary);
    margin: 0 auto 18px
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px
}

.value-desc {
    font-size: .87rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0
}

.brands-section {
    background: var(--bg-white);
    padding: 72px 0
}

.brands-ticker-wrap {
    position: relative;
    overflow: hidden;
    margin-top: 32px
}

.brands-ticker-wrap::before,
.brands-ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none
}

.brands-ticker-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-white), transparent)
}

.brands-ticker-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-white), transparent)
}

.brands-ticker {
    overflow: hidden
}

.brands-track {
    display: flex;
    gap: 0;
    animation: tickerScroll 28s linear infinite;
    width: max-content
}

.brands-ticker-wrap:hover .brands-track {
    animation-play-state: paused
}

@keyframes tickerScroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 22px;
    margin: 0 10px;
    font-family: var(--font-heading);
    font-size: .85rem;
    font-weight: 700;
    color: var(--text-light);
    white-space: nowrap;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
    cursor: default
}

.brand-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light)
}

.brand-pill i {
    color: var(--accent);
    font-size: .75rem
}

@media (max-width:991.98px) {
    .page-hero {
        padding: 80px 0 48px
    }

    .process-line {
        display: none
    }

    .pricing-table-header,
    .pricing-row {
        grid-template-columns: 1.5fr 2fr 1fr
    }

    .stats-bar {
        padding: 20px 24px
    }
}

@media (max-width:767.98px) {
    .svc-modal-body {
        padding: 20px
    }

    .svc-modal-header {
        padding: 20px
    }

    .svc-modal-title {
        font-size: 1.25rem
    }

    .pricing-table-header {
        display: none
    }

    .pricing-row {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 14px 20px
    }

    .pt-appliance-cell {
        font-size: .9rem
    }

    .pt-fault-cell::before {
        content: 'Fault: ';
        font-weight: 600;
        color: var(--text)
    }

    .pt-price-cell::before {
        content: 'Cost: ';
        font-weight: 600;
        color: var(--text);
        font-family: var(--font-body)
    }

    .sbar-divider {
        display: none
    }

    .stats-bar {
        gap: 20px
    }

    .page-hero {
        padding: 70px 0 40px
    }

    .filter-bar {
        gap: 7px
    }

    .filter-btn {
        padding: 7px 13px;
        font-size: .78rem
    }
}

@media (max-width:575.98px) {
    .svc-card-footer {
        grid-template-columns: 1fr
    }

    .page-hero-trust {
        gap: 8px
    }

    .trust-pill {
        font-size: .72rem;
        padding: 5px 11px
    }
}

.page-hero {
    position: relative;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 55%, #1e3a5f 100%);
    padding: 100px 0 60px;
    overflow: hidden
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%232E86AB' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.page-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgb(46 134 171 / .06) 1px, transparent 1px), linear-gradient(90deg, rgb(46 134 171 / .06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none
}

.page-hero-content {
    position: relative;
    z-index: 2
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0 0 24px;
    font-size: .82rem
}

.breadcrumb-list li {
    color: rgb(255 255 255 / .5)
}

.breadcrumb-list li i {
    font-size: .65rem
}

.breadcrumb-list a {
    color: rgb(255 255 255 / .65);
    transition: color var(--transition)
}

.breadcrumb-list a:hover {
    color: var(--accent)
}

.breadcrumb-list [aria-current="page"] {
    color: var(--accent);
    font-weight: 600
}

.page-hero-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1.15;
    margin-bottom: 16px
}

.page-hero-accent {
    color: var(--accent)
}

.page-hero-subtitle {
    font-size: 1rem;
    color: rgb(255 255 255 / .7);
    max-width: 560px;
    line-height: 1.6
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgb(255 255 255 / .1);
    border: 1px solid rgb(255 255 255 / .18);
    color: rgb(255 255 255 / .85);
    font-family: var(--font-heading);
    font-size: .78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    backdrop-filter: blur(6px)
}

.trust-pill i {
    color: var(--accent);
    font-size: .75rem
}

.page-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0
}

.page-hero-wave svg {
    display: block
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: .82rem;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition)
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
    transform: translateY(-1px)
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgb(46 134 171 / .35)
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light)
}

.no-results i {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    color: var(--border)
}

.reset-filter-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    padding: 0
}

.value-card-about {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition)
}

.value-card-about:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md)
}

.value-card-about--accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: #fff0
}

.value-card-about--accent .vca-icon {
    background: rgb(255 255 255 / .15);
    color: #fff
}

.value-card-about--accent .vca-title,
.value-card-about--accent .vca-desc {
    color: #fff
}

.vca-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin: 0 auto 18px
}

.vca-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px
}

.vca-desc {
    font-size: .88rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-light), var(--primary), var(--primary-light));
    transform: translateX(-50%)
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
    margin-bottom: 48px;
    position: relative
}

.timeline-item--right {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 40px)
}

.tl-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: .85rem;
    padding: 6px 14px;
    border-radius: 100px;
    white-space: nowrap;
    z-index: 2
}

.tl-content {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    max-width: 320px;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition)
}

.tl-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md)
}

.tl-content--active {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgb(46 134 171 / .15)
}

.tl-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-heading);
    font-size: .72rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 100px;
    margin-bottom: 8px
}

.tl-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px
}

.tl-desc {
    font-size: .87rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0
}

.team-card-pro {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition)
}

.team-card-pro:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md)
}

.tcp-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden
}

.tcp-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform .4s ease
}

.team-card-pro:hover .tcp-img {
    transform: scale(1.06)
}

.tcp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(26 43 60 / .9) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity .3s ease
}

.tcp-overlay p {
    font-size: .82rem;
    color: rgb(255 255 255 / .9);
    margin: 0;
    line-height: 1.5
}

.team-card-pro:hover .tcp-overlay {
    opacity: 1
}

.tcp-body {
    padding: 20px
}

.tcp-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px
}

.tcp-role {
    font-size: .82rem;
    color: var(--text-light);
    margin-bottom: 12px
}

.tcp-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 5px
}

.tcp-skills span {
    font-size: .7rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-light);
    padding: 2px 9px;
    border-radius: 100px
}

.testi-card-about {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition)
}

.testi-card-about:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md)
}

.tca--featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: #fff0
}

.tca--featured .tca-text,
.tca--featured .tca-footer strong {
    color: #fff
}

.tca--featured .tca-footer span {
    color: rgb(255 255 255 / .7)
}

.tca--featured .tca-avatar {
    background: rgb(255 255 255 / .2);
    color: #fff;
    border-color: rgb(255 255 255 / .4)
}

.tca--featured .tca-quote {
    color: rgb(255 255 255 / .2)
}

.tca-quote {
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: .15;
    line-height: .8;
    margin-bottom: -8px;
    display: block
}

.tca-text {
    font-size: .9rem;
    color: var(--text);
    line-height: 1.75;
    font-style: italic;
    flex: 1;
    margin-bottom: 24px
}

.tca-footer {
    display: flex;
    align-items: center;
    gap: 12px
}

.tca-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: .82rem;
    flex-shrink: 0;
    border: 2px solid var(--primary)
}

.tca-footer strong {
    display: block;
    font-family: var(--font-heading);
    font-size: .88rem;
    color: var(--dark)
}

.tca-footer span {
    font-size: .75rem;
    color: var(--text-light)
}

.contact-method-card {
    display: block;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: 100%;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    cursor: default
}

a.contact-method-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary)
}

.cmc-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    margin: 0 auto 16px;
    transition: background var(--transition), color var(--transition)
}

a.contact-method-card:hover .cmc-icon {
    background: var(--primary);
    color: #fff
}

.cmc-title {
    font-family: var(--font-heading);
    font-size: .9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.cmc-value {
    font-size: .87rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.5;
    min-height: 40px
}

.cmc-action {
    font-family: var(--font-heading);
    font-size: .8rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    text-decoration: none
}

.hours-live {
    font-weight: 700;
    font-size: .8rem
}

.dept-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px
}

.dept-tab {
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: .85rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition)
}

.dept-tab:hover {
    border-color: var(--primary);
    color: var(--primary)
}

.dept-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgb(46 134 171 / .3)
}

.dept-form-panel {
    display: none;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    animation: panelIn .25s ease
}

.dept-form-panel.active {
    display: block
}

@keyframes panelIn {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.req {
    color: var(--accent)
}

.contact-info-sidebar {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--border);
    height: 100%
}

.cis-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light)
}

.cis-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px
}

.cis-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: .9rem;
    flex-shrink: 0
}

.cis-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: .82rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px
}

.cis-item p {
    font-size: .87rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.55
}

.hours-table {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 14px;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    font-size: .87rem;
    color: var(--text-light);
    transition: background var(--transition)
}

.hours-row.hours-today {
    background: var(--primary-light);
    font-weight: 600;
    color: var(--primary);
    border: 1px solid rgb(46 134 171 / .2)
}

.hrs-val {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .82rem
}

.social-links-contact {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.slc-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .95rem;
    transition: transform var(--transition), filter var(--transition);
    text-decoration: none
}

.slc-btn:hover {
    transform: translateY(-3px) scale(1.08);
    filter: brightness(1.15);
    color: #fff
}

.slc-fb {
    background: #1877F2
}

.slc-ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888)
}

.slc-wa {
    background: #25D366
}

.slc-em {
    background: var(--primary)
}

.cis-response-time {
    background: var(--primary-light);
    border: 1px solid rgb(46 134 171 / .2);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: .84rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px
}

.cis-response-time i {
    flex-shrink: 0
}

.map-full-section {
    padding-bottom: 0
}

.map-container {
    position: relative
}

.map-container iframe {
    display: block
}

.map-overlay-card {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 320px
}

.moc-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .9rem;
    flex-shrink: 0
}

.map-overlay-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: .88rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px
}

.map-overlay-card p {
    font-size: .8rem;
    color: var(--text-light);
    margin-bottom: 8px
}

.moc-link {
    font-family: var(--font-heading);
    font-size: .8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none
}

.moc-link:hover {
    color: var(--accent)
}

.gallery-grid {
    columns: 3;
    column-gap: 16px
}

@media (max-width:991.98px) {
    .gallery-grid {
        columns: 2
    }
}

@media (max-width:575.98px) {
    .gallery-grid {
        columns: 1
    }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: block
}

.gallery-img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform .4s ease
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05)
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(26 43 60 / .88) 0%, rgb(26 43 60 / .2) 60%, transparent 100%);
    opacity: 0;
    transition: opacity .3s ease;
    display: flex;
    align-items: flex-end
}

.gallery-item:hover .gallery-overlay {
    opacity: 1
}

.gallery-item:focus-visible .gallery-overlay {
    opacity: 1
}

.gallery-overlay-content {
    padding: 18px;
    width: 100%
}

.gallery-expand-icon {
    font-size: 1.25rem;
    color: var(--accent);
    display: block;
    margin-bottom: 6px
}

.gallery-caption {
    font-size: .8rem;
    color: rgb(255 255 255 / .9);
    line-height: 1.45;
    margin: 0 0 8px
}

.gallery-cat-tag {
    display: inline-block;
    background: rgb(46 134 171 / .7);
    color: #fff;
    font-family: var(--font-heading);
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 2px 9px;
    border-radius: 100px
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center
}

.lb-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / .95)
}

.lb-content {
    position: relative;
    z-index: 1;
    max-width: 92vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center
}

.lb-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 60px rgb(0 0 0 / .8);
    transition: opacity .2s ease;
    display: block
}

.lb-img.lb-loading {
    opacity: .3
}

.lb-caption {
    text-align: center;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px
}

#lbCaptionText {
    font-size: .9rem;
    color: rgb(255 255 255 / .85);
    max-width: 600px;
    padding: 0 16px
}

#lbCounter {
    font-family: var(--font-heading);
    font-size: .75rem;
    font-weight: 700;
    color: rgb(255 255 255 / .4);
    text-transform: uppercase;
    letter-spacing: .08em
}

.lb-close {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2;
    width: 44px;
    height: 44px;
    background: rgb(255 255 255 / .1);
    border: 1px solid rgb(255 255 255 / .2);
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    display: flex;
    align-items: center;
    justify-content: center
}

.lb-close:hover {
    background: rgb(255 255 255 / .25);
    transform: rotate(90deg)
}

.lb-prev,
.lb-next {
    position: fixed;
    top: 50%;
    z-index: 2;
    width: 50px;
    height: 50px;
    background: rgb(255 255 255 / .1);
    border: 1px solid rgb(255 255 255 / .2);
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background var(--transition), transform var(--transition);
    display: flex;
    align-items: center;
    justify-content: center
}

.lb-prev {
    left: 16px
}

.lb-next {
    right: 16px
}

.lb-prev:hover,
.lb-next:hover {
    background: var(--primary)
}

.lb-prev:disabled,
.lb-next:disabled {
    opacity: .3;
    cursor: not-allowed
}

.fab-inquiry {
    position: fixed;
    bottom: 80px;
    right: 24px;
    z-index: 1040;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 12px 20px;
    font-family: var(--font-heading);
    font-size: .88rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgb(162 59 114 / .4);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    animation: fabPulse 3s ease-in-out infinite
}

.fab-inquiry:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 32px rgb(162 59 114 / .55);
    background: var(--secondary-dark);
    animation: none
}

.fab-inquiry i {
    font-size: 1rem
}

.fab-label {
    white-space: nowrap
}

@keyframes fabPulse {

    0%,
    100% {
        box-shadow: 0 8px 24px rgb(162 59 114 / .4)
    }

    50% {
        box-shadow: 0 8px 32px rgb(162 59 114 / .7)
    }
}

.inquiry-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(10 20 30 / .7);
    backdrop-filter: blur(8px);
    padding: 16px;
    opacity: 0;
    transition: opacity .3s ease
}

.inquiry-modal-overlay.active {
    opacity: 1
}

.inquiry-modal {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 520px;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: 0 32px 80px rgb(0 0 0 / .4);
    transform: translateY(24px) scale(.97);
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
    position: relative;
    scrollbar-width: thin
}

.inquiry-modal-overlay.active .inquiry-modal {
    transform: translateY(0) scale(1)
}

.inquiry-modal::-webkit-scrollbar {
    width: 4px
}

.inquiry-modal::-webkit-scrollbar-track {
    background: #fff0
}

.inquiry-modal::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px
}

.inq-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    padding: 24px 28px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0
}

.inq-header-icon {
    width: 44px;
    height: 44px;
    background: rgb(255 255 255 / .15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0
}

.inq-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 2px
}

.inq-subtitle {
    font-size: .8rem;
    color: rgb(255 255 255 / .65);
    margin: 0
}

.inq-close {
    background: rgb(255 255 255 / .1);
    border: 1px solid rgb(255 255 255 / .2);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    flex-shrink: 0;
    transition: background var(--transition), transform var(--transition)
}

.inq-close:hover {
    background: rgb(255 255 255 / .25);
    transform: rotate(90deg)
}

.inq-body {
    padding: 24px 28px
}

.inq-progress {
    margin-bottom: 24px
}

.inq-progress-track {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 10px
}

.inq-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    transition: width .4s ease
}

.inq-steps {
    display: flex;
    justify-content: space-between
}

.inq-step {
    font-family: var(--font-heading);
    font-size: .72rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: .06em
}

.inq-step.active {
    color: var(--primary)
}

.inq-step-panel {
    display: none;
    animation: panelIn .25s ease
}

.inq-step-panel.active {
    display: block
}

.inq-input-wrap {
    position: relative
}

.inq-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: .85rem;
    pointer-events: none;
    z-index: 1
}

.inq-input {
    padding-left: 40px !important
}

select.inq-input {
    padding-left: 40px !important
}

.inq-char-count {
    text-align: right;
    font-size: .72rem;
    color: var(--text-light);
    margin-top: 4px
}

.inq-file-wrap {
    position: relative
}

.inq-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0)
}

.inq-file-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--bg-light);
    border: 1.5px dashed var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: .85rem;
    color: var(--text-light);
    transition: border-color var(--transition), background var(--transition)
}

.inq-file-label:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary)
}

.inq-file-input:focus+.inq-file-label {
    outline: 3px solid var(--accent);
    outline-offset: 2px
}

.inq-success {
    text-align: center;
    padding: 20px 0 8px;
    animation: panelIn .3s ease
}

.inq-success-icon {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 16px;
    animation: popIn .4s cubic-bezier(.34, 1.56, .64, 1)
}

@keyframes popIn {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.inq-success h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px
}

.inq-success p {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.65
}

.inq-ref {
    margin-top: 12px;
    font-size: .82rem;
    color: var(--text-light)
}

.inq-ref strong {
    color: var(--primary);
    font-family: var(--font-heading)
}

.req {
    color: var(--accent);
    font-size: .9em
}

.form-result .alert {
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .88rem
}

@media (max-width:991.98px) {
    .timeline::before {
        left: 24px
    }

    .timeline-item {
        justify-content: flex-start;
        padding-right: 0;
        padding-left: 60px
    }

    .timeline-item--right {
        padding-left: 60px
    }

    .tl-year {
        left: 24px;
        transform: translateX(-50%);
        top: 0;
        font-size: .75rem;
        padding: 4px 10px
    }

    .tl-content {
        max-width: 100%
    }

    .map-overlay-card {
        display: none
    }
}

@media (max-width:767.98px) {
    .page-hero {
        padding: 80px 0 40px
    }

    .dept-form-panel {
        padding: 20px
    }

    .contact-info-sidebar {
        padding: 24px 20px
    }

    .inq-body {
        padding: 20px
    }

    .inq-header {
        padding: 20px
    }

    .fab-inquiry .fab-label {
        display: none
    }

    .fab-inquiry {
        padding: 14px;
        border-radius: 50%
    }

    .lb-prev {
        left: 8px
    }

    .lb-next {
        right: 8px
    }
}

@media (max-width:575.98px) {
    .dept-tabs {
        flex-direction: column
    }

    .dept-tab {
        justify-content: center
    }

    .trust-pill {
        font-size: .72rem;
        padding: 5px 11px
    }
}

@media (prefers-reduced-motion:reduce) {
    .fab-inquiry {
        animation: none
    }

    .inquiry-modal {
        transform: none;
        transition: none
    }

    .inquiry-modal-overlay {
        transition: none
    }
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition)
}

.brand-logo {
    height: 72px
}